/* --------FONT SYSTEM -------- */
/* Karantina */

/* 12px, 16px, 24px, 32px, 48px, 72px, 128px*/
/* 1rem = 10px */

/* ------------------------------ COLOR SYSTEM  ------------------------------*/

/* blues

- #f

- #2F4858
*/

/* grays
#333333
#292929
#1F1F1F
#141414
*/

/* whites/text
#fff



*/

/* ------------------------------ COLOR SYSTEM  ------------------------------*/

@font-face {
  font-family: "Karantina-Regular";
  src: url("fonts/Karantina-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Karantina-Bold";
  src: url("fonts/Karantina-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Karantina-Light";
  src: url("fonts/Karantina-Light.ttf");
  font-weight: normal;
  font-style: normal;
}

/* -------- SPACING SYSTEM --------*/

* {
  margin: 0px;
  padding: 0px;
}

:root {
  --bg0: #000000;
  --bg1: #0b0b14;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  color: white;
  padding-top: 76px;
  min-height: 100vh;

  background:
    /* center readability vignette */ radial-gradient(
      circle at 50% 20%,
      rgba(8, 8, 12, 0.98) 0%,
      rgba(8, 8, 12, 0.9) 35%,
      rgba(8, 8, 12, 0.85) 65%,
      rgba(8, 8, 12, 0.8) 100%
    ),
    /* subtle repeatable noise/texture (tileable!) */
      url("images/lostandtexture1.jpg");
  /* base gradient mood */
  /* linear-gradient(to bottom, var(--bg0), var(--bg1)); */

  background-size: cover, 20px 20px, cover;
  background-repeat: no-repeat, repeat;
  background-attachment: scroll, scroll, scroll;

  overflow-x: hidden;
}

#app-content {
  flex: 1;
}

/* .background-image {
  z-index: 1;
} */

.section {
}

.section-01 {
  margin-bottom: 10%;
}

.logo {
  margin-top: 2rem;
  font-family: "Karantina-Regular", sans-serif;
  font-size: 2.4rem;
  letter-spacing: 1rem;
  justify-self: center;
  color: #fff;
  user-select: none;
}

.brand-label {
  margin: 4rem 0 4rem 0;
  height: clamp(1.6rem, 4vw, 2.4rem);
}

.zen-dots-regular {
  font-family: "Zen Dots", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ─── HERO DEPTH & ATMOSPHERE ─── */

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 50% at 50% 35%,
    rgba(20, 25, 45, 0.35) 0%,
    transparent 70%
  );
  z-index: 0;
  pointer-events: none;
}

/* Depth glow orbs */
.hero-depth {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transition: transform 0.3s ease-out;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}

.hero-glow--1 {
  width: clamp(280px, 38vw, 520px);
  height: clamp(280px, 38vw, 520px);
  background: radial-gradient(circle, rgba(60, 110, 190, 0.18), transparent 70%);
  top: -8%;
  left: 12%;
  animation: glowDrift1 14s ease-in-out infinite alternate;
}

.hero-glow--2 {
  width: clamp(220px, 32vw, 420px);
  height: clamp(220px, 32vw, 420px);
  background: radial-gradient(circle, rgba(110, 50, 170, 0.14), transparent 70%);
  bottom: 8%;
  right: 8%;
  animation: glowDrift2 18s ease-in-out infinite alternate;
}

.hero-glow--3 {
  width: clamp(200px, 28vw, 380px);
  height: clamp(200px, 28vw, 380px);
  background: radial-gradient(circle, rgba(137, 196, 212, 0.12), transparent 70%);
  top: 45%;
  left: 50%;
  animation: glowDrift3 11s ease-in-out infinite alternate;
}

@keyframes glowDrift1 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(25px, 18px) scale(1.08); }
}

@keyframes glowDrift2 {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-20px, -14px) scale(1.1); }
}

@keyframes glowDrift3 {
  from { transform: translate(-50%, 0) scale(1); }
  to { transform: translate(calc(-50% + 15px), 12px) scale(1.05); }
}

/* Audio-reactive waveform bars */
.hero-waveform {
  position: absolute;
  bottom: 16%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 50px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.06;
}

.hero-wave-bar {
  display: block;
  width: 2px;
  border-radius: 1px;
  background: rgba(137, 196, 212, 0.9);
  height: 20%;
  animation: waveBar 2s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.055s);
}

@keyframes waveBar {
  0%, 100% { height: 18%; }
  35% { height: 85%; }
  55% { height: 55%; }
  75% { height: 70%; }
}

