/* Match the sizing system: 1rem = 10px */
html {
  font-size: 0.625rem;
}

@media screen and (max-width: 1505px) {
  html {
    font-size: calc(0.2589980544747082rem + 0.3891050583657587vw);
  }
}
@media screen and (max-width: 991px) {
  html {
    font-size: 0.625rem;
  }
}

:root {
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
    Helvetica, Arial;
  --ink: #000;
  --muted: rgba(0, 0, 0, 0.74);
  --muted2: rgba(0, 0, 0, 0.55);
  --line: rgba(0, 0, 0, 0.1);

  --brand: #b377e7;

  --btn-grad: linear-gradient(90deg, #1e1e1e 100%, #a5a5a5 50%, #f0f1f2 0%);
  --btn-ink: #ffffff;
  --btn-border: rgba(0, 0, 0, 0.18);
  --accent: #1e1e1e;

  --container: 170em;
  --pager-active: #1e1e1e;
}

* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 5.6rem));
  margin: 0 auto;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  height: 7.4rem;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo__img {
  height: 2.2rem;
  width: auto;
  display: block;
}

.nav__actions {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 1.8rem;
}
.nav__textLink {
  font-size: 1.4rem;
  font-weight: 600;
  opacity: 0.85;
}
.nav__textLink:hover {
  opacity: 1;
}
.nav__divider {
  width: 0.1rem;
  height: 2.2rem;
  background: var(--line);
}

.burger {
  margin-left: auto;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  border: 0.1rem solid var(--line);
  border-radius: 1.2rem;
  padding: 1rem;
  background: #fff;
}
.burger span {
  width: 1.8rem;
  height: 0.2rem;
  background: var(--ink);
  display: block;
}

.mobile {
  border-top: 0.1rem solid var(--line);
  background: #fff;
}
.mobile__inner {
  padding: 1.4rem 0 1.8rem;
  display: grid;
  gap: 1.2rem;
  font-weight: 600;
}
.mobile__cta {
  margin-top: 1rem;
}

@media (max-width: 99.2rem) {
  .burger {
    display: inline-flex;
  }
  .nav__actions {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 99rem;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1.2rem 1.8rem;
  border: 0.1rem solid transparent;
  transition: transform 0.08s ease, background 0.15s ease,
    border-color 0.15s ease;
}
.btn:active {
  transform: translateY(0.1rem);
}

.btn--primary {
  background: var(--btn-grad);
  color: var(--btn-ink);
  border: 0.1rem solid var(--btn-border);
}
.btn--primary:hover {
  filter: brightness(1.03);
}

.btn--secondary {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.22);
  color: var(--accent);
}
.btn--secondary:hover {
  background: rgba(0, 0, 0, 0.04);
}

.btn--xl {
  font-size: 1.6rem;
  padding: 1.4rem 1.8rem;
  border-radius: 1.6rem;
}

/* HERO */
.hero {
  padding-top: 3.4rem;
  padding-bottom: 2rem;
}
.hero__grid {
  display: grid;
  gap: 6.4rem;
  align-items: start;
  padding: 0 15px;
}
@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 6.4rem;
  }
}

.hero__left {
  padding-top: 2.2rem;
  display: flex;
  flex-direction: column;
  min-height: 76rem;
}

/* H1 */
.h1 {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-size: 6.2rem;
  font-family: "Montserrat", "Inter", ui-sans-serif, system-ui;
  font-weight: 600;
}

@media screen and (max-width: 1090px) and (min-width: 992px) {
  .h1--larger {
    font-size: 5.4rem;
  }
}
@media (max-width: 48rem) {
  .h1 {
    font-size: 4.4rem;
  }
}

#animated-text {
  font-family: "Montserrat", "Inter", ui-sans-serif, system-ui;
  font-weight: 700;
}
.animatedText {
  color: var(--ink);
}

.text-xlarge {
  margin-top: 2rem;
  max-width: 62ch;
  color: var(--muted);
  font-size: 2rem;
  line-height: 1.7;
  font-weight: 500;
}

.btnRow {
  margin-top: 2.4rem;
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}

