:root {
  --nova-bg: #050506;
  --nova-raise: #0b0c0f;
  --nova-panel: #0f1115;
  --nova-panel-strong: #14171c;
  --nova-line-soft: rgba(255, 255, 255, 0.06);
  --nova-line: rgba(255, 255, 255, 0.1);
  --nova-copy: #ffffff;
  --nova-muted: #a1a1aa;
  --nova-faint: #6b6b75;
  --nova-violet: #2997ff;
  --nova-violet-hover: #0071e3;
  --nova-violet-soft: #64d2ff;
  --nova-radius-sm: 8px;
  --nova-radius-md: 14px;
  --nova-radius-lg: 22px;
  --nova-radius-xl: 32px;
  --nova-content-max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  background: var(--nova-bg);
  color: var(--nova-copy);
  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;
  overflow-x: hidden;
}

.nova-studio-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  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%
  );
}

.nova-studio-grid::after {
  content: "";
  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;
}

.nova-studio-haze {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  border-radius: 50%;
}
.nova-studio-haze--top {
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  background: radial-gradient(
    ellipse,
    rgba(41, 151, 255, 0.22) 0%,
    rgba(41, 151, 255, 0) 70%
  );
}
.nova-studio-haze--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%
  );
}

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

a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

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

.motion-rise {
  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-rise.is-visible {
  opacity: 1;
  transform: none;
}
.motion-rise--1 {
  transition-delay: 0.08s;
}
.motion-rise--2 {
  transition-delay: 0.16s;
}
.motion-rise--3 {
  transition-delay: 0.24s;
}
.motion-rise--4 {
  transition-delay: 0.32s;
}
.motion-rise--5 {
  transition-delay: 0.4s;
}

.nova-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition:
    transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s ease,
    box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.nova-action--violet {
  background: var(--nova-violet);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 8px 24px -8px rgba(41, 151, 255, 0.6);
}
.nova-action--violet::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120px circle at var(--nova-pointer-x, 50%) var(--nova-pointer-y, 50%),
    rgba(255, 255, 255, 0.35),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}
.nova-action--violet:hover::before {
  opacity: 1;
}
.nova-action--violet:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 14px 36px -10px rgba(41, 151, 255, 0.8);
}
.nova-action--ink {
  background: #050506;
  color: #fff;
  border: 1px solid var(--nova-line);
}
.nova-action--ink:hover {
  background: #15151a;
}
.nova-action--large {
  padding: 14px 26px;
  font-size: 15px;
}

.nova-label-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--nova-line-soft);
  border-radius: 999px;
  font-size: 12px;
  color: var(--nova-muted);
  letter-spacing: 0.01em;
}

.nova-masthead {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(11, 11, 15, 0.72);
  border-bottom: 1px solid var(--nova-line-soft);
}
.nova-masthead__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.nova-brand-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nova-brand-link__glyph {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--nova-violet) 0%, #4f37cf 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px -4px rgba(41, 151, 255, 0.55);
  transition: transform 0.25s ease;
}
.nova-brand-link:hover .nova-brand-link__glyph {
  transform: rotate(-8deg) scale(1.06);
}
.nova-brand-link__glyph svg {
  width: 14px;
  height: 14px;
}
.nova-primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nova-primary-nav a {
  color: var(--nova-muted);
  font-size: 14px;
  font-weight: 400;
  position: relative;
  transition: color 0.15s ease;
}
.nova-primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: var(--nova-violet-soft);
  transition: width 0.25s ease;
}
.nova-primary-nav a:hover {
  color: var(--nova-copy);
}
.nova-primary-nav a:hover::after {
  width: 100%;
}

@media (max-width: 760px) {
  .nova-primary-nav {
    display: none;
  }
}
@media (max-width: 520px) {
  .nova-masthead__actions {
    display: none;
  }
}

.nova-hero-stage {
  padding: 88px 0 60px;
  text-align: center;
  position: relative;
}
.nova-hero-stage .nova-label-pill {
  margin-bottom: 22px;
}
.nova-hero-stage h1 {
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto 22px;
}
.nova-hero-stage p {
  color: var(--nova-muted);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 28px;
}
@media (max-width: 520px) {
  .nova-hero-stage h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .nova-hero-stage p {
    max-width: 100%;
  }
}