/* Audio-reactive pulse rings */
.hero-pulse-ring {
  position: absolute;
  top: 55%;
  left: 50%;
  width: clamp(380px, 45vw, 650px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(137, 196, 212, 0.05);
  z-index: 0;
  pointer-events: none;
  translate: -50% -50%;
  animation: audioPulse 3.2s ease-out infinite;
}

.hero-pulse-ring::after {
  content: "";
  position: absolute;
  inset: -35px;
  border-radius: 50%;
  border: 1px solid rgba(137, 196, 212, 0.04);
  animation: audioPulse 3.2s ease-out infinite;
  animation-delay: 1.1s;
}

@keyframes audioPulse {
  0% { scale: 0.85; opacity: 0.18; }
  50% { opacity: 0.06; }
  100% { scale: 1.2; opacity: 0; }
}

/* Floating animation for product cards */
.hero-box--float {
  animation: heroFloat 6s ease-in-out infinite;
}

.hero-box--float:nth-child(2) {
  animation-delay: -3s;
}

@keyframes heroFloat {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

/* 3D Blob canvas container */
.hero-blob-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero--blob-active .hero-blob-canvas canvas {
  opacity: 1;
}

/* Reduce CSS glows when 3D blob is active */
.hero--blob-active .hero-depth {
  opacity: 0.3;
}

/* Mouse tilt target */
[data-hero-tilt] {
  transition: transform 0.15s ease-out;
  /* flat (default) — preserve-3d is unnecessary here (no children have 3D
     transforms) and causes Safari to composite glow blur layers far too
     aggressively, producing an oversaturated glow on the cards. */
  transform-style: flat;
}

.hero-title {
  /* font-family: "Karantina-Regular", sans-serif; */
  /* font-family: "Zen Dots", sans-serif; */
  font-family: "Major Mono Display", monospace;
  font-weight: 700;
  text-align: left;
  /* font-size: 12rem; */
  font-size: clamp(2.8rem, 7vw, 11rem);
  /* font-size: clamp(4.8rem, 10vw, 12rem); */
  margin-top: 2rem;
  color: #fff;
  text-shadow: 0 4px 40px rgba(255, 255, 255, 0.07);
  line-height: 1.02;
  letter-spacing: 3px;
}

.pulse-line {
  height: 2px;
  width: 100%;
  border-radius: 24px;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  background: #222; /* base line color */
}

.pulse-line::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.8) 50%,
    transparent 100%
  );

  background-size: 200% 100%;
  animation: pulse 4s linear infinite;
}

@keyframes pulse {
  from {
    background-position: -100% 0;
  }
  to {
    background-position: 100% 0;
  }
}

.hero-title-test {
  /* font-family: "Karantina-Regular", sans-serif; */
  transform: rotate(180deg);
  font-family: "Major Mono Display", monospace;
  font-weight: 600;
  text-transform: uppercase;
  text-align: left;
  justify-self: left;
  /* font-size: 12rem; */
  font-size: 1rem;
  /* font-size: clamp(4.8rem, 10vw, 12rem); */
  margin-top: 2rem;
  color: #fff;
  text-shadow: 0 8px 40px rgba(255, 255, 255, 0.08);
  line-height: 1.05;
  letter-spacing: 0.05rem;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 80%;
  max-width: 75%;
  margin: 0 auto;
  /* padding: 6.4rem 2rem 4.8rem; */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-line {
  color: white;

  /* font-family: "Manrope", sans-serif; */
  font-family: "Noto Sans", sans-serif;
  /* font-family: "Inter mono", monospace; */
  /* font-family: "Inter", sans-serif; */
  /* font-family: "Avenir", sans-serif !important; */
  /* font-size: 4.8rem; */
  font-size: clamp(2.4rem, 4.2vw, 5.6rem);
  font-weight: 300;
  margin-top: clamp(8rem, 10vw, 12rem);
  justify-self: center;
}

.hero-boxes {
  display: flex;
  flex-direction: row;
  margin: 6rem 0 6rem 0;
  gap: 2.4rem;
  cursor: pointer; /* keeps pointer in gaps between cards during 3D tilt */
  will-change: transform;
}

.hero-box {
  width: min(480px, 34vw);
  aspect-ratio: 4 / 3;
  container-type: inline-size;

  position: relative;
  overflow: hidden;

  border: 1px solid rgb(139, 139, 139);
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: box-shadow 300ms ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-boxes-freebounce {
  --bg: url("images/ui-example-smaller.png");
}

/* background image layer */
.hero-box::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: var(--bg);
  background-size: cover; /* fits box proportions */
  background-position: center;
  scale: 1.2; /* keep center framed */
  transition: transform 400ms ease, box-shadow 0.3s ease;

  /* make image dark + faded */
  filter: brightness(0.95) saturate(1.2) contrast(1.05);
  opacity: 0.9;

  z-index: 0;
}

/* overlay + vignette layer */
.hero-box::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 1.2;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(0, 0, 0, 0.35) 65%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 1;
  transition: opacity 0.25s ease;
}

