/* Atmospheric shell, navigation, and long-form landing sections. */

html,
body {
  background: var(--artboard-bg);
  color: var(--artboard-copy);
  font-family:
    "Geist",
    system-ui,
    -apple-system,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

.artboard-backdrop-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:
    64px 64px,
    64px 64px,
    16px 16px,
    16px 16px;
  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%
  );
}

.artboard-backdrop-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle at 1px 1px,
    rgba(139, 117, 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.55;
}

.artboard-aura {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  filter: blur(60px);
  border-radius: 50%;
}
.artboard-aura--top {
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  background: radial-gradient(
    ellipse,
    rgba(108, 77, 255, 0.22) 0%,
    rgba(108, 77, 255, 0) 70%
  );
}
.artboard-aura--lower-left {
  bottom: -200px;
  left: -180px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(108, 77, 255, 0.14) 0%,
    rgba(108, 77, 255, 0) 65%
  );
}

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

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

.artboard-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;
}
.artboard-reveal.is-revealed {
  opacity: 1;
  transform: none;
}
.artboard-reveal--delay-1 {
  transition-delay: 0.08s;
}
.artboard-reveal--delay-2 {
  transition-delay: 0.16s;
}
.artboard-reveal--delay-3 {
  transition-delay: 0.24s;
}
.artboard-reveal--delay-4 {
  transition-delay: 0.32s;
}

.artboard-cta {
  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;
}
.artboard-cta--primary {
  background: var(--artboard-violet);
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 8px 24px -8px rgba(108, 77, 255, 0.6);
}
.artboard-cta--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120px circle at var(--artboard-pointer-x, 50%) var(--artboard-pointer-y, 50%),
    rgba(255, 255, 255, 0.35),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}
.artboard-cta--primary:hover::before {
  opacity: 1;
}
.artboard-cta--primary:hover {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.15) inset,
    0 14px 36px -10px rgba(108, 77, 255, 0.8);
}
.artboard-cta--ink {
  background: #0b0b0f;
  color: #fff;
  border: 1px solid var(--artboard-line);
}
.artboard-cta--ink:hover {
  background: #15151a;
}
.artboard-cta--large {
  padding: 14px 26px;
  font-size: 15px;
}

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

.artboard-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(--artboard-line-soft);
}
.artboard-masthead__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.artboard-wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.artboard-wordmark__glyph {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--artboard-violet) 0%, #4f37cf 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 14px -4px rgba(108, 77, 255, 0.55);
  transition: transform 0.25s ease;
}
.artboard-wordmark:hover .artboard-wordmark__glyph {
  transform: rotate(-8deg) scale(1.06);
}
.artboard-wordmark__glyph svg {
  width: 14px;
  height: 14px;
}
.artboard-primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.artboard-primary-nav a {
  color: var(--artboard-muted);
  font-size: 14px;
  font-weight: 400;
  position: relative;
  transition: color 0.15s ease;
}
.artboard-primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 1px;
  width: 0;
  background: var(--artboard-violet-soft);
  transition: width 0.25s ease;
}
.artboard-primary-nav a:hover {
  color: var(--artboard-copy);
}
.artboard-primary-nav a:hover::after {
  width: 100%;
}

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

.artboard-intro {
  padding: 88px 0 60px;
  text-align: center;
  position: relative;
}
.artboard-intro .artboard-eyebrow {
  margin-bottom: 22px;
}
.artboard-intro 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;
}
.artboard-intro p {
  color: var(--artboard-muted);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 28px;
}
@media (max-width: 520px) {
  .artboard-intro h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .artboard-intro p {
    max-width: 100%;
  }
}