.nova-demo-frame {
  margin: 56px auto 0;
  width: 100%;
  max-width: 820px;
  background: #0d0d11;
  border: 1px solid var(--nova-line-soft);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 40px 100px -40px rgba(41, 151, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.nova-demo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.nova-demo-frame :is(video, img) {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0a0a0e;
}

.nova-header-video video {
  height: auto;
  pointer-events: none;
}

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

section {
  padding: 80px 0;
  position: relative;
}
.nova-section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.nova-section-heading .nova-label-pill {
  margin-bottom: 18px;
}
.nova-section-heading h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.nova-insight-panel {
  background: var(--nova-raise);
  border: 1px solid var(--nova-line-soft);
  border-radius: var(--nova-radius-xl);
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
}
.nova-insight-panel::after,
.nova-insight-panel::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  pointer-events: none;
}
.nova-insight-panel::before {
  right: -180px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border-color: rgba(255, 255, 255, 0.03);
}
.nova-metric-board {
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--nova-line-soft);
  border-radius: var(--nova-radius-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 38px 20px;
}
.nova-metric-tile {
  text-align: center;
  border-right: 1px solid var(--nova-line-soft);
}
.nova-metric-tile:last-child {
  border-right: none;
}
.nova-metric-tile__value {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
}
.nova-metric-tile__label {
  color: var(--nova-faint);
  font-size: 13px;
  margin-top: 8px;
}
@media (max-width: 640px) {
  .nova-metric-board {
    grid-template-columns: 1fr;
  }
  .nova-metric-tile {
    border-right: none;
    border-bottom: 1px solid var(--nova-line-soft);
    padding: 22px 0;
  }
  .nova-metric-tile:last-child {
    border-bottom: none;
  }
}

.nova-feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.nova-feature-collage {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--nova-radius-lg);
  overflow: hidden;
  perspective: 1200px;
}
.nova-feature-collage .nova-feature-collage__front,
.nova-feature-collage .nova-feature-collage__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);
}
.nova-feature-collage .nova-feature-collage__rear {
  top: 8%;
  right: 0;
  width: 50%;
  height: 60%;
  transform: rotate(6deg);
  opacity: 0.55;
  filter: grayscale(20%);
}
.nova-feature-collage .nova-feature-collage__front {
  top: 12%;
  left: 4%;
  width: 70%;
  height: 75%;
  transform: rotate(-4deg);
}
.nova-feature-collage:hover .nova-feature-collage__front {
  transform: rotate(-2deg) translateY(-6px);
}
.nova-feature-collage:hover .nova-feature-collage__rear {
  transform: rotate(8deg) translateY(-4px);
  opacity: 0.75;
}