/* text/content on top */
.hero-boxes-freebounce-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 8cqi 0 0 8cqi;
  color: white;
}

.hero-boxes-freebounce-header,
.hero-boxes-freebounce-description {
  color: white; /* your current is black */
  text-decoration: none;
}

.hero-boxes-freebounce-header {
  font-family: "Noto Sans", sans-serif !important;
  font-weight: 700;
  font-size: clamp(1.6rem, 8cqi, 3.2rem);
  text-align: left;
  color: #fff;
  width: 100%;
}

.hero-boxes-freebounce-description {
  font-family: "Noto Sans", sans-serif !important;
  font-weight: 400;
  text-align: left;
  font-size: clamp(1rem, 4cqi, 1.8rem);
  margin-top: 1.2rem;
  margin-bottom: 2rem;

  color: #fff;
  width: 100%;
}

.hero-boxes-freebounce-line {
  width: 60%;
  height: 2px;
  border-radius: 2px;
  margin-top: 0.8rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    to right,
    rgba(137, 196, 212, 0.25),
    transparent
  );
}

.hero-boxes-freebounce-line::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(137, 196, 212, 0.8) 50%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: pulse 4s linear infinite;
}

/* hover — no translateY: it causes a Safari hit-test feedback loop when the
   parent has a live 3D perspective transform. The lift shifts the element out
   from under the cursor, ending hover, reverting the lift, re-entering hover,
   flickering the cursor on every mousemove. Box-shadow gives the lift feel. */
.hero-box:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
}

.hero-box:hover::before {
  transform: scale(1.02);
}

/* optional: nicer focus for keyboard users */
.hero-box:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.7);
  outline-offset: 4px;
}

.hero-boxes-demo {
  --bg: url("images/freebounce-demo-thumnail.png");
}

/* Trigger card (optional styling) */
/* .video-card {
  width: 100%;
  max-width: 750px;
  aspect-ratio: 16 / 9;
  position: relative;
  border: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: box-shadow 250ms ease;
}
.video-card:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
} */
.video-card.hero-box {
  display: flex; /* or flex — match the <a> */
  background-image: url("images/freebounce-demo-thumnail.png");
  background-size: cover;
  background-position: center;
  border: none;
  padding: 0;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.video-card:hover::before {
  transform: scale(1.02);
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.05)
  );
  pointer-events: none;
}
.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 3rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

/* ===== MODAL ===== */

/* IMPORTANT: starts hidden */
.video-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;

  z-index: 9999;
}

/* open state */
.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

/* panel centered */
.video-panel {
  position: relative;
  width: min(1100px, 92vw);
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
}

.video-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-size: 18px;
  z-index: 5; /* above video */
}

/* lock background scroll while modal open */
body.modal-open {
  overflow: hidden;
}

.hero-boxes-freebounce-demo-video-info {
  position: relative;
  z-index: 1000;
  justify-self: left;
  margin: 4rem;
  color: white;
}

.hero-boxes-freebounce-demo-video-header {
  font-family: "Noto Sans", sans-serif !important;
  font-weight: 700;
  font-size: clamp(2.4rem, 4vw, 6.4rem);
  justify-self: center;
  text-align: center;
  color: #fff;
  width: 100%;

  color: white; /* your current is black */
  text-decoration: none;
}

.hero-btn {
  display: flex;
  flex-direction: column;
  justify-self: center;
  margin: 12rem 0 0 0;
  padding: clamp(14px, 2.5vw, 36px) clamp(18px, 4vw, 72px);
  /* padding: 3.6rem 7.2rem 3.6rem 7.2rem; */
  text-decoration: none;

  color: #000;
  background: #ffffff;

  border-radius: 4px;
  transition: all 0.3s ease;

  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.hero-btn-text {
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(1.6rem, 1.5vw, 2.6rem);
  font-weight: 300;
}

.hero-btn-arrow {
  display: flex;
  flex-direction: column;
  justify-self: center;
  padding: clamp(10px, 2vw, 20px);
  margin: 2rem 0 4rem 0;
  text-decoration: none;

  color: #000;
  background: #ffffff;

  border-radius: 50%;
  transition: all 0.3s ease;

  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
}

.hero-btn-arrow-icon {
  align-self: center;
  width: 2.4rem;
  opacity: 0.8;
  transition: transform 0.2s ease;
}

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

.hero-btn-arrow:hover {
  transform: translateY(3px);
}

/* Hover */
.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Active */
.hero-btn:active {
  transform: translateY(0);
}

.dividing-line {
  border-top: white 1px solid;
  width: 100vw;
}

/* -------------------- IN BETWEEN SECTION-------------------- */

.inbtwn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 4rem;
}