/* Right preview */
.hero__right {
  display: flex;
  justify-content: flex-end;
}
.preview {
  width: 100%;
  max-width: 120rem;
  height: 80rem;
  border-radius: 1.8rem;
  background: #fbfbfc;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0.1rem 0 rgba(0, 0, 0, 0.04);
}
.preview__top {
  padding-top: 5.6rem;
  text-align: center;
}
.preview__kicker {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.6rem;
}

.preview__stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faces {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  transform: translateY(1rem);
  position: relative;
  z-index: 2;
}
.face {
  width: 17rem;
  height: 17rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.55);
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  box-shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.08);
}
.pill {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 99rem;
  background: rgba(255, 255, 255, 0.85);
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.65);
  font-weight: 600;
}
.face__img {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 35% 35%,
      rgba(0, 0, 0, 0.06),
      rgba(0, 0, 0, 0) 50%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.02));
  opacity: 0.95;
}
.face__img--2 {
  opacity: 0.65;
}
.face__img--3 {
  opacity: 0.45;
}

.mist {
  position: absolute;
  inset: -6rem;
  background: radial-gradient(
      circle at 55% 45%,
      rgba(186, 80, 255, 0.35),
      rgba(255, 255, 255, 0) 55%
    ),
    radial-gradient(
      circle at 70% 55%,
      rgba(255, 177, 211, 0.35),
      rgba(255, 255, 255, 0) 55%
    ),
    radial-gradient(
      circle at 35% 70%,
      rgba(120, 120, 255, 0.3),
      rgba(255, 255, 255, 0) 55%
    );
  filter: blur(1.8rem);
  opacity: 0.9;
  z-index: 3;
}

.sound {
  position: absolute;
  right: 1.8rem;
  bottom: 1.8rem;
  width: 4rem;
  height: 4rem;
  border-radius: 99rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.85);
  cursor: pointer;
}
.sound:hover {
  background: #fff;
}

/* ===== TESTIMONIAL ===== */
.heroTestimonial {
  margin-top: auto;
  padding-top: 4.2rem;
  max-width: 60rem;
}
.heroTestimonial__avatar {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 99rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.12);
  margin-bottom: 1.2rem;
  transform-origin: center;
}
.avatar--1 {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(179, 119, 231, 0.45),
    rgba(0, 0, 0, 0)
  );
}
.avatar--2 {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(30, 30, 30, 0.2),
    rgba(0, 0, 0, 0)
  );
}
.avatar--3 {
  background: radial-gradient(
    circle at 30% 30%,
    rgba(165, 165, 165, 0.35),
    rgba(0, 0, 0, 0)
  );
}
.heroTestimonial__content {
  will-change: transform, opacity;
}
.heroTestimonial__text {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.84);
}
.heroTestimonial__meta {
  margin: 0.7rem 0 0;
  font-size: 1.3rem;
  color: var(--muted2);
}