.nova-feature-split h3 {
  font-size: clamp(28px, 3.5vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 14px;
}
.nova-feature-copy {
  color: var(--nova-muted);
  margin-bottom: 26px;
}
.nova-feature-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}
.nova-feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  transition: transform 0.25s ease;
}
.nova-feature-list li:hover {
  transform: translateX(4px);
}
.nova-icon-tile {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--nova-line-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
}
.nova-feature-list li:hover .nova-icon-tile {
  background: rgba(41, 151, 255, 0.12);
  border-color: rgba(41, 151, 255, 0.3);
}
.nova-icon-tile svg {
  width: 16px;
  height: 16px;
  color: var(--nova-violet-soft);
}
@media (max-width: 820px) {
  .nova-feature-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.nova-usecase-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  perspective: 1500px;
}
.nova-usecase-tile {
  background: var(--nova-panel);
  border: 1px solid var(--nova-line-soft);
  border-radius: var(--nova-radius-lg);
  padding: 32px 28px;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    transform 0.15s ease-out;
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}
.nova-usecase-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    220px circle at var(--nova-pointer-x, 50%) var(--nova-pointer-y, 50%),
    rgba(41, 151, 255, 0.14),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.nova-usecase-tile:hover::before {
  opacity: 1;
}
.nova-usecase-tile:hover {
  border-color: rgba(41, 151, 255, 0.25);
  background: var(--nova-panel-strong);
}
.nova-usecase-tile__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--nova-line-soft);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}
.nova-usecase-tile:hover .nova-usecase-tile__icon {
  background: rgba(41, 151, 255, 0.15);
  border-color: rgba(41, 151, 255, 0.4);
  transform: translateZ(20px) scale(1.05);
}
.nova-usecase-tile__icon svg {
  width: 18px;
  height: 18px;
  color: var(--nova-violet-soft);
}
.nova-usecase-tile h4 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  position: relative;
}
.nova-usecase-tile p {
  color: var(--nova-muted);
  font-size: 14px;
  line-height: 1.55;
  position: relative;
}
@media (max-width: 860px) {
  .nova-usecase-board {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .nova-usecase-board {
    grid-template-columns: 1fr;
  }
}

.nova-imagination-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nova-imagination-copy .nova-label-pill {
  margin-bottom: 22px;
}
.nova-imagination-copy h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 14px;
}
.nova-imagination-copy p {
  color: var(--nova-muted);
  margin-bottom: 28px;
  max-width: 380px;
}
.nova-imagination-stack {
  position: relative;
  aspect-ratio: 1 / 0.9;
}
.nova-imagination-stack .nova-imagination-stack__primary,
.nova-imagination-stack .nova-imagination-stack__secondary {
  position: absolute;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.7);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nova-imagination-stack .nova-imagination-stack__primary {
  width: 65%;
  height: 75%;
  top: 5%;
  left: 0;
  transform: rotate(-3deg);
}
.nova-imagination-stack .nova-imagination-stack__secondary {
  width: 60%;
  height: 70%;
  bottom: 0;
  right: 0;
  transform: rotate(5deg);
}
.nova-imagination-stack:hover .nova-imagination-stack__primary {
  transform: rotate(-6deg) translate(-8px, -6px);
}
.nova-imagination-stack:hover .nova-imagination-stack__secondary {
  transform: rotate(8deg) translate(8px, 6px);
}
@media (max-width: 820px) {
  .nova-imagination-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.nova-quote-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}
.nova-quote-card {
  background: var(--nova-panel);
  border: 1px solid var(--nova-line-soft);
  border-radius: var(--nova-radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.5s ease,
    background 0.5s ease,
    transform 0.4s ease,
    box-shadow 0.5s ease;
  position: relative;
}
.nova-quote-card.is-spotlight {
  border-color: rgba(41, 151, 255, 0.45);
  background: linear-gradient(
    180deg,
    rgba(41, 151, 255, 0.06),
    var(--nova-panel-strong)
  );
  box-shadow: 0 30px 80px -30px rgba(41, 151, 255, 0.4);
  transform: translateY(-4px);
}
.nova-quote-stars {
  display: flex;
  gap: 4px;
  color: var(--nova-violet-soft);
  margin-bottom: 18px;
}
.nova-quote-stars svg {
  width: 14px;
  height: 14px;
}
.nova-quote-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #d4d4dc;
  margin-bottom: 22px;
  flex-grow: 1;
}
.nova-quote-card .nova-quote-person {
  font-size: 14px;
  font-weight: 600;
}
.nova-quote-card .nova-quote-role {
  font-size: 13px;
  color: var(--nova-faint);
  margin-top: 2px;
}
@media (max-width: 760px) {
  .nova-quote-board {
    grid-template-columns: 1fr;
  }
}