.used-by-header {
  font-family: "Noto Sans", sans-serif !important;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.5vw, 1.4rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 3rem;
  justify-self: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  width: 100%;
}

.used-by-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 4vw, 8rem);
}

.used-by-list-item {
  font-family: "Noto Sans", sans-serif !important;
  font-weight: 500;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  letter-spacing: 0.05rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.7rem 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.used-by-list-item:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.9);
}

/* .inbtwn img {
  max-width: 24rem;
  opacity: 0.4;
  background: none;
  filter: grayscale(100%);
} */

.made-with {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.supported-by {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.supported-by-header {
  font-family: "Karantina-Regular", sans-serif;
  font-size: 8rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  justify-self: center;
  color: #fff;
}

.preset-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preset-info-header {
  font-family: "Karantina-Regular", sans-serif;
  font-size: 12rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  justify-self: center;
  color: #fff;
}

.preset-info-subtext {
  font-family: "Karantina-Regular", sans-serif;
  font-size: 6rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  justify-self: center;
  color: #fff;
}

/* -------------------- IN BETWEEN SECTION-------------------- */

/* ─────────────────────── PRODUCT PAGE ─────────────────────── */

.product-page {
  display: flex;
  justify-content: center;
  padding: 2rem 2rem 0;
}

.product-page-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
}

.product-page-header {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.product-page-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(3.6rem, 6vw, 7.2rem);
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.05;
  margin: 0;
}

.product-page-byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.4);
  user-select: none;
}

.product-page-byline img {
  height: 1.4rem;
  opacity: 0.4;
}

.product-layout {
  display: flex;
  gap: 4rem;
  width: 100%;
}

.product-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  flex: 1.1;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex: 1;
}

.player-header {
  font-family: "Karantina-Regular", sans-serif;
  font-size: 3.6rem;
  letter-spacing: 0.1rem;
}

.player {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: clamp(2.4rem, 3vw, 4.8rem);
  width: 60%;
}

.player-title {
  font-family: "Karantina-Regular", sans-serif;
  font-size: 4.8rem;
  color: #fff;
  margin: 0 0 0 0;
}

.status {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  margin-top: 0rem;
}

.title {
  color: #fff;
  font-family: "Inconsolata", monospace;
  font-size: 2.4rem;
}

.controls {
  display: flex;
  flex-direction: row;
  margin-top: 0rem;
  gap: clamp(rem, 1vw, 1.2rem);
}