.artboard-product-preview {
  margin: 56px auto 0;
  width: 100%;
  max-width: 820px;
  background: #0d0d11;
  border: 1px solid var(--artboard-line-soft);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 40px 100px -40px rgba(108, 77, 255, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.artboard-product-preview::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;
}
.artboard-product-preview :is(video, img) {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0a0a0e;
}

section {
  padding: 80px 0;
  position: relative;
}
.artboard-band--flush-top {
  padding-top: 0;
}
.artboard-band--tight-top {
  padding-top: 20px;
}
.artboard-band--mid-top {
  padding-top: 40px;
}
.artboard-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.artboard-heading--compact {
  margin-bottom: 0;
}
.artboard-heading .artboard-eyebrow {
  margin-bottom: 18px;
}
.artboard-heading__title {
  margin-top: 16px;
}
.artboard-heading h2 {
  font-size: clamp(30px, 4.4vw, 46px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.artboard-stats-panel {
  background: var(--artboard-raise);
  border: 1px solid var(--artboard-line-soft);
  border-radius: var(--artboard-radius-xl);
  padding: 64px 40px;
  position: relative;
  overflow: hidden;
}
.artboard-stats-panel::after,
.artboard-stats-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;
}
.artboard-stats-panel::before {
  right: -180px;
  bottom: -180px;
  width: 520px;
  height: 520px;
  border-color: rgba(255, 255, 255, 0.03);
}
.artboard-stats-grid {
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--artboard-line-soft);
  border-radius: var(--artboard-radius-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 38px 20px;
}
.artboard-stat {
  text-align: center;
  border-right: 1px solid var(--artboard-line-soft);
}
.artboard-stat:last-child {
  border-right: none;
}
.artboard-stat__value {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
}
.artboard-stat__label {
  color: var(--artboard-faint);
  font-size: 13px;
  margin-top: 8px;
}
@media (max-width: 640px) {
  .artboard-stats-grid {
    grid-template-columns: 1fr;
  }
  .artboard-stat {
    border-right: none;
    border-bottom: 1px solid var(--artboard-line-soft);
    padding: 22px 0;
  }
  .artboard-stat:last-child {
    border-bottom: none;
  }
}

.artboard-highlight-frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.artboard-highlight-art {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--artboard-radius-lg);
  overflow: hidden;
  perspective: 1200px;
}
.artboard-highlight-art .artboard-highlight-art__front,
.artboard-highlight-art .artboard-highlight-art__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);
}
.artboard-highlight-art .artboard-highlight-art__rear {
  top: 8%;
  right: 0;
  width: 50%;
  height: 60%;
  transform: rotate(6deg);
  opacity: 0.55;
  filter: grayscale(20%);
}
.artboard-highlight-art .artboard-highlight-art__front {
  top: 12%;
  left: 4%;
  width: 70%;
  height: 75%;
  transform: rotate(-4deg);
}
.artboard-sample--feature-product {
  background-image: url("../img/product-highlight.webp");
}
.artboard-sample--feature-sunrise {
  background-image: url("../img/ocean-highlight.webp");
}
.artboard-highlight-art:hover .artboard-highlight-art__front {
  transform: rotate(-2deg) translateY(-6px);
}
.artboard-highlight-art:hover .artboard-highlight-art__rear {
  transform: rotate(8deg) translateY(-4px);
  opacity: 0.75;
}

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

.artboard-purpose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  perspective: 1500px;
}
.artboard-purpose-card {
  background: var(--artboard-panel);
  border: 1px solid var(--artboard-line-soft);
  border-radius: var(--artboard-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;
}
.artboard-purpose-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    220px circle at var(--artboard-pointer-x, 50%) var(--artboard-pointer-y, 50%),
    rgba(108, 77, 255, 0.14),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.artboard-purpose-card:hover::before {
  opacity: 1;
}
.artboard-purpose-card:hover {
  border-color: rgba(108, 77, 255, 0.25);
  background: var(--artboard-panel-strong);
}
.artboard-purpose-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--artboard-line-soft);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}
.artboard-purpose-card:hover .artboard-purpose-card__icon {
  background: rgba(108, 77, 255, 0.15);
  border-color: rgba(108, 77, 255, 0.4);
  transform: translateZ(20px) scale(1.05);
}
.artboard-purpose-card__icon svg {
  width: 18px;
  height: 18px;
  color: var(--artboard-violet-soft);
}
.artboard-purpose-card h4 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  position: relative;
}
.artboard-purpose-card p {
  color: var(--artboard-muted);
  font-size: 14px;
  line-height: 1.55;
  position: relative;
}
@media (max-width: 860px) {
  .artboard-purpose-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .artboard-purpose-grid {
    grid-template-columns: 1fr;
  }
}