.pager {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.8rem;
}
.dotDash {
  width: 1rem;
  height: 0.3rem;
  background: rgba(130, 148, 165, 0.4);
  border-radius: 0.14rem;
  transition: width 300ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.dotDash.is-on {
  width: 2rem;
  background: var(--pager-active);
  opacity: 1;
}

@keyframes tExitLTR {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(1.6rem);
  }
}
@keyframes tEnterLTR {
  from {
    opacity: 0;
    transform: translateX(-1.6rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.heroTestimonial__content.is-exit {
  animation: tExitLTR 260ms cubic-bezier(0.4, 0, 1, 1) both;
}
.heroTestimonial__content.is-enter {
  animation: tEnterLTR 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes aEnter {
  from {
    opacity: 0;
    transform: translateX(-1rem) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
.heroTestimonial__avatar.is-enter {
  animation: aEnter 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

/* =========================
   SECTION 2 — LOGO MARQUEE
========================= */
/* .logoMarquee {
  padding: 2.2rem 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.02),
    rgba(0, 0, 0, 0)
  );
}
.logoMarquee__mask {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
}
.logoMarquee__track {
  display: flex;
  gap: 5rem;
  width: max-content;
  animation: marqueeLTR 22s linear infinite;
  align-items: center;
}
.logoMarquee__row {
  display: flex;
  gap: 5rem;
  align-items: center;
}
.logoMarquee__logo {
  height: 2.2rem;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1);
}
.logoMarquee__logo:hover {
  opacity: 0.85;
}

@keyframes marqueeLTR {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logoMarquee__track {
    animation: none;
  }
} */

/* =========================
   SECTION 2 — LOGO BAR (STATIC + BIGGER)
   Replace your existing .logoMarquee* rules with this
========================= */

.logoMarquee {
  padding: 2.6rem 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.02),
    rgba(0, 0, 0, 0)
  );
}

/* No masking + no overflow clipping (since we are NOT scrolling now) */
.logoMarquee__mask {
  width: 100%;
  overflow: visible;
  -webkit-mask-image: none;
  mask-image: none;
}

/* Kill the marquee animation and make it a normal centered flex row */
.logoMarquee__track {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 6rem;
  animation: none !important;
  transform: none !important;
}

/* Keep only ONE row visible (hide the duplicate row used for seamless scrolling) */
.logoMarquee__row[aria-hidden="true"] {
  display: none !important;
}

.logoMarquee__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
  flex-wrap: wrap; /* wraps nicely on smaller screens */
  width: 100%;
}

/* Bigger logos */
/* Bigger logos + keep greyscale style */
.logoMarquee__logo {
  height: 3.6rem; /* increase size */
  width: auto;
  max-width: 18rem;
  object-fit: contain;

  opacity: 0.55; /* original muted look */
  filter: grayscale(1); /* ✅ keep greyscale */
}

/* Optional hover: bring a little life without removing greyscale */
.logoMarquee__logo:hover {
  opacity: 0.85;
}

/* Responsive tweak */
@media (max-width: 62rem) {
  .logoMarquee__track,
  .logoMarquee__row {
    gap: 2.6rem;
  }

  .logoMarquee__logo {
    height: 3.2rem;
    max-width: 14rem;
  }
}
/* Amir Adnan Logo Bigger*/
.logoMarquee__logo--amir {
  height: 4.4rem;
  transform: scale(1.15);
  transform-origin: center;
  filter: grayscale(1) !important;
  opacity: 0.35;
}

.logoMarquee__logo--amir:hover {
  opacity: 0.85 !important;
  filter: grayscale(1) !important;
}

/* =========================
   SECTION 2 — CARDS GRID
========================= */
.s2 {
  padding: 5rem 0 2rem; /* ✅ was 8rem bottom; reduced to avoid big whitespace */
}
.s2__inner {
  text-align: center;
}

.s2__title {
  margin: 0 auto;
  max-width: 70rem;
  font-size: 5rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-family: "Montserrat", "Inter", system-ui;
  font-weight: 600;
  color: var(--brand);
}
.s2__sub {
  margin: 2rem auto 0;
  max-width: 72rem;
  font-size: 1.6rem;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.65;
  font-weight: 600;
}

/* ✅ GAP FIX: smaller row height = less "invisible grid canvas" */
.s2Grid {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 0.6rem; /* ✅ was 2rem */
  gap: 2.4rem;
  align-items: start;
  text-align: left;
}

@media (max-width: 99.2rem) {
  .s2Grid {
    grid-template-columns: 1fr;
  }
}

/* Cards */
.s2Card {
  grid-column: var(--c-start, 1) / span var(--c-span, 12);
  grid-row: var(--r-start, auto) / span var(--r-span, 1);
  min-height: var(--card-h, 32rem);
  border-radius: 2.4rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0.8rem 2.8rem rgba(0, 0, 0, 0.06);
  border: 0.1rem solid rgba(0, 0, 0, 0.06);
  background: #fff;
  padding: 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

/* ✅ Mobile fix: prevent huge blank gaps caused by r-start stacking */
@media (max-width: 99.2rem) {
  .s2Card {
    grid-column: 1 / -1;
    grid-row: auto !important;
  }
}

.s2Card__head h3 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.s2Card__head p {
  margin: 1rem 0 0;
  font-size: 1.4rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.74);
  font-weight: 600;
  max-width: 52ch;
}
.s2Card__media {
  height: var(--media-h, 18rem);
  flex: 1;
  min-height: var(--media-h, 14rem);
  margin-top: 1.6rem;
  border-radius: 2rem;
  background: rgba(0, 0, 0, 0.03);
  border: 0.1rem solid rgba(0, 0, 0, 0.06);
}

/* Variants */
.s2Card--light {
  background: #fff;
}

.s2Card--dark {
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.08),
      rgba(0, 0, 0, 0) 55%
    ),
    linear-gradient(180deg, #0f0f10, #1a1a1c);
  border: none;
}
.s2Card--dark .s2Card__head h3 {
  color: #fff;
}
.s2Card--dark .s2Card__head p {
  color: rgba(255, 255, 255, 0.72);
}
.s2Card--dark .s2Card__media {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.s2Card--dark2 {
  background: radial-gradient(
      circle at 30% 30%,
      rgba(179, 119, 231, 0.35),
      rgba(0, 0, 0, 0) 55%
    ),
    linear-gradient(180deg, #101013, #1d1d22);
  border: none;
}
.s2Card--dark2 .s2Card__head h3 {
  color: #fff;
}
.s2Card--dark2 .s2Card__head p {
  color: rgba(255, 255, 255, 0.72);
}
.s2Card--dark2 .s2Card__media {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
}

.s2Card--gradientA {
  background: radial-gradient(
      circle at 18% 20%,
      rgba(179, 119, 231, 0.35),
      rgba(255, 255, 255, 0) 60%
    ),
    radial-gradient(
      circle at 80% 30%,
      rgba(120, 120, 255, 0.22),
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02));
  border-color: rgba(0, 0, 0, 0.06);
}
.s2Card--gradientA .s2Card__head h3 {
  color: #fff;
  text-shadow: 0 0.2rem 1.2rem rgba(0, 0, 0, 0.25);
}
.s2Card--gradientA .s2Card__head p {
  color: rgba(255, 255, 255, 0.85);
}
.s2Card--gradientA .s2Card__media {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.16);
}

/* Media skins */
.s2Media--answers {
  background: radial-gradient(
      circle at 30% 30%,
      rgba(179, 119, 231, 0.25),
      rgba(0, 0, 0, 0) 60%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.02));
}
.s2Media--hey {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
}
.s2Media--gist {
  background: radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, 0.35),
      rgba(0, 0, 0, 0) 65%
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.1));
}
.s2Media--live {
  background: radial-gradient(
      circle at 25% 30%,
      rgba(179, 119, 231, 0.22),
      rgba(0, 0, 0, 0) 60%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(120, 120, 255, 0.18),
      rgba(0, 0, 0, 0) 60%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.02));
}
.s2Media--action {
  background: radial-gradient(
      circle at 20% 40%,
      rgba(0, 0, 0, 0.06),
      rgba(0, 0, 0, 0) 65%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01));
}
.s2Media--insights {
  background: radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.18),
      rgba(0, 0, 0, 0) 60%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.04)
    );
}
.s2Media--mini {
  background: radial-gradient(
      circle at 30% 30%,
      rgba(165, 165, 165, 0.25),
      rgba(0, 0, 0, 0) 65%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.01));
}