.controls button {
  all: unset;
  cursor: pointer;
  font-size: 2.4rem;
  /* background-color: white; */
  border-radius: 8px;
  padding: 1.2rem 1.4rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

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

.back {
}

.icon {
  width: 24px;
  height: 24px;
  /* stroke: currentColor; */
  /* fill: none; */
}

.play-toggle .icon {
  font-size: 4.8rem;
  /* padding: 2rem; */
}

.play-toggle .pause {
  display: none;
}

.play-toggle.is-playing .play {
  display: none;
}

.play-toggle.is-playing .pause {
  display: block;
}

.forward {
}

.wave {
  margin: 0rem 0 0rem 0;
  width: 25%;
  max-width: 25%;
  height: 4.8rem;
  transition: opacity 0.2s ease;
}

.wave:hover {
  opacity: 0.8;
}

.light {
  display: inline-block;
  align-self: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: none;
  border: 1px solid white;
}

.light.on {
  background: red;
}

/* IMAGES AND CAROUSEL */

.product-images-carousel {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  user-select: none;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-images-carousel:hover {
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.product-images-viewport {
  overflow: hidden;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 44px;
  width: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 30px;
  line-height: 44px;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.nav.prev {
  z-index: 2;
  left: 10px;
}
.nav.next {
  right: 10px;
}

.nav:active {
  transform: translateY(-50%) scale(0.98);
}

.prev {
}

.next {
}

.product-images {
  display: flex;
  transition: transform 250ms ease;
  will-change: transform;
}

.product-images > img {
  width: 75%;
  flex: 0 0 100%;
  display: block;
  object-fit: contain; /* good for screenshots */
  background: #111; /* letterbox background */
  aspect-ratio: 4 / 3;
}

.dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
  pointer-events: none; /* not clickable */
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
}

.dot.active {
  background: rgba(255, 255, 255, 0.95);
}
/* IMAGES & CAROUSEL */

.product-price {
  text-align: center;
  font-family: "Karantina-Regular", sans-serif;
  font-size: 8rem;
  font-weight: 600;
  margin-top: 1rem;
}

#buy-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;

  margin: 0;
  padding: clamp(1.3rem, 3vw, 1.6rem) clamp(2.4rem, 5vw, 3.2rem);

  min-width: 170px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  cursor: pointer;

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 180ms ease;
}

.buy-btn-label {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.buy-btn-sub {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}

.buy-btn-old {
  text-decoration: line-through;
  opacity: 0.5;
  margin-right: 0.2rem;
}

/* Animated border via background gradient on pseudo-element */
#buy-btn::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    130deg,
    rgba(137, 196, 212, 0) 0%,
    rgba(137, 196, 212, 0) 40%,
    rgba(140, 210, 230, 0.8) 50%,
    rgba(137, 196, 212, 0) 60%,
    rgba(137, 196, 212, 0) 100%
  );
  background-size: 300% 100%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 180ms ease;
}

#buy-btn:hover::before {
  opacity: 1;
  animation: borderSlide 2s linear infinite;
}

@keyframes borderSlide {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

#buy-btn:hover {
  border-color: rgba(140, 210, 230, 0.6);
  background: rgba(137, 196, 212, 0.08);
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 14px rgba(140, 210, 230, 0.3);
}

#buy-btn:hover .buy-btn-label {
  color: #fff;
}

#buy-btn:hover .buy-btn-sub {
  color: rgba(255, 255, 255, 0.6);
}

#buy-btn:active {
  transform: translateY(0) scale(0.98);
  background: rgba(137, 196, 212, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

#buy-btn:active::before {
  opacity: 0;
}


.button-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2rem;
}

/* ── Product demo card (in media column below buy) ─────── */

.product-demo-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-demo-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.product-demo-thumb {
  width: 100%;
  display: block;
  object-fit: cover;
}

.product-demo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.product-demo-card:hover .product-demo-overlay {
  background: rgba(0, 0, 0, 0.15);
}

.product-demo-play {
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.product-demo-play svg {
  width: 100%;
  height: 100%;
}

.product-demo-card:hover .product-demo-play {
  transform: scale(1.08);
}

.product-demo-label {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 4rem;
  padding: 2.4rem clamp(2rem, 5vw, 4rem);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4rem;
}

.footer-logo {
  height: clamp(1.6rem, 4vw, 2.4rem);
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 12rem;
  list-style: none;
}

.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: center;
  padding: clamp(0.5rem, 3vw, 1rem) clamp(1rem, 3vw, 2rem);

  background-color: #fff;
  border-radius: 4px;
  border: #1f1f1f 1px solid;
  transition: 0.3s ease;
  text-decoration: none;
}

.footer-contact-icon {
  width: 2rem;
  height: 2rem;
  color: black;
}

.footer-contact-text {
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  font-weight: 500;
  color: black;
  text-align: center;
  text-wrap: nowrap;
}

/* Hover */
.footer-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2), 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Active */
.footer-contact:active {
  transform: translateY(0);
}

/* ── Product info cards ─────────────────────────────────── */

.product-info-card {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: clamp(2rem, 4vw, 2.8rem);
  transition: border-color 0.3s ease;
}

.product-info-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.product-info-card-header h2 {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: #fff;
  margin: 0;
}

.product-info-line {
  width: 40%;
  height: 2px;
  margin-top: 0.8rem;
  margin-bottom: 1.6rem;
  border-radius: 2px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0)
  );
}

.product-info-text {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.7rem);
  font-weight: 400;
  line-height: 1.7;
  margin: 0 0 1.2rem 0;
}

.product-info-text:last-child {
  margin-bottom: 0;
}

.product-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-features-list li {
  color: rgba(255, 255, 255, 0.78);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.7rem);
  font-weight: 400;
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.5;
}

.product-features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

/* ── Product compat grid (glass pills) ─────────────────── */

.product-compat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.product-compat-pill {
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-family: "Inter", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.product-compat-pill:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
}