.nova-action-row {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.nova-workflow-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.nova-workflow-media {
  aspect-ratio: 3/4;
  background: linear-gradient(180deg, #2997ff 0%, #4a31cc 100%);
  border-radius: 24px;
  padding: 40px 24px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  position: relative;
}
.nova-workflow-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 20%,
    rgba(255, 255, 255, 0.18),
    transparent 50%
  );
  pointer-events: none;
}
.nova-workflow-media .nova-workflow-media__image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  background-image: url("../media/images/draftmind-cad-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);
}
.nova-workflow-media:hover .nova-workflow-media__image {
  transform: translateY(-8px) scale(1.02);
}
.nova-workflow-copy h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 14px;
}
.nova-workflow-copy > p {
  color: var(--nova-muted);
  max-width: 420px;
  margin-bottom: 36px;
}
.nova-workflow-stats {
  display: grid;
  gap: 22px;
}
.nova-workflow-stat {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: baseline;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--nova-line-soft);
}
.nova-workflow-stat:last-child {
  border-bottom: none;
}
.nova-workflow-stat__value {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.nova-workflow-stat__label {
  color: var(--nova-muted);
  font-size: 14px;
}
@media (max-width: 820px) {
  .nova-workflow-panel {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.nova-creator-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  padding-top: 0;
}
.nova-creator-copy h2 {
  font-size: clamp(28px, 3.4vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 18px;
}
.nova-creator-copy p {
  color: var(--nova-muted);
  margin-bottom: 28px;
  max-width: 360px;
  font-size: 14.5px;
}
.nova-creator-notes {
  display: grid;
  gap: 20px;
}
.nova-creator-note {
  background: var(--nova-panel);
  border: 1px solid var(--nova-line-soft);
  border-radius: var(--nova-radius-lg);
  padding: 28px;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}
.nova-creator-note:hover {
  border-color: rgba(41, 151, 255, 0.3);
  transform: translateX(6px);
}
.nova-creator-note .nova-icon-tile {
  margin-bottom: 20px;
}
.nova-creator-note h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.nova-creator-note p {
  color: var(--nova-muted);
  font-size: 14px;
  margin: 0;
}
@media (max-width: 820px) {
  .nova-creator-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.nova-story-head {
  text-align: center;
  padding-bottom: 30px;
}
.nova-story-head h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 720px;
  margin: 0 auto;
}
.nova-story-divider {
  width: 60px;
  height: 1px;
  background: var(--nova-line);
  margin: 0 auto 36px;
}
.nova-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.nova-story-grid h3 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 18px;
}
.nova-story-grid p {
  color: var(--nova-muted);
  margin-bottom: 28px;
  max-width: 380px;
}
.nova-prompt-card {
  border-left: 3px solid var(--nova-violet);
  padding: 6px 0 6px 18px;
  margin-bottom: 28px;
  font-weight: 600;
  font-size: 14.5px;
  transition:
    border-color 0.3s ease,
    padding-left 0.3s ease;
}
.nova-prompt-card:hover {
  border-left-color: var(--nova-violet-soft);
  padding-left: 22px;
}
.nova-prompt-result {
  aspect-ratio: 1/1;
  border-radius: 22px;
  background-image: url("../media/images/draftmind-bracket-cad.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);
}
.nova-prompt-result:hover {
  transform: scale(1.02) rotate(-1deg);
}
@media (max-width: 820px) {
  .nova-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.nova-pricing-head {
  text-align: center;
  margin-bottom: 36px;
}
.nova-pricing-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.025em;
  font-weight: 700;
  margin-bottom: 28px;
}

.nova-billing-toggle {
  display: inline-flex;
  background: var(--nova-panel);
  border: 1px solid var(--nova-line-soft);
  border-radius: 999px;
  padding: 4px;
  position: relative;
  margin-bottom: 36px;
}
.nova-billing-toggle .nova-billing-toggle__slider {
  position: absolute;
  top: 4px;
  left: 4px;
  height: calc(100% - 8px);
  background: var(--nova-violet);
  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);
  z-index: 1;
}
.nova-billing-toggle__option {
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 500;
  color: var(--nova-muted);
  border-radius: 999px;
  position: relative;
  z-index: 2;
  transition: color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nova-billing-toggle__option.is-active {
  color: #fff;
}
.nova-billing-toggle__option .nova-billing-toggle__save {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.nova-billing-toggle__option.is-active .nova-billing-toggle__save {
  opacity: 1;
}

.nova-plan-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.nova-plan-card {
  background: var(--nova-panel);
  border: 1px solid var(--nova-line-soft);
  border-radius: var(--nova-radius-lg);
  padding: 30px;
  position: relative;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.nova-plan-card:hover {
  transform: translateY(-4px);
  border-color: var(--nova-line);
}
.nova-plan-card.nova-plan-card--featured {
  border-color: rgba(41, 151, 255, 0.4);
  box-shadow: 0 30px 60px -30px rgba(41, 151, 255, 0.3);
}
.nova-plan-card.nova-plan-card--featured:hover {
  border-color: rgba(41, 151, 255, 0.6);
  box-shadow: 0 40px 80px -30px rgba(41, 151, 255, 0.5);
}
.nova-plan-card__badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--nova-violet);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  box-shadow: 0 6px 18px -4px rgba(41, 151, 255, 0.6);
}
.nova-plan-card__name {
  color: var(--nova-muted);
  font-size: 13px;
  margin-bottom: 18px;
}
.nova-plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}
.nova-plan-card__price .nova-plan-card__amount {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -0.03em;
  transition: opacity 0.25s ease;
}
.nova-plan-card__price .nova-plan-card__amount.is-price-flipping {
  opacity: 0;
}
.nova-plan-card__price .nova-plan-card__unit {
  color: var(--nova-faint);
  font-size: 13px;
}
.nova-plan-card__copy {
  color: var(--nova-faint);
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 22px;
  min-height: 60px;
}
.nova-plan-card .nova-action {
  width: 100%;
  margin-bottom: 22px;
}
.nova-plan-card__features {
  list-style: none;
  display: grid;
  gap: 12px;
}
.nova-plan-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--nova-muted);
  transition: color 0.2s ease;
}
.nova-plan-card:hover .nova-plan-card__features li {
  color: #d4d4dc;
}
.nova-check-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(41, 151, 255, 0.15);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.nova-check-dot svg {
  width: 10px;
  height: 10px;
  color: var(--nova-violet-soft);
}
@media (max-width: 920px) {
  .nova-plan-board {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.nova-closing-panel {
  background: linear-gradient(180deg, #2997ff 0%, #0071e3 100%);
  border-radius: var(--nova-radius-xl);
  padding: 64px 40px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.nova-closing-panel::before,
.nova-closing-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  transition: transform 1s ease;
}
.nova-closing-panel::before {
  width: 420px;
  height: 420px;
  left: -120px;
  top: 40%;
}
.nova-closing-panel::after {
  width: 320px;
  height: 320px;
  right: -80px;
  top: -100px;
}
.nova-closing-panel:hover::before {
  transform: translateX(20px) translateY(-10px);
}
.nova-closing-panel:hover::after {
  transform: translateX(-20px) translateY(10px);
}
.nova-closing-panel .nova-label-pill {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.nova-closing-panel h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  max-width: 640px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}
.nova-closing-panel .nova-action {
  position: relative;
  z-index: 1;
}
.nova-closing-panel .nova-closing-panel__bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 22px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 0 0 var(--nova-radius-xl) var(--nova-radius-xl);
}

footer {
  padding: 80px 0 36px;
}
.nova-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--nova-line-soft);
}
.nova-footer-brand p {
  color: var(--nova-faint);
  font-size: 13.5px;
  max-width: 280px;
  margin-top: 18px;
}
.nova-footer-links-col h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}
.nova-footer-links-col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}
.nova-footer-links-col a {
  color: var(--nova-muted);
  font-size: 13.5px;
  transition:
    color 0.15s ease,
    padding-left 0.25s ease;
}
.nova-footer-links-col a:hover {
  color: var(--nova-copy);
  padding-left: 4px;
}
.nova-footer-meta {
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--nova-faint);
  font-size: 13px;
}
.nova-footer-meta a {
  color: var(--nova-faint);
  text-decoration: underline;
}
.nova-footer-meta a:hover {
  color: var(--nova-muted);
}
.nova-footer-legal {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
@media (max-width: 760px) {
  .nova-footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.nova-proof-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 20px;
  margin-bottom: 24px;
  color: var(--nova-faint);
  font-size: 13px;
}
.nova-star-row {
  display: inline-flex;
  gap: 2px;
  color: #f5b63f;
}
.nova-star-row svg {
  width: 13px;
  height: 13px;
}
.nova-proof-strip .nova-dot-separator {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--nova-faint);
  opacity: 0.6;
}