/* =========================
   SECTION 3 — NOTETAKER TYPES
========================= */
/* =========================
   SECTION 3 — NOTETAKER TYPES
========================= */
.s3 {
  /* If you still see a big gap between section 2 & 3, reduce these */
  padding: 6rem 0 9rem;
  text-align: center;
}

.s3__title {
  margin: 0 auto;
  max-width: 80rem;
  font-size: 5.2rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-family: "Montserrat", "Inter", system-ui;
  font-weight: 600;
  color: var(--brand);
}

.s3Tabs {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.s3Tab {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 0.8rem 1.3rem;
  border-radius: 99rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.72);
  background: rgba(0, 0, 0, 0.04);
  transition: transform 0.12s ease, background 0.18s ease, color 0.18s ease,
    box-shadow 0.18s ease;
}
.s3Tab:hover {
  transform: translateY(-0.1rem);
}
.s3Tab.is-active {
  background: rgba(179, 119, 231, 0.16);
  color: var(--brand);
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.06);
}

.s3Stage {
  margin-top: 5rem;
  display: grid;
  justify-items: center;
  gap: 3.2rem;
}

/* Orb */
/* =========================
   SECTION 3 — ORB (ANIMATED)
   Replace your existing .s3Orb / .s3Orb::after / orbFloat with this
========================= */