.product-juce {
  margin-top: 1.2rem;
}

.product-juce img {
  max-width: 7rem;
  opacity: 0.4;
  filter: grayscale(100%);
}
/* ─────────────────────── MEDIA QUERIES ─────────────────── */

@media (max-width: 1050px) {
  .hero-boxes {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 6rem;
    gap: 3rem;
  }

  .hero-box {
    width: min(400px, 70vw);
  }

  .hero-boxes-freebounce-info {
    justify-self: left;
  }

  /* Disable heavy hero effects on tablet/mobile */
  .hero-waveform { display: none; }
  .hero-pulse-ring { display: none; }
  .hero-box--float { animation: none; }
  [data-hero-tilt] { transform: none !important; }
  .hero-depth { transition: none; }
  .hero-glow { filter: blur(130px); }
}

/* Product page column -> stack */
@media (max-width: 900px) {
  .product-layout {
    flex-direction: column;
    align-items: center;
  }

  .product-media {
    width: 100%;
    max-width: 520px;
  }

  .product-info {
    width: 100%;
    max-width: 520px;
  }
}

/* Tablet */
@media (min-width: 768px) {
  .hero-inner {
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (max-width: 750px) {
  .hero-inner {
    width: 100%;
    max-width: 100%;
    padding: 2.4rem 2rem 3.2rem;
  }

  .brand-label {
    height: 50px;
    width: auto;
  }

  .hero-boxes {
    flex-direction: column;
    gap: 2rem;
    margin: 3.2rem 0;
  }

  .hero-box {
    width: 70vw;
  }

  .hero-boxes-freebounce-info {
    margin: 2rem;
  }

  .button-info {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  #buy-btn {
    width: min(70%, 320px);
  }

  .product-page {
    padding: 1rem 1.2rem 0;
  }

  .product-page-header {
    margin-top: 2rem;
    margin-bottom: 3rem;
  }

}

/* ─────────────────────────── NAVBAR ─────────────────────────── */

.navbar {
  position: fixed;
  top: 1.2rem;
  left: clamp(1.6rem, 4vw, 4rem);
  right: clamp(1.6rem, 4vw, 4rem);
  z-index: 1000;
  background: rgba(12, 12, 16, 0.45);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 0 clamp(2.4rem, 4vw, 3.6rem);
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar:hover {
  background: rgba(12, 12, 16, 0.82);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.4),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.navbar-logo img {
  height: 1.8rem;
  display: block;
  opacity: 0.85;
  transition: opacity 0.25s ease, filter 0.25s ease;
}

.navbar-logo:hover img {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.15));
}

.navbar-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  list-style: none;
}

.navbar-links a {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: rgba(255, 255, 255, 0.95);
}

.navbar-links a.active {
  color: #fff;
}

/* Plugins dropdown */
.nav-dropdown {
  position: relative;
  list-style: none;
}

.nav-dropdown-toggle {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.3s ease;
}

.nav-dropdown-toggle:hover {
  color: rgba(255, 255, 255, 0.95);
}

.nav-dropdown-toggle::after {
  content: "\25BE";
  font-size: 0.9rem;
  opacity: 0.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: rotate(180deg);
  opacity: 0.9;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding-top: 0.8rem;
  min-width: 180px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-dropdown-menu-inner {
  background: rgba(12, 12, 16, 0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.6rem 0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu-inner a {
  display: block;
  padding: 0.8rem 1.6rem;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  border-radius: 6px;
  margin: 0 0.4rem;
}

.nav-dropdown-menu-inner a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.coming-soon-label {
  font-size: 1rem;
  opacity: 0.5;
  margin-left: 0.6rem;
}

/* Hamburger */
.navbar-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.navbar-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.navbar-hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 750px) {
  .navbar-hamburger {
    display: flex;
  }

  .navbar {
    top: 0.8rem;
    left: 1.2rem;
    right: 1.2rem;
    height: 52px;
    border-radius: 14px;
    padding: 0 1.8rem;
  }

  .navbar-links {
    position: fixed;
    top: 66px;
    left: 1.2rem;
    right: 1.2rem;
    bottom: auto;
    background: rgba(12, 12, 16, 0.95);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    flex-direction: column;
    padding: 2.4rem 2rem;
    gap: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .navbar-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .navbar-links li {
    text-align: center;
  }

  .navbar-links a,
  .nav-dropdown-toggle {
    font-size: 1.6rem;
  }

  .nav-dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav-dropdown-toggle {
    justify-content: center;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    padding-top: 0;
    margin-top: 1rem;
    opacity: 0;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.25s ease, max-height 0.3s ease;
  }

  .nav-dropdown-menu-inner {
    background: rgba(255, 255, 255, 0.03);
    border: none;
    box-shadow: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    max-height: 200px;
    transform: none;
  }
}

/* ─────────────────────── WHO WE ARE ─────────────────────── */

.who-we-are {
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 8rem;
  display: flex;
  justify-content: center;
}

/* atmospheric glow — teal bloom centered behind the section */
.who-we-are::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120vw;
  height: 700px;
  background: radial-gradient(
    ellipse at center,
    rgba(137, 196, 212, 0.07) 0%,
    rgba(80, 140, 180, 0.04) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

/* very faint horizontal band of warmth at top of section */
.who-we-are::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(137, 196, 212, 0.18) 30%,
    rgba(137, 196, 212, 0.18) 70%,
    transparent
  );
  pointer-events: none;
}

.who-we-are-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.who-we-are-eyebrow {
  font-family: "Major Mono Display", monospace;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2.4rem;
}

.who-we-are-heading {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 4vw, 5.2rem);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 3rem;
  text-shadow: 0 0 80px rgba(255, 255, 255, 0.06);
}

.who-we-are-body {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.5rem, 2.2vw, 1.85rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 4rem;
}

.who-we-are-sep {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.08) 80%,
    transparent
  );
  margin-bottom: 3.2rem;
}