.nova-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.nova-process-card {
  position: relative;
  background: var(--nova-panel);
  border: 1px solid var(--nova-line-soft);
  border-radius: var(--nova-radius-lg);
  padding: 34px 30px;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s ease;
}
.nova-process-card:hover {
  transform: translateY(-4px);
  border-color: var(--nova-line);
}
.nova-process-card__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;
}
.nova-process-card__tag {
  display: inline-flex;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(41, 151, 255, 0.12);
  border: 1px solid rgba(41, 151, 255, 0.3);
  color: var(--nova-violet-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.nova-process-card h4 {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.nova-process-card p {
  color: var(--nova-muted);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 860px) {
  .nova-process-grid {
    grid-template-columns: 1fr;
  }
}

.nova-gallery-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.nova-gallery-cell {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--nova-line-soft);
}
.nova-gallery-cell__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--nova-panel-strong);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.nova-gallery-cell:hover .nova-gallery-cell__image {
  transform: scale(1.06);
}
.nova-gallery-cell__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 36px 14px 12px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(to top, rgba(8, 8, 12, 0.85), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.nova-gallery-cell:hover .nova-gallery-cell__caption {
  opacity: 1;
  transform: none;
}
@media (max-width: 860px) {
  .nova-gallery-board {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nova-compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.nova-compare-column {
  background: var(--nova-panel);
  border: 1px solid var(--nova-line-soft);
  border-radius: var(--nova-radius-lg);
  padding: 36px 32px;
}
.nova-compare-column h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.nova-compare-column.nova-compare-column--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);
}
.nova-compare-list {
  list-style: none;
  display: grid;
  gap: 15px;
}
.nova-compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--nova-muted);
  line-height: 1.55;
}
.nova-compare-column.nova-compare-column--positive .nova-compare-list li {
  color: var(--nova-copy);
}
.nova-compare-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 1px;
}
.nova-compare-icon svg {
  width: 11px;
  height: 11px;
}
.nova-compare-icon--no {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--nova-line-soft);
  color: var(--nova-faint);
}
.nova-compare-icon--yes {
  background: rgba(41, 151, 255, 0.18);
  border: 1px solid rgba(41, 151, 255, 0.45);
  color: var(--nova-violet-soft);
}
.nova-compare-column .nova-action {
  margin-top: 26px;
}
@media (max-width: 860px) {
  .nova-compare-grid {
    grid-template-columns: 1fr;
  }
}

