:root {
  color-scheme: dark;
  --ink: #020b16;
  --surface: #061b32;
  --surface-2: #082c46;
  --blue: #38a3ff;
  --sapphire: #0b4ba7;
  --green: #40f99b;
  --mint: #94ffd0;
  --orange: #ffa23a;
  --gold: #ffd36b;
  --cyan: #65e4ff;
  --violet: #9b7bff;
  --pink: #ff5cc8;
  --text: #eaf8ff;
  --muted: #b5d3da;
  --line: rgba(101, 228, 255, 0.28);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--ink);
  color: var(--text);
  overflow-x: hidden;
}

body::selection {
  background: rgba(64, 249, 155, 0.35);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.studio-background {
  position: fixed;
  inset: 0;
  z-index: -5;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 15%, rgba(56, 163, 255, 0.26), transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(64, 249, 155, 0.18), transparent 24%),
    radial-gradient(circle at 68% 82%, rgba(155, 123, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #020b16 0%, #061b32 44%, #081029 100%);
}

.paper-grain,
.sketch-lines,
.speed-lines,
.paint-bloom,
.floating-dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.paper-grain {
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 32px 32px, 48px 48px;
}

.sketch-lines {
  opacity: 0.28;
  background:
    linear-gradient(73deg, transparent 0 36%, rgba(101, 228, 255, 0.16) 36.2%, transparent 36.8% 100%),
    linear-gradient(108deg, transparent 0 62%, rgba(64, 249, 155, 0.12) 62.1%, transparent 62.7% 100%),
    linear-gradient(142deg, transparent 0 52%, rgba(255, 92, 200, 0.11) 52.1%, transparent 52.6% 100%);
}

.speed-lines {
  left: 64%;
  top: -6%;
  width: 44%;
  height: 50%;
  opacity: 0.28;
  transform: skewX(-13deg);
  background:
    repeating-linear-gradient(
      108deg,
      transparent 0 18px,
      rgba(56, 163, 255, 0.34) 19px 20px,
      transparent 21px 42px
    );
}

.paint-bloom {
  inset: auto;
  width: 36rem;
  height: 36rem;
  filter: blur(30px);
  border-radius: 50%;
  opacity: 0.2;
}

.bloom-blue {
  left: -14rem;
  top: 12rem;
  background: var(--blue);
}

.bloom-green {
  right: -12rem;
  top: 36rem;
  background: var(--green);
}

.bloom-pink {
  left: 42%;
  bottom: -18rem;
  background: var(--pink);
}

.floating-dust {
  inset: auto;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow:
    3rem 5rem 0 rgba(64, 249, 155, 0.52),
    8rem 2rem 0 rgba(255, 162, 58, 0.42),
    14rem 8rem 0 rgba(255, 92, 200, 0.44);
  animation: drift 14s ease-in-out infinite alternate;
}

.dust-a {
  left: 12%;
  top: 22%;
}

.dust-b {
  right: 22%;
  top: 44%;
  animation-duration: 18s;
}

.dust-c {
  left: 52%;
  bottom: 22%;
  animation-duration: 21s;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(18px, -24px, 0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0.9rem 0;
  backdrop-filter: blur(18px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark img {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  border: 1px solid rgba(101, 228, 255, 0.55);
  box-shadow:
    0 0 26px rgba(56, 163, 255, 0.44),
    0 0 20px rgba(64, 249, 155, 0.16);
  object-fit: cover;
}

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

.brand-mark strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-mark small {
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.35rem;
  border: 1px solid rgba(101, 228, 255, 0.22);
  border-radius: 8px;
  background: rgba(2, 11, 22, 0.62);
}

.nav-links a,
.header-action {
  border-radius: 8px;
  padding: 0.72rem 0.86rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.header-action:hover,
.header-action:focus-visible {
  color: var(--text);
  background: rgba(56, 163, 255, 0.16);
  box-shadow: 0 0 24px rgba(64, 249, 155, 0.14);
  outline: none;
  transform: translateY(-1px);
}

.header-action {
  border: 1px solid rgba(64, 249, 155, 0.44);
  background: rgba(64, 249, 155, 0.09);
  color: var(--text);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 540px);
  gap: 2.5rem;
  align-items: center;
  min-height: 88vh;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5rem 0 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 3rem -2rem 5.5rem;
  z-index: -2;
  border: 1px solid rgba(56, 163, 255, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(56, 163, 255, 0.18), rgba(64, 249, 155, 0.09) 52%, rgba(155, 123, 255, 0.14)),
    rgba(6, 27, 50, 0.64);
  box-shadow:
    0 0 58px rgba(56, 163, 255, 0.23),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-panel-lines {
  position: absolute;
  inset: 4rem -1rem 6rem;
  z-index: -1;
  opacity: 0.28;
  background:
    linear-gradient(90deg, transparent 0 33%, rgba(101, 228, 255, 0.22) 33.3%, transparent 33.8% 100%),
    linear-gradient(0deg, transparent 0 61%, rgba(64, 249, 155, 0.16) 61.2%, transparent 61.8% 100%),
    repeating-linear-gradient(90deg, transparent 0 92px, rgba(101, 228, 255, 0.2) 93px 94px, transparent 95px 150px);
  clip-path: polygon(0 10%, 100% 0, 100% 88%, 2% 100%);
}

.eyebrow,
.section-kicker,
.module-label {
  margin: 0 0 0.8rem;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 4.7rem;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 690px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0.85rem 1.05rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--cyan) 48%, var(--green));
  color: #02101f;
  box-shadow: 0 12px 32px rgba(56, 163, 255, 0.28);
}

.button.secondary {
  border: 1px solid rgba(101, 228, 255, 0.55);
  color: var(--text);
  background: rgba(8, 44, 70, 0.72);
}

.button:hover,
.button:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(64, 249, 155, 0.24);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.hero-proof span {
  border: 1px solid rgba(101, 228, 255, 0.28);
  border-radius: 8px;
  padding: 0.5rem 0.65rem;
  background: rgba(2, 11, 22, 0.48);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
}

.mascot-stage {
  position: relative;
  display: grid;
  justify-items: center;
  margin: 0;
  min-height: 540px;
}

.mascot-halo {
  position: absolute;
  inset: 0.5rem -1.5rem auto;
  width: calc(100% + 3rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(56, 163, 255, 0.42), transparent 54%),
    radial-gradient(circle at 70% 35%, rgba(64, 249, 155, 0.34), transparent 36%),
    radial-gradient(circle at 38% 75%, rgba(255, 92, 200, 0.22), transparent 32%);
  filter: blur(10px);
}

.mascot-image {
  position: relative;
  width: min(540px, 100%);
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(101, 228, 255, 0.56);
  object-fit: cover;
  transform: rotate(1deg);
  box-shadow:
    0 24px 70px rgba(56, 163, 255, 0.38),
    0 0 44px rgba(64, 249, 155, 0.18);
}

.mascot-caption {
  position: relative;
  width: min(380px, 90%);
  margin-top: -1.35rem;
  border: 1px solid rgba(64, 249, 155, 0.45);
  border-radius: 8px;
  padding: 0.85rem;
  background: rgba(2, 11, 22, 0.82);
  box-shadow: 0 0 26px rgba(64, 249, 155, 0.16);
}

.mascot-caption strong,
.mascot-caption span {
  display: block;
}

.mascot-caption span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.showcase-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: -2rem;
}

.showcase-piece,
.section-shell,
.module-panel,
.price-card,
.download-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(56, 163, 255, 0.14), rgba(6, 27, 50, 0.84)),
    rgba(6, 27, 50, 0.78);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.showcase-piece {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 0.85rem;
  align-items: center;
  min-height: 104px;
  padding: 0.85rem;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.showcase-piece.active {
  border-color: rgba(64, 249, 155, 0.72);
  box-shadow: 0 0 36px rgba(64, 249, 155, 0.18);
  transform: translateY(-3px);
}

.showcase-piece strong,
.showcase-piece small {
  display: block;
}

.showcase-piece small {
  margin-top: 0.22rem;
  color: var(--muted);
}

.piece-art {
  width: 76px;
  height: 76px;
  border: 1px solid rgba(234, 248, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 52% 38%, rgba(234, 248, 255, 0.9) 0 12px, transparent 13px),
    linear-gradient(145deg, rgba(56, 163, 255, 0.72), rgba(64, 249, 155, 0.46)),
    #07152a;
}

.piece-art.manga {
  background:
    repeating-linear-gradient(118deg, transparent 0 7px, rgba(255, 255, 255, 0.2) 8px 9px),
    linear-gradient(145deg, rgba(64, 249, 155, 0.76), rgba(155, 123, 255, 0.5)),
    #07152a;
}

.piece-art.book {
  background:
    radial-gradient(circle at 64% 28%, rgba(255, 211, 107, 0.9) 0 13px, transparent 14px),
    linear-gradient(145deg, rgba(255, 162, 58, 0.72), rgba(255, 92, 200, 0.5)),
    #07152a;
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 1.2rem auto 0;
  padding: 1.35rem;
}

.flow-section h2,
.section-heading h2,
.download-section h2 {
  margin: 0;
  max-width: 760px;
  font-size: 2.35rem;
  line-height: 1.05;
}

.flow-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.flow-track div {
  min-height: 188px;
  border: 1px solid rgba(101, 228, 255, 0.22);
  border-radius: 8px;
  padding: 1rem;
  background:
    linear-gradient(145deg, rgba(8, 44, 70, 0.78), rgba(2, 11, 22, 0.38)),
    rgba(2, 11, 22, 0.34);
}

.flow-track span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 0.8rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #03101d;
  font-weight: 950;
}

.flow-track strong {
  display: block;
  font-size: 1.05rem;
}

.flow-track p,
.module-panel p,
.section-heading p,
.download-section p,
.price-card p {
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1rem;
}

.section-heading p {
  max-width: 420px;
  margin: 0;
}

.modules {
  display: grid;
  gap: 1rem;
}

.module-panel {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem;
  overflow: hidden;
}

.module-panel h3 {
  margin: 0;
  font-size: 1.55rem;
}

.module-panel p:last-child {
  margin-bottom: 0;
}

.module-visual {
  position: relative;
  min-height: 190px;
  border-radius: 8px;
  border: 1px solid rgba(234, 248, 255, 0.16);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(56, 163, 255, 0.2), transparent 58%),
    rgba(2, 11, 22, 0.42);
}

.module-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.36;
  background:
    repeating-linear-gradient(90deg, transparent 0 32px, rgba(255, 255, 255, 0.08) 33px 34px),
    repeating-linear-gradient(0deg, transparent 0 32px, rgba(255, 255, 255, 0.06) 33px 34px);
}