.who-we-are-pillars {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}

.who-we-are-pillar {
  flex: 1 1 0;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 2.2rem 2.4rem 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.who-we-are-pillar:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.who-we-are-pillar-num {
  font-family: "Major Mono Display", monospace;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
  margin-bottom: 1.6rem;
}

.who-we-are-pillar-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: #fff;
  margin-bottom: 1rem;
}

.who-we-are-pillar-desc {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 1.5rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.65;
}

/* Scroll animation */
.wwa-hidden {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.wwa-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 750px) {
  .who-we-are {
    padding: 5rem 1.6rem 6rem;
  }

  .who-we-are-pillars {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
}

/* ─────────────────────── COMING SOON ─────────────────────── */

.coming-soon-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(0.9rem, 3cqi, 1.2rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  margin-top: 1.2rem;
}

.hero-box-coming-soon {
  --bg: none;
  background: linear-gradient(135deg, rgba(30, 30, 40, 0.9), rgba(15, 15, 20, 0.95));
}

.hero-box-coming-soon .hero-boxes-freebounce-info {
  align-items: center;
  margin: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  text-align: center;
}

.hero-box-coming-soon .hero-boxes-freebounce-header,
.hero-box-coming-soon .hero-boxes-freebounce-description {
  text-align: center;
}

.hero-box-coming-soon::before {
  background-image: none;
}


.coming-soon-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: 8rem 2rem;
}

.coming-soon-page h1 {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(4rem, 8vw, 8rem);
  color: #fff;
  margin-bottom: 1rem;
}

.coming-soon-tagline {
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 3rem;
}

.coming-soon-badge-large {
  display: inline-block;
  padding: 1rem 3rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.notify-form {
  width: 100%;
  max-width: 400px;
}

.notify-input-row {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: border-color 0.25s ease;
}

.notify-input-row:focus-within {
  border-color: rgba(255, 255, 255, 0.25);
}

.notify-input {
  flex: 1;
  padding: 1.2rem 1.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  outline: none;
}

.notify-input:-webkit-autofill,
.notify-input:-webkit-autofill:hover,
.notify-input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0 1000px rgba(12, 12, 16, 0.95) inset;
  transition: background-color 5000s ease-in-out 0s;
}

.notify-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.notify-btn {
  padding: 1.2rem 2.4rem;
  background: #fff;
  color: #000;
  border: none;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.notify-btn:hover {
  background: #e0e0e0;
}

.notify-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.notify-status {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 1.2rem;
  min-height: 1.8rem;
}

.notify-status-success {
  color: rgba(130, 220, 160, 0.9);
}

.notify-status-error {
  color: rgba(240, 120, 120, 0.9);
}

/* ─────────────────────────── FAQ PAGE ─────────────────────────── */

.faq-page {
  padding: 6rem 2rem 2rem;
  display: flex;
  justify-content: center;
}

.faq-page-inner {
  width: 100%;
  max-width: 720px;
}

.faq-page-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(3.6rem, 6vw, 6rem);
  color: #fff;
  text-align: center;
  margin-bottom: 1.2rem;
}