.s3Orb {
  width: 22rem;
  height: 22rem;
  border-radius: 999rem;
  position: relative;
  overflow: hidden;

  /* JS already sets these vars per tab */
  --o1: #6dd5ff;
  --o2: #b377e7;
  --o3: #8ff0d2;
  --o4: #ffffff;

  /* base “sphere” shading */
  background: radial-gradient(
      circle at 34% 28%,
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0) 48%
    ),
    radial-gradient(
      circle at 70% 78%,
      rgba(0, 0, 0, 0.14),
      rgba(0, 0, 0, 0) 58%
    ),
    radial-gradient(
      circle at 42% 92%,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0) 60%
    );

  filter: saturate(1.12);

  box-shadow: inset 0 0.1rem 0.2rem rgba(255, 255, 255, 0.45),
    inset 0 -1.6rem 3.2rem rgba(0, 0, 0, 0.1),
    0 1.8rem 6rem rgba(179, 119, 231, 0.18),
    0 1.8rem 6rem rgba(0, 160, 255, 0.1);

  /* keep your subtle float */
  animation: orbFloat 6s ease-in-out infinite;
}

/* the “liquid color” layer */
.s3Orb::before {
  content: "";
  position: absolute;
  inset: -35%;
  border-radius: 999rem;

  background: conic-gradient(
    from 0deg,
    var(--o1),
    var(--o2),
    var(--o3),
    var(--o4),
    var(--o2),
    var(--o1)
  );

  /* blur makes it look like the video */
  filter: blur(14px) saturate(1.25);
  opacity: 0.95;

  /* continuous shifting */
  animation: orbSpin 10s linear infinite;
}

/* extra highlight + soft bloom */
.s3Orb::after {
  content: "";
  position: absolute;
  inset: -7rem; /* bigger = wider halo */
  border-radius: 999rem;
  z-index: -1;

  /* one “merged” glow using the same orb colors */
  background: radial-gradient(
      circle at 35% 35%,
      color-mix(in srgb, var(--o2) 35%, transparent),
      transparent 62%
    ),
    radial-gradient(
      circle at 65% 55%,
      color-mix(in srgb, var(--o1) 28%, transparent),
      transparent 65%
    ),
    radial-gradient(
      circle at 50% 75%,
      color-mix(in srgb, var(--o3) 22%, transparent),
      transparent 68%
    );

  filter: blur(3.6rem); /* blur = softness */
  opacity: 0.75; /* lower = subtler */
}

/* motion */
@keyframes orbSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.03);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.8rem);
  }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  .s3Orb {
    animation: none;
  }
  .s3Orb::before {
    animation: none;
  }
}

/* Panel */
.s3Panel {
  max-width: 90rem;
}

.s3Panel__title {
  margin: 0;
  font-size: 3.8rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-family: "Montserrat", "Inter", system-ui;
  font-weight: 600;
  color: var(--brand);
}

/* ✅ NEW: grid layout for arrows/desc/button */
.s3Actions {
  margin-top: 1.8rem;

  display: grid;
  grid-template-columns: 6rem minmax(0, 62rem) 6rem;
  grid-template-rows: auto auto;
  column-gap: 3.2rem;
  row-gap: 2.4rem;

  align-items: center;
  justify-content: center;
  justify-items: center;
}

#s3Prev {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}
#s3Next {
  grid-column: 3;
  grid-row: 1;
  justify-self: start;
}
#s3Desc {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}
#s3Cta {
  grid-column: 2;
  grid-row: 2;
  justify-self: center;
}