.nova-plan-card__trust {
  margin-top: 10px;
  font-size: 12px;
  color: var(--nova-faint);
  text-align: center;
}
.nova-guarantee-strip {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 18px 26px;
  border: 1px dashed rgba(41, 151, 255, 0.4);
  border-radius: 16px;
  background: rgba(41, 151, 255, 0.05);
  color: var(--nova-muted);
  font-size: 14px;
  text-align: center;
}
.nova-guarantee-strip strong {
  color: var(--nova-copy);
  font-weight: 600;
}
.nova-guarantee-strip__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(41, 151, 255, 0.15);
  border: 1px solid rgba(41, 151, 255, 0.4);
  display: grid;
  place-items: center;
  color: var(--nova-violet-soft);
  flex-shrink: 0;
}
.nova-guarantee-strip__icon svg {
  width: 16px;
  height: 16px;
}

.nova-faq-stack {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.nova-faq-row {
  background: var(--nova-panel);
  border: 1px solid var(--nova-line-soft);
  border-radius: 16px;
  overflow: hidden;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
}
.nova-faq-row.is-open {
  border-color: rgba(41, 151, 255, 0.35);
  background: var(--nova-panel-strong);
}
.nova-faq-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;
}
.nova-faq-row__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 8px;
  border: 1px solid var(--nova-line);
  display: grid;
  place-items: center;
  color: var(--nova-muted);
  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;
}
.nova-faq-row__icon svg {
  width: 12px;
  height: 12px;
}
.nova-faq-row.is-open .nova-faq-row__icon {
  transform: rotate(45deg);
  background: var(--nova-violet);
  border-color: var(--nova-violet);
  color: #fff;
}
.nova-faq-row__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nova-faq-row__answer p {
  padding: 0 22px 22px;
  color: var(--nova-muted);
  font-size: 14px;
  line-height: 1.65;
}

