@font-face {
  font-family: "PP Mondwest";
  src: local("Georgia");
  font-weight: 400;
  font-display: swap;
}

:root {
  --primary: #080d1c;
  --dark: #10172f;
  --muted: #3b455c;
  --light: #f6f8ff;
  --light-muted: #dce6f6;
  --paper: #fff;
  --signal: #7b3cff;
  --cyan: #18dce5;
  --blue: #47b8ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(
      circle at 50% 0,
      rgba(24, 220, 229, 0.12),
      transparent 28rem
    ),
    var(--paper);
  color: var(--primary);
  font-family:
    "PP Neue Montreal",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

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

img,
svg {
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

.mondwest {
  font-family: "PP Mondwest", Georgia, serif;
  font-weight: 600;
}

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

.reveal.in-view {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scan {
  0% {
    transform: translateY(-120%);
  }
  100% {
    transform: translateY(220%);
  }
}

.hero {
  max-width: 470px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 24px 0;
}

.brand-logo {
  width: min(100%, 475px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 18px 34px rgba(123, 60, 255, 0.16));
}

.tagline {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: clamp(12px, 1.6vw, 14px);
  margin: 18px 0 48px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero h1 {
  font-size: clamp(52px, 9vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.064em;
  font-weight: 500;
  margin: 0;
}

.hero h1 .mondwest {
  color: var(--dark);
}

.intro-copy {
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.intro-copy p {
  margin: 0 0 14px;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--primary);
  color: #fff;
  box-shadow:
    0 12px 30px rgba(5, 26, 36, 0.18),
    0 4px 10px rgba(5, 26, 36, 0.12);
}

.primary:hover {
  background: var(--dark);
}

.secondary {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 12px 28px rgba(5, 26, 36, 0.12);
}

.tertiary {
  background: #fff;
  color: var(--primary);
  box-shadow:
    inset 0 0 0 1px rgba(5, 26, 36, 0.08),
    0 16px 32px rgba(5, 26, 36, 0.18);
}

.marquee {
  margin: 70px 0 40px;
  overflow: hidden;
  padding: 10px 0 24px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.marquee:focus-visible {
  outline: 3px solid rgba(123, 60, 255, 0.35);
  outline-offset: 6px;
}

.marquee.dragging {
  cursor: grabbing;
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding-left: 20px;
  animation: marquee 42s linear infinite;
  will-change: transform;
}

.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track,
.marquee.paused .marquee-track,
.marquee.manual .marquee-track,
.marquee.dragging .marquee-track {
  animation-play-state: paused;
}

.marquee.manual .marquee-track {
  animation: none;
}

.motion-tile {
  position: relative;
  width: clamp(260px, 32vw, 430px);
  height: clamp(170px, 20vw, 260px);
  flex: 0 0 auto;
  border-radius: 32px;
  overflow: hidden;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 30px 60px rgba(5, 26, 36, 0.18);
}

.motion-tile span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(
    180deg,
    rgba(5, 26, 36, 0.7),
    rgba(5, 26, 36, 0.34)
  );
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  backdrop-filter: blur(12px);
}

.motion-tile b {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.motion-tile small {
  max-width: 26ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.35;
}

.motion-tile::before,
.motion-tile::after {
  content: "";
  position: absolute;
  inset: 0;
}

.motion-tile::before {
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.motion-tile::after {
  background:
    linear-gradient(180deg, transparent 42%, rgba(5, 26, 36, 0.86)),
    radial-gradient(
      circle at 18% 14%,
      rgba(123, 60, 255, 0.22),
      transparent 8rem
    );
}

.tile-sql::before {
  background-image: url("assets/generated/sql-reporting-cockpit.png");
}

.tile-crawl::before {
  background-image: url("assets/generated/data-collection-engine.png");
}

.tile-doc::before {
  background-image: url("assets/generated/source-assistant.png");
}

.tile-flow::before {
  background-image: url("assets/generated/workflow-automation.png");
}

.tile-portal::before {
  background-image: url("assets/generated/client-portal.png");
}

.tile-media::before {
  background-image: url("assets/generated/source-media-library.png");
}

.quote-section {
  max-width: 980px;
  margin: 60px auto 0;
  padding: 110px 24px 70px;
  text-align: center;
}

blockquote {
  margin: 0 auto;
  max-width: 830px;
  font-size: clamp(36px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 500;
}

cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.brand-strip {
  margin: 42px auto 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 30px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.parallax-frame {
  max-width: 720px;
  margin: 0 auto;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(5, 26, 36, 0.18);
  background: #071722;
}

.anything-board {
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr 190px 1fr;
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 5vw, 46px);
  color: #fff;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(123, 60, 255, 0.22),
      transparent 10rem
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(24, 220, 229, 0.22),
      transparent 18rem
    ),
    #061722;
}

.board-column {
  display: grid;
  gap: 10px;
}

.board-column b {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
}

.board-column span {
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.board-core {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(24, 220, 229, 0.18), transparent 54%),
    radial-gradient(circle at 30% 24%, rgba(123, 60, 255, 0.28), transparent 46%),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.board-core img {
  width: 68%;
  height: auto;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.28));
}

.pricing,
.testimonials,
.projects,
.data-layer,
.sources,
.partner-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 92px 24px;
}

.section-kicker {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.pricing h2,
.testimonials h2,
.projects h2,
.data-layer h2,
.sources h2,
.partner-cta h2 {
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 0 0 34px;
  font-weight: 500;
}

.section-intro {
  max-width: 700px;
  margin: -12px 0 34px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
}

.layer-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.layer-stack article {
  min-height: 310px;
  border-radius: 32px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 255, 0.92)),
    radial-gradient(circle at 20% 0, rgba(24, 220, 229, 0.16), transparent 10rem);
  box-shadow:
    inset 0 0 0 1px rgba(5, 26, 36, 0.08),
    0 24px 54px rgba(5, 26, 36, 0.1);
}

.layer-stack article:nth-child(4) {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 34px 70px rgba(5, 26, 36, 0.24);
}

.layer-stack span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 34px;
  background: rgba(123, 60, 255, 0.1);
  color: var(--signal);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 700;
}

.layer-stack article:nth-child(4) span {
  background: rgba(24, 220, 229, 0.16);
  color: var(--cyan);
}

.layer-stack h3 {
  margin: 0 0 14px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.layer-stack p {
  margin: 0;
  color: var(--muted);
  line-height: 1.48;
}

.layer-stack article:nth-child(4) p {
  color: var(--light-muted);
}

.source-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.source-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: var(--primary);
  box-shadow:
    inset 0 0 0 1px rgba(5, 26, 36, 0.08),
    0 14px 34px rgba(5, 26, 36, 0.08);
  font-weight: 500;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  margin-left: auto;
  max-width: 850px;
}

.price-card {
  border-radius: 32px;
  padding: 32px;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.price-card.dark {
  background: var(--primary);
  color: var(--light);
  box-shadow: 0 34px 70px rgba(5, 26, 36, 0.28);
}

.price-card.light {
  background: #fff;
  color: var(--primary);
  box-shadow:
    inset 0 0 0 1px rgba(5, 26, 36, 0.1),
    0 24px 54px rgba(5, 26, 36, 0.1);
}

.eyebrow {
  margin: 0;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
}

.price-card h3 {
  font-size: clamp(46px, 7vw, 68px);
  letter-spacing: -0.06em;
  margin: 24px 0;
}

.price-card p:not(.eyebrow) {
  font-size: 18px;
  line-height: 1.4;
  margin: 0 0 28px;
  opacity: 0.82;
}

.carousel {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.testimonial-card {
  display: block;
  border-radius: 36px;
  padding: 24px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 34px 70px rgba(5, 26, 36, 0.22);
}

.testimonial-card.active {
  animation: none;
}

.avatar,
.artifact-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  background: var(--signal);
  color: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-weight: 700;
}

.testimonial-card p {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 26px;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card span {
  color: var(--light-muted);
  margin-top: 4px;
}

.carousel-controls {
  display: none;
  gap: 10px;
  margin-top: 18px;
}

.carousel-controls button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 12px 28px rgba(5, 26, 36, 0.12);
  cursor: pointer;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-grid article {
  background: #fff;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(5, 26, 36, 0.12);
}

.project-visual {
  height: 260px;
  background: var(--primary);
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.project-visual::before,
.project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
}

.project-visual::after {
  background: linear-gradient(transparent, rgba(5, 26, 36, 0.72));
}

.sql-visual::before {
  background-image: url("assets/generated/sql-reporting-cockpit.png");
  background-position: center;
  background-size: cover;
}

.ai-visual::before {
  background-image: url("assets/generated/source-assistant.png");
  background-position: center;
  background-size: cover;
}

.automation-visual::before {
  background-image: url("assets/generated/workflow-automation.png");
  background-position: center;
  background-size: cover;
}

.project-grid h3,
.project-grid p {
  margin-left: 24px;
  margin-right: 24px;
}

.project-grid h3 {
  font-size: 32px;
  letter-spacing: -0.05em;
  margin-top: 24px;
  margin-bottom: 8px;
}

.project-grid p {
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 28px;
}

.partner-cta {
  text-align: center;
  padding-bottom: 130px;
}

.partner-cta p {
  max-width: 560px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

.partner-cta .contact-email {
  margin-top: -12px;
  margin-bottom: 24px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}

.contact-email a {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(123, 60, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(123, 60, 255, 0.16);
}

.contact-panel {
  max-width: 760px;
  margin: 32px auto 0;
  text-align: left;
  border-radius: 36px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 30px 70px rgba(5, 26, 36, 0.14);
}

.contact-panel textarea,
.contact-panel input {
  width: 100%;
  border: 1px solid rgba(5, 26, 36, 0.12);
  background: #f8fbfd;
  color: var(--primary);
  border-radius: 22px;
  padding: 16px;
  outline: 0;
}

.contact-panel .contact-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 10px;
}

.contact-panel small {
  display: block;
  margin: 10px 6px 0;
  color: var(--muted);
}

.contact-panel small.error {
  color: #b42318;
}

.footer {
  max-width: 1200px;
  margin: 0 auto 104px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.footer strong,
.footer span {
  display: block;
}

.footer strong {
  color: var(--primary);
  font-size: 28px;
  line-height: 1;
}

.footer nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.bottom-pill {
  position: fixed;
  right: 24px;
  bottom: 20px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(5, 26, 36, 0.18);
}

.v-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
}

.v-mark img {
  width: 28px;
  height: auto;
}

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

  .marquee-track {
    animation: none !important;
    transform: none !important;
  }

  .marquee {
    cursor: default;
  }
}

@media (max-width: 850px) {
  .pricing-grid,
  .project-grid,
  .layer-stack,
  .anything-board,
  .contact-row,
  .carousel {
    grid-template-columns: 1fr;
  }

  .board-core {
    width: 180px;
    margin: 0 auto;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 34px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 68px);
  }

  .button-row,
  .footer nav {
    flex-direction: column;
  }

  .btn,
  .contact-row .btn {
    width: 100%;
  }

  .quote-section,
  .pricing,
  .testimonials,
  .projects,
  .data-layer,
  .sources,
  .partner-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .motion-tile {
    width: 270px;
  }

  .bottom-pill {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
  }
}