.faq-page-intro {
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 4rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(12, 12, 16, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  overflow: hidden;
  transition: background 0.25s ease, border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.faq-item:hover {
  background: rgba(12, 12, 16, 0.7);
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-item.is-open {
  background: rgba(12, 12, 16, 0.75);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 1.8rem 2rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.faq-question-text {
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.faq-chevron {
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-chevron::before,
.faq-chevron::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 1px;
  transition: background 0.2s ease;
}

.faq-chevron::before {
  transform: translate(-85%, -50%) rotate(40deg);
}

.faq-chevron::after {
  transform: translate(-15%, -50%) rotate(-40deg);
}

.faq-item:hover .faq-chevron::before,
.faq-item:hover .faq-chevron::after {
  background: rgba(255, 255, 255, 0.6);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 2rem 2rem;
  font-family: "Inter", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.faq-answer-inner a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.faq-answer-inner a:hover {
  color: #fff;
}

.faq-answer-inner ol,
.faq-answer-inner ul {
  margin: 1rem 0 1rem 2rem;
}

.faq-answer-inner li {
  margin-bottom: 0.4rem;
}

/* CTA at bottom */
.faq-cta {
  text-align: center;
  margin-top: 5rem;
  padding-bottom: 2rem;
}

.faq-cta-text {
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.6rem;
}

.faq-cta-btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 6px;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15),
    0 8px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 750px) {
  .faq-page {
    padding: 4rem 1.6rem 2rem;
  }

  .faq-question {
    padding: 1.6rem 1.6rem;
  }

  .faq-answer-inner {
    padding: 0 1.6rem 1.6rem;
  }
}

/* ─────────────────────────── LEGAL PAGES ─────────────────────────── */

.legal-page {
  padding: 6rem 2rem 8rem;
  display: flex;
  justify-content: center;
}

.legal-page-inner {
  width: 100%;
  max-width: 720px;
}

.legal-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(3.6rem, 6vw, 6rem);
  color: #fff;
  text-align: center;
  margin-bottom: 1.2rem;
}

.legal-meta {
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  margin-bottom: 1.2rem;
}

.legal-lead {
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 4rem;
}

.legal-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 4rem 0;
}

.legal-section-title {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 3.2rem 0 0.8rem;
}

.legal-text {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.legal-list li {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.legal-list strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.legal-link:hover {
  color: #fff;
}

/* Footer legal links */
.footer-legal-links {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}

.footer-legal-link {
  font-family: "Noto Sans", sans-serif;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.footer-legal-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 750px) {
  .legal-page {
    padding: 4rem 1.6rem 6rem;
  }

  .footer-legal-links {
    gap: 1.6rem;
    margin-right: 0;
  }

  .footer-legal-link {
    font-size: 1.1rem;
  }
}

/* ─────────────────────── CONTACT PAGE ─────────────────────── */

.contact-page {
  padding: 6rem 2rem 2rem;
  display: flex;
  justify-content: center;
}

.contact-page-inner {
  width: 100%;
  max-width: 520px;
}

.contact-page-title {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-size: clamp(3.6rem, 6vw, 6rem);
  color: #fff;
  text-align: center;
  margin-bottom: 1.2rem;
}

.contact-page-intro {
  font-family: "Noto Sans", sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 3.6rem;
}

.contact-form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: clamp(2.4rem, 5vw, 3.2rem);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

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

.contact-field {
  margin-bottom: 1.8rem;
}

.contact-field label {
  display: block;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.6rem;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.04);
}

.contact-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.4rem center;
  padding-right: 3.6rem;
  cursor: pointer;
}

.contact-field select option {
  background: #1a1a1a;
  color: #fff;
}

.contact-field textarea {
  resize: vertical;
  min-height: 12rem;
  line-height: 1.6;
}

.contact-submit {
  width: 100%;
  padding: 1.3rem;
  margin-top: 0.8rem;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 10px;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.contact-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.12),
    0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-status {
  text-align: center;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.3rem;
  margin-top: 1.4rem;
  min-height: 2rem;
}

.contact-status-success {
  color: rgba(130, 220, 160, 0.9);
}

.contact-status-error {
  color: rgba(240, 120, 120, 0.9);
}

.contact-fallback {
  text-align: center;
  margin-top: 3rem;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.35);
}

.contact-fallback a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s ease;
}

.contact-fallback a:hover {
  color: #fff;
}

@media (max-width: 750px) {
  .contact-page {
    padding: 4rem 1.6rem 2rem;
  }

  .contact-form {
    padding: 2rem 1.6rem;
  }
}