.nova-sticky-offer {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translate(-50%, 140%);
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 10px 10px 20px;
  background: rgba(20, 20, 26, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--nova-line);
  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;
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.35s ease;
  max-width: calc(100vw - 32px);
}
.nova-sticky-offer.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
.nova-sticky-offer .nova-sticky-offer__copy {
  font-size: 14px;
  color: var(--nova-muted);
  white-space: nowrap;
}
.nova-sticky-offer .nova-sticky-offer__copy strong {
  color: var(--nova-copy);
  font-weight: 600;
}
.nova-sticky-offer .nova-action {
  padding: 10px 18px;
  white-space: nowrap;
}
.nova-sticky-offer__close {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--nova-faint);
  transition:
    color 0.2s ease,
    background 0.2s ease;
}
.nova-sticky-offer__close:hover {
  color: var(--nova-copy);
  background: rgba(255, 255, 255, 0.06);
}
@media (max-width: 600px) {
  .nova-sticky-offer .u-hide-sm {
    display: none;
  }
}

/* Draftmind CAD product layer */
body {
  background:
    radial-gradient(
      circle at 50% -10%,
      rgba(41, 151, 255, 0.08),
      transparent 32rem
    ),
    var(--nova-bg);
}

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

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

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

.nova-masthead__row {
  min-height: 58px;
  padding-block: 10px;
}

.nova-brand-link {
  font-weight: 650;
  letter-spacing: -0.025em;
}

.nova-brand-link__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);
}

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

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

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

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

section {
  padding-block: 92px;
}

.nova-hero-stage {
  padding: 86px 0 54px;
}

.nova-hero-stage 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;
}

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

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

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

.nova-demo-frame {
  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);
}

.nova-cad-window {
  text-align: left;
}

.nova-cad-window__bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 45px;
  padding: 0 14px;
  background: linear-gradient(180deg, #17191e, #101216);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #848994;
  font-size: 11px;
}

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

.nova-window-lights i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f57;
  box-shadow: inset 0 -1px rgba(0, 0, 0, 0.2);
}

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

.nova-cad-window__document {
  color: #c6c9cf;
  font-weight: 520;
}

.nova-cad-window__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}

.nova-cad-window__actions strong {
  padding: 5px 9px;
  border-radius: 6px;
  color: #e9eef5;
  background: rgba(41, 151, 255, 0.2);
  border: 1px solid rgba(41, 151, 255, 0.35);
}

.nova-cad-workspace {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  min-height: 500px;
}

.nova-cad-prompt,
.nova-cad-inspector {
  padding: 18px 14px;
  background: #0d0f12;
  color: #8e939c;
  font-size: 11px;
}

.nova-cad-prompt {
  border-right: 1px solid rgba(255, 255, 255, 0.075);
}
.nova-cad-inspector {
  border-left: 1px solid rgba(255, 255, 255, 0.075);
}

.nova-cad-panel-title {
  margin-bottom: 14px;
  color: #e6e8ec;
  font-size: 12px;
  font-weight: 620;
}

.nova-cad-prompt p {
  margin: 0 0 14px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #11141a;
  color: #b8bdc6;
  font-size: 11px;
  line-height: 1.55;
}

.nova-cad-prompt button {
  width: 100%;
  padding: 9px 10px;
  border-radius: 7px;
  color: white;
  background: #2997ff;
  font-size: 11px;
  font-weight: 600;
}

.nova-cad-history {
  display: grid;
  gap: 3px;
  margin-top: 22px;
}

.nova-cad-history span,
.nova-cad-history b {
  display: block;
  padding: 7px 8px;
  border-radius: 5px;
  font-weight: 450;
}

.nova-cad-history span:first-child {
  padding-inline: 0;
  color: #646a73;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.nova-cad-history b {
  color: #bfe0ff;
  background: rgba(41, 151, 255, 0.12);
}

.nova-cad-viewport {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #050608;
}

.nova-demo-frame .nova-cad-viewport img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.nova-cad-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.34);
}

.nova-cad-view-label {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  color: #626873;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.nova-cad-dimension {
  position: absolute;
  z-index: 1;
  color: #64d2ff;
  font:
    10px ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  border-bottom: 1px solid rgba(100, 210, 255, 0.6);
  padding: 0 18px 4px;
}

.nova-cad-dimension--width {
  left: 28%;
  bottom: 15%;
}
.nova-cad-dimension--height {
  right: 13%;
  top: 27%;
  transform: rotate(90deg);
}

.nova-cad-viewcube {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #8f949e;
  font-size: 9px;
  transform: rotate(30deg);
}

