/*!********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./components/landing-petra/petra.css ***!
  \********************************************************************************************************************************************************************************************************************************************************************************/
/* Fluxudio scroll-driven landing — scoped entirely under `.petra`. */

.petra {
  --bg: #04050a;
  --ink: #eef2ff;
  --ink-dim: rgba(238, 242, 255, 0.55);
  --ink-faint: rgba(238, 242, 255, 0.28);
  --rule: rgba(255, 255, 255, 0.08);
  --accent: #818cf8;
  --accent-2: #38bdf8;

  position: relative;
  z-index: 1;
  color: var(--ink);
  font-family: var(--font-inter), system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.petra a {
  text-decoration: none;
}

/* Fixed black backdrop + ambient indigo blobs (sits behind the canvas). */
.petra .bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--bg);
  pointer-events: none;
}
.petra .bg::before,
.petra .bg::after {
  content: '';
  position: absolute;
  pointer-events: none;
  filter: blur(30px);
}
.petra .bg::before {
  bottom: -15%;
  left: -10%;
  width: 65%;
  height: 65%;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(99, 102, 241, 0.28) 0%,
    rgba(99, 102, 241, 0.1) 35%,
    transparent 65%
  );
}
.petra .bg::after {
  top: -10%;
  right: -10%;
  width: 60%;
  height: 60%;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(56, 189, 248, 0.2) 0%,
    rgba(14, 165, 233, 0.08) 40%,
    transparent 70%
  );
}