.s3Panel__desc {
  max-width: 62rem;
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.75);
}

/* Arrow buttons (match screenshot look) */
.s3Arrow {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 1.4rem;
  border: 0;
  background: rgba(0, 0, 0, 0.02);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.12s ease, background 0.18s ease;
}
.s3Arrow:hover {
  transform: translateY(-0.1rem);
  background: rgba(0, 0, 0, 0.04);
}
.s3Arrow span {
  font-size: 2rem;
  color: var(--brand);
  font-weight: 900;
}

.s3Cta {
  min-width: 16rem;
}

/* nice switch animation */
.s3Panel.is-switching {
  opacity: 0;
  transform: translateY(0.6rem);
  transition: opacity 180ms ease, transform 180ms ease;
}
.s3Panel.is-ready {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease;
}

@media (max-width: 48rem) {
  .s3__title {
    font-size: 4.2rem;
  }
  .s3Panel__title {
    font-size: 3.2rem;
  }
  .s3OrbWrap {
    width: 20rem;
    height: 20rem;
  }
  .s3Orb {
    width: 18rem;
    height: 18rem;
  }

  .s3Actions {
    grid-template-columns: 5.2rem 1fr 5.2rem;
    column-gap: 1.6rem;
  }
}

/* ===== Section 3 switch animations (like video) ===== */

@keyframes s3Exit {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(0.8rem);
  }
}