.nova-cad-inspector dl {
  display: grid;
  gap: 8px;
}
.nova-cad-inspector dl div {
  display: grid;
  gap: 5px;
}
.nova-cad-inspector dt {
  color: #747a84;
}
.nova-cad-inspector dd {
  margin: 0;
  padding: 7px 8px;
  border-radius: 6px;
  background: #13161b;
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #c4c8cf;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.nova-cad-statusbar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 14px;
  color: #676c75;
  background: #0d0f12;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 9px;
}

.nova-proof-section {
  padding-top: 38px;
}
.nova-insight-panel {
  border-radius: 22px;
  background: rgba(12, 14, 17, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nova-section-heading--compact {
  margin-bottom: 34px;
}
.nova-section-heading p {
  max-width: 560px;
  margin: 14px auto 0;
  color: var(--nova-muted);
}
.nova-metric-tile__value {
  font-size: clamp(24px, 3vw, 34px);
}

.nova-process-card,
.nova-usecase-tile,
.nova-quote-card,
.nova-creator-note,
.nova-plan-card,
.nova-compare-column,
.nova-faq-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;
}

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

.nova-feature-collage {
  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;
}

.nova-feature-collage .nova-feature-collage__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);
}

.nova-feature-collage .nova-feature-collage__front {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #07080a;
}

.nova-feature-collage__front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nova-icon-tile,
.nova-usecase-tile__icon {
  color: #64d2ff;
  font-size: 16px;
}

.nova-engineering-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);
}

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

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

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

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

.nova-output-board__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);
}

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

.nova-output-board__spec strong {
  align-self: end;
  color: #eef0f3;
  font-size: 17px;
  font-weight: 560;
}

.nova-workflow-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);
}

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

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

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

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

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

.nova-closing-panel {
  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;
}

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

.nova-sticky-offer {
  background: rgba(13, 15, 18, 0.9);
  border-radius: 13px;
}

@media (max-width: 960px) {
  .nova-cad-workspace {
    grid-template-columns: 168px minmax(0, 1fr);
  }
  .nova-cad-inspector {
    display: none;
  }
  .nova-demo-frame .nova-cad-viewport img {
    min-height: 440px;
  }
}

@media (max-width: 720px) {
  section {
    padding-block: 70px;
  }
  .nova-hero-stage {
    padding-top: 68px;
  }
  .nova-cad-workspace {
    grid-template-columns: 1fr;
  }
  .nova-cad-prompt {
    display: grid;
    grid-template-columns: 1fr 130px;
    gap: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  }
  .nova-cad-prompt .nova-cad-panel-title,
  .nova-cad-history {
    display: none;
  }
  .nova-cad-prompt p {
    margin: 0;
  }
  .nova-demo-frame .nova-cad-viewport img {
    min-height: 390px;
  }
  .nova-cad-dimension {
    display: none;
  }
  .nova-engineering-gallery figcaption {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .nova-shell {
    padding-inline: 18px;
  }
  .nova-hero-stage h1 {
    font-size: 43px;
  }
  .nova-hero-stage p {
    font-size: 15px;
  }
  .nova-demo-frame {
    margin-top: 38px;
    border-radius: 13px;
  }
  .nova-cad-window__bar {
    grid-template-columns: 1fr auto;
  }
  .nova-cad-window__document {
    display: none;
  }
  .nova-cad-prompt {
    grid-template-columns: 1fr;
  }
  .nova-cad-prompt button {
    padding-block: 11px;
  }
  .nova-demo-frame .nova-cad-viewport img {
    min-height: 260px;
  }
  .nova-cad-statusbar span:nth-child(2) {
    display: none;
  }
  .nova-insight-panel {
    padding: 38px 22px;
  }
  .nova-output-board {
    grid-template-columns: 1fr;
  }
  .nova-output-board__spec {
    min-height: 120px;
  }
  .nova-engineering-gallery {
    border-radius: 12px;
  }
  .nova-engineering-gallery figcaption {
    display: none;
  }
  .nova-sticky-offer {
    width: calc(100% - 24px);
    justify-content: space-between;
    padding-left: 12px;
  }
  .nova-sticky-offer__copy {
    display: none;
  }
}