/* Sticky particle canvas */
.petra .stage {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: auto;
}
.petra .stage canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Fixed chrome */
.petra .chrome {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  padding: 28px 36px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.petra .chrome > * {
  pointer-events: auto;
}

.petra .brand-mark {
  font-family: var(--font-mono), monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: start;
  justify-self: start;
}
.petra .brand-mark::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

.petra .chrome-top-right {
  align-self: start;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-family: var(--font-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.petra .chrome-link {
  color: var(--ink-faint);
  transition: color 0.3s;
}
.petra .chrome-link:hover {
  color: var(--ink);
}
.petra .chrome-cta {
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid rgba(129, 140, 248, 0.4);
  border-radius: 999px;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.petra .chrome-cta:hover {
  border-color: var(--accent);
  background: rgba(99, 102, 241, 0.12);
  box-shadow: 0 0 22px rgba(99, 102, 241, 0.35);
}
.petra .chrome-cta span {
  transition: transform 0.3s;
}
.petra .chrome-cta:hover span {
  transform: translateX(3px);
}

/* Sound toggle */
.petra .sound-toggle {
  font-family: var(--font-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  cursor: pointer;
  border: none;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  transition: color 0.3s;
}
.petra .sound-toggle:hover,
.petra .sound-toggle[data-on='true'] {
  color: var(--ink);
}
.petra .sound-bars {
  display: inline-flex;
  align-items: end;
  gap: 2px;
  height: 12px;
}
.petra .sound-bars span {
  display: inline-block;
  width: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: height 0.3s;
}
.petra .sound-toggle[data-on='true'] .sound-bars span:nth-child(1) {
  height: 4px;
}
.petra .sound-toggle[data-on='true'] .sound-bars span:nth-child(2) {
  height: 8px;
}
.petra .sound-toggle[data-on='true'] .sound-bars span:nth-child(3) {
  height: 12px;
}
.petra .sound-toggle[data-on='false'] .sound-bars span {
  height: 4px;
  opacity: 0.5;
}

.petra .chrome-bl {
  align-self: end;
  justify-self: start;
  font-family: var(--font-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.petra .chrome-br {
  align-self: end;
  justify-self: end;
  font-family: var(--font-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-align: right;
}

/* Sections */
.petra .overlay {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.petra .overlay > * {
  pointer-events: auto;
}

.petra .section {
  min-height: 160vh;
  position: relative;
}
.petra .section[data-stage='hero'] {
  min-height: 130vh;
}
.petra .section[data-stage='3'] {
  min-height: 175vh;
}

.petra .section-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8vw;
}

.petra .copy {
  max-width: 880px;
  position: relative;
}
.petra .copy::before {
  content: '';
  position: absolute;
  inset: -160px -240px;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse 64% 74% at 30% 50%,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.82) 40%,
    rgba(0, 0, 0, 0.6) 58%,
    rgba(0, 0, 0, 0.3) 74%,
    rgba(0, 0, 0, 0) 92%
  );
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  -webkit-mask-image: radial-gradient(
    ellipse 64% 74% at 30% 50%,
    #000 0%,
    #000 50%,
    rgba(0, 0, 0, 0.6) 72%,
    transparent 94%
  );
  mask-image: radial-gradient(
    ellipse 64% 74% at 30% 50%,
    #000 0%,
    #000 50%,
    rgba(0, 0, 0, 0.6) 72%,
    transparent 94%
  );
}
.petra .section[data-section='04'] .copy::before {
  inset: -140px -200px;
  background: radial-gradient(
    ellipse 68% 64% at 32% 38%,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.78) 40%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.2) 76%,
    rgba(0, 0, 0, 0) 92%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 68% 64% at 32% 38%,
    #000 0%,
    #000 50%,
    rgba(0, 0, 0, 0.55) 72%,
    transparent 92%
  );
  mask-image: radial-gradient(
    ellipse 68% 64% at 32% 38%,
    #000 0%,
    #000 50%,
    rgba(0, 0, 0, 0.55) 72%,
    transparent 92%
  );
}

.petra .section-label {
  position: absolute;
  right: 6vw;
  bottom: 11vh;
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
}
.petra .section-label .slash {
  color: var(--accent);
}

/* Typography */
.petra .hero-title {
  font-size: clamp(30px, 3.9vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 300;
  margin: 0 0 28px;
  max-width: 15ch;
}
.petra .accent {
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 200;
}

.petra .scroll-hint {
  font-family: var(--font-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
}
.petra .scroll-hint .arrow {
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, var(--ink-faint), transparent);
  position: relative;
}
.petra .scroll-hint .arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
  transform: rotate(-45deg);
}

.petra .section-title {
  font-size: clamp(36px, 4.8vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  font-weight: 300;
  margin: 0 0 32px;
  max-width: 16ch;
}
.petra .section-title .stack {
  display: block;
}

.petra .lede {
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.55;
  color: var(--ink-dim);
  margin: 0 0 36px;
  max-width: 58ch;
  font-weight: 300;
}
.petra .lede strong {
  color: var(--ink);
  font-weight: 400;
}

.petra .section-actions {
  display: flex;
  gap: 32px;
  align-items: center;
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.petra .section-actions a,
.petra .section-actions button {
  color: var(--ink-dim);
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.25s;
}
.petra .section-actions a:hover,
.petra .section-actions button:hover {
  color: var(--ink);
}
.petra .section-actions .underline {
  position: relative;
  padding-bottom: 4px;
}
.petra .section-actions .underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  opacity: 0.35;
  transform-origin: left;
  transition: opacity 0.3s, transform 0.3s;
}
.petra .section-actions .underline:hover::after {
  opacity: 1;
  transform: scaleX(1.05);
}
.petra .section-actions .read-more {
  color: var(--accent);
}
.petra .section-actions .read-more .plus {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  transition: transform 0.4s, background 0.4s, color 0.4s;
}
.petra .section-actions .read-more:hover .plus {
  transform: rotate(90deg);
}

.petra .read-more-body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease, margin 0.4s ease;
  margin-top: 0;
}
.petra .section.is-expanded .read-more-body {
  max-height: 800px;
  opacity: 1;
  margin-top: 28px;
}
.petra .section.is-expanded .section-actions .plus {
  transform: rotate(45deg);
  background: var(--accent);
  color: #050616;
}

/* Capabilities grid */
.petra .caps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 28px;
  margin-top: 56px;
  max-width: 1180px;
}
.petra .cap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.01)
  );
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s;
}
.petra .cap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 80% at 50% -10%,
    rgba(99, 102, 241, 0.18),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s;
}
.petra .cap:hover {
  border-color: rgba(129, 140, 248, 0.5);
  transform: translateY(-3px);
}
.petra .cap:hover::before {
  opacity: 1;
}
.petra .cap .badge {
  position: relative;
  z-index: 1;
  font-family: var(--font-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.petra .cap .cap-name {
  position: relative;
  z-index: 1;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 0;
}
.petra .cap .cap-desc {
  position: relative;
  z-index: 1;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-faint);
  margin: 0;
}

/* Outro / footer */
.petra .outro {
  position: relative;
  z-index: 2;
  padding: 18vh 8vw 6vh;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.92) 22%);
}
.petra .outro-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.petra .outro h2 {
  font-size: clamp(28px, 3.4vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 300;
  margin: 0 0 40px;
  max-width: 24ch;
}
.petra .cta-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.petra .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s,
    border-color 0.3s, color 0.3s;
}
.petra .btn-primary {
  color: #050616;
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 28px rgba(99, 102, 241, 0.4);
}
.petra .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(99, 102, 241, 0.6);
}
.petra .btn-ghost {
  color: var(--ink-dim);
  border: 1px solid var(--rule);
}
.petra .btn-ghost:hover {
  color: var(--ink);
  border-color: rgba(129, 140, 248, 0.5);
}
.petra .foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-family: var(--font-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-top: 56px;
  border-top: 1px solid var(--rule);
  margin-top: 80px;
  flex-wrap: wrap;
  gap: 32px;
}
.petra .foot .cols {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.petra .foot a {
  color: var(--ink-dim);
  transition: color 0.25s;
}
.petra .foot a:hover {
  color: var(--ink);
}

/* Right-rail */
.petra .rail {
  position: fixed;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 38;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.petra .rail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  transition: color 0.4s;
  justify-content: flex-end;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.petra .rail-item:hover {
  color: var(--ink);
}
.petra .rail-item:hover .marker {
  opacity: 0.8;
  width: 40px;
}
.petra .rail-item .num {
  min-width: 22px;
  text-align: right;
}
.petra .rail-item .marker {
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.4;
  transition: width 0.4s, opacity 0.4s, background 0.4s;
}
.petra .rail-item.active {
  color: var(--ink);
}
.petra .rail-item.active .marker {
  width: 56px;
  opacity: 1;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(129, 140, 248, 0.6);
}

@media (max-width: 860px) {
  .petra .caps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .petra .chrome {
    padding: 18px 18px;
  }
  .petra .chrome-top-right {
    gap: 14px;
  }
  .petra .chrome-link,
  .petra .sound-toggle {
    display: none;
  }
  .petra .section-inner {
    padding: 0 6vw;
  }
  .petra .section-label {
    right: 6vw;
    bottom: 6vh;
    font-size: 10px;
  }
  .petra .caps {
    grid-template-columns: 1fr;
  }
  .petra .rail {
    display: none;
  }
}