@keyframes s3Enter {
  from {
    opacity: 0;
    transform: translateY(-0.6rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Use these classes from JS */
.s3Panel.is-exit {
  animation: s3Exit 220ms cubic-bezier(0.4, 0, 1, 1) both;
}
.s3Panel.is-enter {
  animation: s3Enter 420ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

/* Orb “pulse” during change */
@keyframes s3OrbPulse {
  0% {
    transform: translateY(0) scale(1);
    filter: saturate(1.15);
  }
  50% {
    transform: translateY(-0.6rem) scale(1.02);
    filter: saturate(1.25);
  }
  100% {
    transform: translateY(0) scale(1);
    filter: saturate(1.15);
  }
}

.s3Orb.is-pulse {
  animation: s3OrbPulse 520ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

/* =========================
   SECTION 4 — INTEGRATIONS
========================= */
.s4 {
  padding: 9rem 0 10rem;
  background: #fff;
  overflow: hidden;
}

.s4__inner {
  text-align: center;
}

.s4__title {
  margin: 0 auto;
  max-width: 88rem;
  font-size: 5.2rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-family: "Montserrat", "Inter", system-ui;
  font-weight: 600;
  color: var(--brand);
}

/* marquee wrappers */
.s4Marquee {
  margin-top: 5rem;
}

.s4Marquee--bottom {
  margin-top: 2.4rem; /* tighter between rows */
}

.s4Marquee__mask {
  width: 100%;
  overflow: hidden;

  /* edge fade like Otter */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 10%,
    #000 90%,
    transparent 100%
  );

  /* LIGHTEN BG (subtle, not prominent) */
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.015),
    rgba(0, 0, 0, 0)
  );
  border-radius: 2.6rem;
  padding: 1.2rem 0;
}

.s4Marquee__track {
  display: flex;
  width: max-content;
  gap: 2rem;
  align-items: stretch;
  will-change: transform;
}

/* direction + speed */
.s4Marquee--top .s4Marquee__track {
  animation: s4MarqueeLeft 26s linear infinite;
}
.s4Marquee--bottom .s4Marquee__track {
  animation: s4MarqueeRight 30s linear infinite;
}

/* pause on hover (nice for reading) */
.s4Marquee:hover .s4Marquee__track {
  animation-play-state: paused;
}

@keyframes s4MarqueeLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes s4MarqueeRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}

.s4Marquee__row {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

/* card styling */
.s4Card {
  width: 46rem; /* adjust card width */
  min-height: 10.8rem; /* adjust height */
  border-radius: 2.4rem;
  background: rgba(0, 0, 0, 0.03);
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.05);
  border: 0.1rem solid rgba(0, 0, 0, 0.05);
  padding: 2rem 2.2rem;
  display: flex;
  gap: 1.4rem;
  text-align: left;
  align-items: flex-start;
}

.s4Card:hover {
  background: rgba(0, 0, 0, 0.035);
  border-color: rgba(0, 0, 0, 0.08);
}

.s4Card__icon {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: contain;
  flex: 0 0 auto;
  margin-top: 0.2rem;
}

.s4Card__title {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.s4Card__desc {
  margin-top: 0.6rem;
  font-size: 1.25rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 600;
  max-width: 54ch;
}

.s4__ctaRow {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}

/* Mobile behavior: no auto-marquee, allow horizontal scroll */
@media (max-width: 62rem) {
  /* .s4__title {
    font-size: 4.2rem;
  }

  .s4Marquee__mask {
    -webkit-mask-image: none;
    mask-image: none;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .s4Marquee__mask::-webkit-scrollbar {
    display: none;
  }

  .s4Marquee__track {
    animation: none !important;
    padding: 0 1.6rem;
  }

  .s4Card {
    width: 36rem;
  } */

  /* Mobile behavior: KEEP auto-marquee (no manual scroll) */
  @media (max-width: 62rem) {
    .s4__title {
      font-size: 4.2rem;
    }

    .s4Marquee__mask {
      -webkit-mask-image: none;
      mask-image: none;
      overflow: hidden;
    }

    .s4Marquee__track {
      animation-play-state: running !important;
      padding: 0 1.6rem;
      transform: translate3d(0, 0, 0);
    }

    .s4Marquee__row {
      flex-wrap: nowrap;
    }

    .s4Card {
      width: 36rem;
      flex: 0 0 auto;
    }
  }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .s4Marquee__track {
    animation: none !important;
  }
}

/* =========================
   FOOTER
========================= */
.footer {
  position: relative;
  background: #000;
  color: rgba(255, 255, 255, 0.92);
  padding: 7rem 0 3.4rem;
  overflow: hidden;
}

/* top accent line like screenshot */
.footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 0.4rem;
  background: var(--brand);
  opacity: 0.9;
}

/* BIG watermark text behind */
.footer__watermark {
  position: absolute;
  left: 50%;
  bottom: -6rem;
  transform: translateX(-50%);
  font-family: "Montserrat", "Inter", system-ui;
  font-weight: 700;
  font-size: 26rem; /* size of watermark */
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.06); /* subtle */
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  filter: blur(0rem);
}

/* layout */
.footer__inner {
  position: relative;
  z-index: 2;
}

.footer__top {
  display: grid;
  grid-template-columns: 18rem 1fr 22rem;
  gap: 4rem;
  align-items: start;
}

/* logo */
.footer__logo {
  height: 2.4rem;
  width: auto;
  display: block;
  filter: brightness(1.15);
  opacity: 0.95;
  filter: invert(1);
}

/* CTA block */
.footer__cta {
  text-align: left;
  max-width: 70rem;
}

.footer__ctaTitle {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.96);
  font-family: "Montserrat", "Inter", system-ui;
}

.footer__ctaDesc {
  margin: 1.1rem 0 0;
  font-size: 1.4rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  max-width: 56ch;
}

.footer__ctaActions {
  margin-top: 2.2rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* right column */
.footer__colTitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.6rem;
}

.footer__link {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.7rem 0;
}

.footer__link:hover {
  color: rgba(255, 255, 255, 0.92);
}