.learn {
  border-color: rgba(101, 228, 255, 0.42);
}

.draw {
  border-color: rgba(64, 249, 155, 0.48);
}

.coach {
  border-color: rgba(155, 123, 255, 0.5);
}

.book {
  border-color: rgba(255, 162, 58, 0.48);
}

.portfolio {
  border-color: rgba(155, 123, 255, 0.42);
}

.sketch-badge {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 2;
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  background: rgba(2, 11, 22, 0.78);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
}

.notebook-page {
  position: absolute;
  left: 52%;
  top: 52%;
  z-index: 1;
  width: 138px;
  height: 154px;
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 52% 36%, transparent 0 38px, rgba(56, 163, 255, 0.54) 39px 41px, transparent 42px),
    linear-gradient(168deg, #f7fcff, #dff6ff);
  border: 1px solid rgba(101, 228, 255, 0.7);
  transform: translate(-50%, -50%) rotate(-4deg);
  box-shadow: 0 0 26px rgba(56, 163, 255, 0.22);
}

.palette-board {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.2rem;
}

.palette-board span {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 104px;
  border-radius: 8px;
  background: var(--green);
  box-shadow: 0 0 24px rgba(64, 249, 155, 0.34);
}

.palette-board span:nth-child(2) {
  height: 132px;
  background: var(--mint);
}