.artboard-exploration-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.artboard-exploration-layout--visual-first .artboard-exploration-art {
  order: -1;
}
.artboard-exploration-copy .artboard-eyebrow {
  margin-bottom: 22px;
}
.artboard-exploration-copy h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  margin-bottom: 14px;
}
.artboard-exploration-copy p {
  color: var(--artboard-muted);
  margin-bottom: 28px;
  max-width: 380px;
}
.artboard-exploration-art {
  position: relative;
  aspect-ratio: 1 / 0.9;
}
.artboard-exploration-art .artboard-exploration-art__primary,
.artboard-exploration-art .artboard-exploration-art__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);
}
.artboard-exploration-art .artboard-exploration-art__primary {
  width: 65%;
  height: 75%;
  top: 5%;
  left: 0;
  transform: rotate(-3deg);
}
.artboard-exploration-art .artboard-exploration-art__secondary {
  width: 60%;
  height: 70%;
  bottom: 0;
  right: 0;
  transform: rotate(5deg);
}
.artboard-sample--imagination-workspace {
  background-image: url("../img/creative-workspace.webp");
}
.artboard-sample--imagination-portrait {
  background-image: url("../img/editorial-portrait.webp");
}
.artboard-exploration-art:hover .artboard-exploration-art__primary {
  transform: rotate(-6deg) translate(-8px, -6px);
}
.artboard-exploration-art:hover .artboard-exploration-art__secondary {
  transform: rotate(8deg) translate(8px, 6px);
}
@media (max-width: 820px) {
  .artboard-exploration-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .artboard-exploration-layout--visual-first .artboard-exploration-art {
    order: 0;
  }
}

.artboard-quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}
.artboard-quote {
  background: var(--artboard-panel);
  border: 1px solid var(--artboard-line-soft);
  border-radius: var(--artboard-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;
}
.artboard-quote.is-emphasized {
  border-color: rgba(108, 77, 255, 0.45);
  background: linear-gradient(
    180deg,
    rgba(108, 77, 255, 0.06),
    var(--artboard-panel-strong)
  );
  box-shadow: 0 30px 80px -30px rgba(108, 77, 255, 0.4);
  transform: translateY(-4px);
}
.artboard-quote-stars {
  display: flex;
  gap: 4px;
  color: var(--artboard-violet-soft);
  margin-bottom: 18px;
}
.artboard-quote-stars svg {
  width: 14px;
  height: 14px;
}
.artboard-quote p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #d4d4dc;
  margin-bottom: 22px;
  flex-grow: 1;
}
.artboard-quote .artboard-quote-author {
  font-size: 14px;
  font-weight: 600;
}
.artboard-quote .artboard-quote-role {
  font-size: 13px;
  color: var(--artboard-faint);
  margin-top: 2px;
}
@media (max-width: 760px) {
  .artboard-quote-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

.artboard-narrative-heading {
  text-align: center;
  padding-bottom: 30px;
}
.artboard-narrative-heading 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;
}
.artboard-narrative-divider {
  width: 60px;
  height: 1px;
  background: var(--artboard-line);
  margin: 0 auto 36px;
}
.artboard-narrative-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.artboard-narrative-layout h3 {
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin-bottom: 18px;
}
.artboard-narrative-layout p {
  color: var(--artboard-muted);
  margin-bottom: 28px;
  max-width: 380px;
}
.artboard-prompt-sample {
  border-left: 3px solid var(--artboard-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;
}
.artboard-prompt-sample:hover {
  border-left-color: var(--artboard-violet-soft);
  padding-left: 22px;
}
.artboard-prompt-art {
  aspect-ratio: 1/1;
  border-radius: 22px;
  background-image: url("../img/portal-example.webp");
  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);
}
.artboard-prompt-art:hover {
  transform: scale(1.02) rotate(-1deg);
}
@media (max-width: 820px) {
  .artboard-narrative-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