/* bottom bar */
.footer__bottom {
  margin-top: 6rem;
  padding-top: 2.2rem;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer__copy {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

.footer__legal {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__legalLink {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

.footer__legalLink:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* responsive */
@media (max-width: 99.2rem) {
  .footer__top {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer__watermark {
    font-size: 18rem;
    bottom: -5rem;
  }
}

/* =========================
   FOOTER
========================= */
/* =========================
   FOOTER
========================= */
.footer {
  position: relative;
  background: #050506;
  color: #fff;
  overflow: hidden;
  padding: 0 0 3rem;
}

.footer__topLine {
  height: 0.6rem;
  background: linear-gradient(
    90deg,
    rgba(179, 119, 231, 1),
    rgba(135, 121, 245, 1),
    rgba(199, 245, 90, 1)
  );
  opacity: 0.95;
}

.footer__inner {
  position: relative;
  padding: 6rem 0 0;
}

.footer__bgWord {
  z-index: 1;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  font-family: "Montserrat", "Inter", system-ui;
  font-weight: 800;
  letter-spacing: -0.06em;
  /* font-size: clamp(18rem, 28vw, 44rem); */
  line-height: 1;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.footer_bg_logo {
  opacity: 0.5;
}
.footer__top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
}

.footer__cta {
  max-width: 72rem;
  z-index: 2;
}

.footer__logo {
  height: 2.4rem;
  width: auto;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.footer__title {
  margin: 0;
  font-size: 3.2rem;
  letter-spacing: -0.03em;
  font-family: "Montserrat", "Inter", system-ui;
  font-weight: 700;
}

.footer__sub {
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 600;
  max-width: 60ch;
}

.footer__ctaBtns {
  margin-top: 2.2rem;
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* make secondary button readable on dark bg */
.footer__btnLight {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(0, 0, 0, 0.9);
}
.footer__btnLight:hover {
  background: #fff;
}

/* Bottom row */
.footer__bottom {
  position: relative;
  z-index: 1;
  margin-top: 4.4rem;
  padding-top: 2.2rem;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.1);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
}

.footer__legalLeft {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.3rem;
  font-weight: 650;
}

.footer__bottomRight {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
}

.footer__legalLinks {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
}

.footer__legalLinks a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.3rem;
  font-weight: 650;
  transition: color 0.18s ease;
}
.footer__legalLinks a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* Social icons */
.footer__socialInline {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.footer__socialIcon {
  width: 3.6rem;
  height: 3.6rem;
  display: grid;
  place-items: center;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 0.1rem solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  transition: transform 0.12s ease, background 0.18s ease, color 0.18s ease;
}

.footer__socialIcon:hover {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.98);
  transform: translateY(-0.1rem);
}

/* Responsive */
@media (max-width: 70rem) {
  .footer__top {
    justify-content: center;
    text-align: center;
  }
  .footer__cta {
    margin: 0 auto;
  }
  .footer__ctaBtns {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__bottomRight {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem 1.6rem;
  }

  .footer__legalLinks {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 1.6rem;
  }
}

/* HERO image: fill the preview container */
.preview__stage.preview__stage--img {
  position: absolute;
  inset: 0;
  padding: 0 !important;
}

.preview__img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill; /* ✅ no zoom / no crop */
  object-position: center;
}

.preview__stage.preview__stage--img {
  background: #f3f4f6; /* or transparent */
}

/* Privacy Page CSS */

/* ===== Legal pages (Privacy / Terms) ===== */
.legal {
  padding: 120px 0 80px; /* adjust if your header overlaps */
}

.legalContainer {
  max-width: 900px;
  margin: 0 auto; /* centers the block */
  text-align: left; /* centers text */
}

/* Bigger body text */
.legalContainer p,
.legalContainer li {
  font-size: 18px;
  line-height: 1.75;
}

/* Smaller section headings (like “Changes”) */
.legalContainer h1 {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 12px;
}

.legalContainer h2 {
  font-size: 20px; /* smaller than before */
  line-height: 1.35;
  margin: 26px 0 10px;
}

.legalContainer h3 {
  font-size: 18px;
  line-height: 1.35;
  margin: 18px 0 8px;
}

/* Lists: keep readable (left-aligned) but centered as a block */
.legalContainer ul {
  display: inline-block; /* centers the list block */
  text-align: left; /* keeps bullets readable */
  list-style-position: inside;
  margin: 10px auto 0;
  padding: 0;
}

.legalContainer li {
  margin: 8px 0;
}

/* Links */
.legalContainer a {
  text-decoration: underline;
}