.palette-board span:nth-child(3) {
  height: 92px;
  background: var(--blue);
}

.palette-board span:nth-child(4) {
  height: 118px;
  background: #7a523a;
}

.palette-board span:nth-child(5) {
  height: 78px;
  background: #f0b188;
}

.mentor-orb span {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 132px;
  height: 132px;
  border: 1px solid rgba(101, 228, 255, 0.58);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(101, 228, 255, 0.88), rgba(155, 123, 255, 0.58) 44%, transparent 68%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 42px rgba(155, 123, 255, 0.36);
}

.storyboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  padding: 1rem;
}

.storyboard span,
.gallery-wall span {
  position: relative;
  z-index: 2;
  border-radius: 8px;
  border: 1px solid rgba(255, 211, 107, 0.45);
  background:
    radial-gradient(circle at 64% 30%, rgba(255, 211, 107, 0.85), transparent 18%),
    linear-gradient(145deg, rgba(255, 162, 58, 0.48), rgba(255, 92, 200, 0.24)),
    rgba(2, 11, 22, 0.6);
}

.gallery-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 1rem;
}

.gallery-wall span {
  min-height: 72px;
  border-color: rgba(155, 123, 255, 0.44);
  background:
    linear-gradient(135deg, rgba(56, 163, 255, 0.52), rgba(155, 123, 255, 0.38)),
    rgba(2, 11, 22, 0.64);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.price-card {
  min-height: 260px;
  padding: 1rem;
}

.price-card span {
  display: inline-block;
  border: 1px solid rgba(101, 228, 255, 0.26);
  border-radius: 8px;
  padding: 0.35rem 0.55rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
}

.price-card h3 {
  margin: 1rem 0 0.45rem;
}

.price-card strong {
  display: block;
  color: var(--cyan);
  font-size: 1.35rem;
}

.price-card.featured {
  border-color: rgba(64, 249, 155, 0.72);
  box-shadow: 0 0 36px rgba(64, 249, 155, 0.18);
}

.price-card.warm {
  border-color: rgba(255, 162, 58, 0.62);
}

.download-section {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.2rem;
}

.download-buttons {
  display: grid;
  gap: 0.7rem;
}

.download-buttons button {
  min-height: 48px;
  border: 1px solid rgba(101, 228, 255, 0.26);
  border-radius: 8px;
  background: rgba(8, 44, 70, 0.62);
  color: rgba(234, 248, 255, 0.82);
  font-weight: 900;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1.4rem 0 2.2rem;
  color: var(--muted);
}

.site-footer strong,
.site-footer span {
  color: var(--text);
  font-weight: 900;
}

.site-footer p {
  margin: 0.25rem 0 0;
  line-height: 1.45;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.js .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero::before {
    inset: 2rem -1rem 4rem;
  }

  .mascot-stage {
    min-height: 480px;
  }

  .mascot-image {
    width: min(500px, 100%);
  }

  .showcase-strip,
  .flow-track,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section-heading,
  .download-section {
    display: grid;
  }

  .module-panel {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section-shell,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .brand-mark strong {
    font-size: 0.92rem;
  }

  .brand-mark img {
    width: 54px;
    height: 54px;
  }

  .header-action {
    padding: 0.64rem 0.7rem;
    font-size: 0.8rem;
  }

  .hero {
    gap: 1.5rem;
    padding-bottom: 2.5rem;
  }

  .hero h1 {
    font-size: 2.75rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .mascot-stage {
    min-height: 390px;
  }

  .mascot-image {
    width: min(390px, 100%);
  }

  .mascot-caption {
    width: min(350px, 92%);
  }

  .hero-actions,
  .hero-proof {
    display: grid;
  }

  .showcase-strip,
  .flow-track,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .showcase-piece {
    grid-template-columns: 68px 1fr;
  }

  .piece-art {
    width: 68px;
    height: 68px;
  }

  .flow-section h2,
  .section-heading h2,
  .download-section h2 {
    font-size: 2rem;
  }
}
