@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800&display=swap');

/* ═══════════════════════════════════════════════════════
   FLORT RADAR — Landing Page
   ═══════════════════════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }
.lp {
  --landing-accent: #d97706;
  overflow-x: hidden;
  background-color: #080808;
  transition: background-color 0.8s ease;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lp-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ══════════════ HERO (SECTION 1) ══════════════ */
.hero {
  background: #080808;
  padding-top: 10rem;
  padding-bottom: 12rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__center {
  position: relative;
  z-index: 100;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
  will-change: transform;
}

.hero__badge {
  display: block;
  margin: 0 auto 1.5rem;
  opacity: 0;
  animation: blur-up 0.7s ease forwards;
  animation-delay: 0.3s;
}
.brand-mark {
  display: block;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 30px rgba(245, 158, 11, 0.12));
}
.brand-mark--hero {
  height: 44px;
  margin: 0 auto;
}
.brand-mark--footer {
  height: 20px;
  opacity: 0.9;
  filter: none;
}

.hero__title {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: #ffffff;
  margin: 0 0 2.5rem 0;
  text-shadow: 0 18px 48px rgba(0,0,0,0.34);
  opacity: 0;
  animation: blur-up 0.7s ease forwards 0.4s;
}

.hero__sub {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255,255,255,0.68);
  margin: 0 auto 2.75rem;
  line-height: 1.6;
  max-width: 760px;
  opacity: 0;
  animation: blur-up 0.7s ease forwards 0.6s;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: blur-up 0.7s ease forwards 0.7s;
}

.hero__cta {
  display: inline-block;
  background: var(--landing-accent);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}
.hero__cta:hover { transform: scale(1.04); opacity: 0.95; box-shadow: 0 8px 32px rgba(217, 119, 6, 0.42); }
.hero__cta--outline {
  background: rgba(217, 119, 6, 0.08);
  color: #fff7ed;
  border: 1px solid rgba(217, 119, 6, 0.34);
  box-shadow: none;
}
.hero__cta--outline:hover {
  background: rgba(217, 119, 6, 0.16);
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 8px 28px rgba(217, 119, 6, 0.16);
}

/* ---------- KUSURSUZ YÖRÜNGE GALERİSİ ---------- */
.orbit-wrapper {
  position: absolute;
  inset: -150px;
  z-index: 1;
  pointer-events: none;
  perspective: 2000px;
  will-change: transform;
}

.scatter-item {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 20px;
  overflow: hidden;
  will-change: transform, filter, opacity;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
  filter: blur(10px) contrast(1.05) brightness(0.85);
  transition: filter 0.5s ease, opacity 0.5s ease;
  pointer-events: auto;
  background-color: transparent;

  transform: translate3d(var(--tx, 0px), var(--ty, 0px), var(--tz, 0px)) rotate(var(--rot, 0deg));
}

.scatter-item--interactive:hover {
  filter: blur(0px) contrast(1.1) brightness(1);
  transform: translate3d(var(--tx, 0px), var(--ty, 0px), calc(var(--tz, 0px) + 150px)) rotate(var(--rot, 0deg)) scale(1.2);
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
  z-index: 1000;
}

.scatter-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.scatter-img.is-loaded { opacity: 1; }

.scatter-item--lg { width: 140px; height: 190px; }
.scatter-item--md { width: 110px; height: 150px; }
.scatter-item--sm { width: 80px; height: 110px; }

/* ══════════════ 16:9 QUICK REVEAL VİDEO & METİN (SECTION 2) ══════════════ */
.section-manifesto1 {
  background: #000000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1rem 0 2rem 0;
  min-height: 100vh;
  position: relative;
  z-index: 10;
}

.inline-marquee {
  width: 100%;
  margin-top: 2.25rem;
}

/* ══════════════ TRUST / ECOSYSTEM SECTION ══════════════ */
.trust-section {
  background: #000000;
  padding: 0.5rem 0 4rem;
  position: relative;
}
.trust-shell {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.trust-kicker {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 206, 134, 0.82);
}
.trust-marquee-wrap {
  position: relative;
  overflow: hidden;
  padding: 0.3rem 0 0.2rem;
}
.trust-marquee-wrap::before,
.trust-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 7.5%;
  z-index: 2;
  pointer-events: none;
}
.trust-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, #000000, rgba(0,0,0,0));
}
.trust-marquee-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, #000000, rgba(0,0,0,0));
}
.trust-marquee-row {
  display: flex;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.trust-marquee-track {
  display: flex;
  align-items: center;
  gap: 2.35rem;
  flex-shrink: 0;
  min-width: max-content;
  padding-inline: 0.75rem;
  animation: trust-marquee-left 34s linear infinite;
}
.trust-marquee-row--reverse .trust-marquee-track {
  animation: trust-marquee-right 38s linear infinite;
}
@keyframes trust-marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes trust-marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.trust-wordmark {
  color: rgba(255,255,255,0.28);
  font-size: clamp(1rem, 1.55vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: none;
  white-space: nowrap;
  transition: color 0.2s ease, transform 0.2s ease;
}
.trust-wordmark--soft {
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}
.trust-wordmark:hover {
  color: rgba(255,255,255,0.46);
  transform: translateY(-1px);
}

/* ══════════════ REVEAL CARDS (FlortRadar Ortaya Çıkarabilir) ══════════════ */
.reveal-section {
  width: 100%;
  max-width: 1200px;
  padding: 3.75rem 2rem 2rem;
}
.reveal-section__header {
  max-width: 860px;
  margin: 0 auto 2.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.95rem;
  opacity: 0;
  filter: blur(12px);
  transform: translateY(-34px);
  transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
}
.reveal-section__header.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.reveal-section__lead {
  font-size: clamp(1.55rem, 3.6vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: #ffffff;
  margin: 0;
}
.reveal-section__title {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0;
}
.reveal-section__title span {
  color: var(--landing-accent);
}
.reveal-section__subtext {
  font-size: 1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin: 0;
  max-width: 720px;
}
.reveal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.reveal-mobile-grid {
  display: none;
}
.reveal-mobile-card {
  appearance: none;
  width: 100%;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.95rem;
  color: #ffffff;
  text-align: left;
  font: inherit;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}
.reveal-mobile-card__meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.reveal-mobile-card__meta span {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,206,134,0.82);
}
.reveal-mobile-card__meta strong {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: #ffffff;
}
.reveal-mobile-card__arrow {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid rgba(217,119,6,0.22);
  background: rgba(217,119,6,0.1);
  color: var(--landing-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 900px) { .reveal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .section-manifesto1 { min-height: auto; padding-bottom: 1.25rem; }
  .reveal-section { padding: 2.5rem 1rem 0; }
  .reveal-section__header { margin-bottom: 1.45rem; gap: 0.8rem; }
  .reveal-section__title { font-size: clamp(2.1rem, 9.8vw, 3rem); }
  .reveal-section__subtext {
    max-width: 24rem;
    font-size: 0.98rem;
    line-height: 1.6;
  }
  .reveal-grid { display: none; }
  .reveal-mobile-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
    max-width: 31rem;
    margin: 0 auto;
  }
  .reveal-mobile-card:active {
    transform: scale(0.985);
    background: rgba(255,255,255,0.06);
    border-color: rgba(217,119,6,0.22);
  }
  .trust-section { padding: 0.25rem 0 1.9rem; }
  .trust-marquee-track { gap: 1.5rem; padding-inline: 0.5rem; }
  .trust-wordmark { font-size: 0.98rem; letter-spacing: 0.03em; }
}
.reveal-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 1.9rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1),
              background 0.3s ease,
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.reveal-card[data-info-modal] {
  cursor: pointer;
}
.reveal-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(217,119,6,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07),
              0 20px 50px rgba(0,0,0,0.35);
}
.reveal-card[data-info-modal]:focus-visible {
  outline: none;
  transform: translateY(-5px);
  border-color: rgba(217,119,6,0.36);
  box-shadow: 0 0 0 1px rgba(217,119,6,0.18),
              inset 0 1px 0 rgba(255,255,255,0.07),
              0 20px 50px rgba(0,0,0,0.35);
}
.reveal-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(217,119,6,0.1);
  border: 1px solid rgba(217,119,6,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reveal-card h3 {
  font-size: 1.12rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.3;
}
.reveal-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════ PLAN CTA (Tek Rapor / Pro Plan) ══════════════ */
.trial-card {
  width: 100%;
  max-width: 1040px;
  background: rgba(217,119,6,0.07);
  border: 1px solid rgba(217,119,6,0.22);
  border-radius: 24px;
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.35rem;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(-28px);
  transition: opacity 0.68s ease, transform 0.68s ease, filter 0.68s ease;
  box-shadow: 0 0 80px rgba(217,119,6,0.09), inset 0 1px 0 rgba(255,255,255,0.05);
}
.trial-card.is-visible { opacity: 1; filter: blur(0); transform: translateY(0); }
.trial-card__left {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  text-align: left;
}
.trial-card__check {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(217,119,6,0.14);
  border: 1px solid rgba(217,119,6,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.trial-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #EFEFEF;
  margin: 0 0 0.35rem;
  letter-spacing: -0.025em;
}
.trial-card p {
  font-size: 1rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.6;
  margin: 0;
}
.trial-card__plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}
.trial-plan {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 124px;
  padding: 1.25rem 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #fff;
  text-decoration: none;
  text-align: left;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.trial-plan:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
}
.trial-plan--featured {
  background: rgba(217,119,6,0.14);
  border-color: rgba(217,119,6,0.28);
}
.trial-plan--featured:hover {
  background: rgba(217,119,6,0.18);
  border-color: rgba(217,119,6,0.4);
}
.trial-plan__meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.trial-plan__meta span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,206,134,0.82);
}
.trial-plan__meta strong {
  color: #fff;
  font-size: 1.16rem;
  letter-spacing: -0.03em;
}
.trial-plan__meta small {
  color: rgba(255,255,255,0.52);
  line-height: 1.45;
  font-size: 0.92rem;
}
.trial-plan__price {
  color: #fff7ed;
  font-weight: 800;
  font-size: 1.05rem;
  white-space: nowrap;
}
.trial-card__actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.trial-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #d97706;
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 22px rgba(217,119,6,0.42);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.trial-btn:hover { transform: scale(1.04); box-shadow: 0 6px 40px rgba(217,119,6,0.65); }
.trial-btn--outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: none;
}
.trial-btn--outline:hover {
  background: rgba(255,255,255,0.06);
  box-shadow: none;
}
.trial-login-link {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.trial-login-link:hover { color: rgba(255,255,255,0.7); }
@media (max-width: 680px) {
  .trial-card { flex-direction: column; padding: 1.75rem; gap: 1.5rem; }
  .trial-card__left { flex-direction: column; align-items: flex-start; }
  .trial-card__plans { grid-template-columns: 1fr; width: 100%; }
  .trial-plan { min-height: auto; }
  .trial-card__actions { width: 100%; }
  .trial-btn { width: 100%; justify-content: center; }
}

.showcase-video {
  width: 95vw;
  max-width: 1200px;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.15);
  background-color: #0D0D0D;
  margin-top: -8rem;
  margin-bottom: 5rem;
}


/* ══════════════ ADVANCED NANO BANANA PREMIUM GRADIENT PANEL (SECTION 4) ══════════════ */
.section-gradient { background: #000000; overflow: hidden; position: relative; min-height: 860px; }
.gradient-panel { position: absolute; inset: 0; background: #000000; background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px); background-size: 60px 60px; clip-path: inset(3% 2.5% 3% 2.5% round 40px); transition: none; display: flex; align-items: center; justify-content: center; overflow: hidden; border: 1px solid rgba(255,255,255,0.06); }
.gradient-section-grid {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 3.75rem 3rem 3rem;
  align-content: start;
}

.nano-network-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}
.nano-connection-node {
  position: absolute;
  width: 10px; height: 10px;
  background: #FFFFFF;
  border-radius: 50%;
  filter: blur(1px) drop-shadow(0 0 10px rgba(255,255,255,0.5));
  will-change: transform;
  animation: float-node 20s infinite ease-in-out alternate;
}
.nano-line {
  position: absolute;
  background: #FFFFFF;
  height: 0.5px;
  opacity: 0.2;
  will-change: transform;
}
@keyframes float-node {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
  100% { transform: translateY(0) scale(1); }
}

.particle-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.3;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255,255,255,0.8);
  will-change: transform;
  animation: sparkle 5s infinite ease-in-out;
}
@keyframes sparkle {
  0%, 100% { opacity: 0.1; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1); }
}

/* ══════════════ SLEEK PITCH-BLACK CTA (SECTION 5) ══════════════ */
.section-cta {
  background: #050505;
  background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.dark-space-decor::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(255,215,0,0.06) 0%, transparent 40%),
              radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 20% 80%, rgba(255, 182, 193, 0.04) 0%, transparent 40%);
  animation: rotate-bg 30s linear infinite;
  pointer-events: none;
}
@keyframes rotate-bg {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta__inner { text-align: center; padding: 0 1.5rem; flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; z-index: 10; }
.cta__headline { font-size: clamp(2.2rem, 5.5vw, 4rem); font-weight: 700; color: #ffffff; margin: 0 0 2.5rem 0; letter-spacing: -0.04em; opacity: 0; filter: blur(12px); transform: translateY(-34px); transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease; }
.cta__headline.is-visible { opacity: 1; filter: blur(0); transform: translateY(0); }

.cta__buttons-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    filter: blur(8px);
    transform: translateY(-22px);
    transition: opacity 0.62s ease 0.15s, transform 0.62s ease 0.15s, filter 0.62s ease 0.15s;
}
.cta__buttons-container.is-visible { opacity: 1; filter: blur(0); transform: translateY(0); }

.cta__btn { display: inline-block; font-size: 1.0625rem; font-weight: 600; padding: 1.125rem 3rem; border-radius: 100px; text-decoration: none; transition: transform 0.25s ease, box-shadow 0.25s ease; border: 1px solid transparent; }
.cta__btn--primary { background: #FFFFFF; color: #0D0D0D; }
.cta__btn--primary:hover { transform: scale(1.04); box-shadow: 0 0 40px rgba(255,255,255,0.2); }
.cta__btn--outline { background: transparent; color: #FFFFFF; border-color: rgba(255,255,255,0.2); }
.cta__btn--outline:hover { background: rgba(255,255,255,0.05); transform: scale(1.04); border-color: rgba(255,255,255,0.5); }

.lp-footer { width: 100%; padding: 2rem 2.5rem; display: flex; align-items: center; justify-content: space-between; position: absolute; bottom: 0; left: 0; z-index: 10; border-top: 1px solid rgba(255,255,255,0.05); }
.lp-footer__copy { font-size: 0.8125rem; color: rgba(255,255,255,0.4); display: inline-flex; align-items: center; gap: 0.7rem; }
.lp-footer__links { display: flex; gap: 2rem; }
.lp-footer__links a { font-size: 0.8125rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.lp-footer__links a:hover { color: #FFFFFF; }



@keyframes blur-up {
  from { opacity: 0; transform: translateY(20px); filter: blur(20px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.mobile-info-grid {
  display: none;
}
.mobile-info-card {
  text-decoration: none;
}

@media (min-width: 1200px) {
  .hero {
    padding-top: 8.5rem;
    padding-bottom: 10rem;
  }

  .hero__center {
    max-width: 820px;
  }

  .hero__title {
    font-size: clamp(2.45rem, 5.7vw, 4.45rem);
    margin-bottom: 2.15rem;
  }

  .hero__sub {
    font-size: 1.12rem;
    max-width: 680px;
    margin-bottom: 2.35rem;
  }

  .showcase-video {
    max-width: 1080px;
    margin-top: -6.5rem;
    margin-bottom: 4rem;
  }

  .reveal-section {
    max-width: 1120px;
    padding: 3rem 2rem 1.5rem;
  }

  .reveal-section__header {
    margin-bottom: 2.4rem;
  }

  .gradient-section-grid {
    gap: 1.25rem;
    padding: 3.25rem 2.5rem 2.5rem;
  }

  .glass-card {
    padding: 2rem 1.75rem;
  }

  .trial-card {
    max-width: 940px;
    padding: 2.15rem 2.35rem;
  }
}

@media (hover: none) {
  .scatter-item--interactive:hover {
    filter: none;
    transform: translate3d(var(--tx, 0px), var(--ty, 0px), var(--tz, 0px)) rotate(var(--rot, 0deg));
    box-shadow: none;
    z-index: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scatter-item { transition: none !important; animation: none !important; }
  .reveal-section__header, .cta__headline, .trial-card { opacity: 1 !important; filter: none !important; transform: none !important; transition: none !important; }
}

@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding-top: 7.25rem;
    padding-bottom: 7.5rem;
  }
  .hero__center {
    max-width: min(90vw, 26rem);
  }
  .hero__center::before {
    content: '';
    position: absolute;
    inset: -2rem -1rem;
    z-index: -1;
    pointer-events: none;
    background:
      radial-gradient(ellipse at center,
        rgba(0,0,0,0.76) 0%,
        rgba(0,0,0,0.62) 42%,
        rgba(0,0,0,0.22) 66%,
        transparent 82%);
    filter: blur(16px);
  }
  .orbit-wrapper {
    inset: 0 -36px;
    perspective: 1100px;
  }
  .scatter-item {
    border-radius: 14px;
    opacity: 0.82;
    filter: blur(2.8px) contrast(1.06) brightness(0.92);
    box-shadow: 0 12px 30px rgba(0,0,0,0.24);
  }
  .scatter-item--lg { width: 56px; height: 76px; }
  .scatter-item--md { width: 46px; height: 62px; }
  .scatter-item--sm { width: 36px; height: 50px; }
  .showcase-video { border-radius: 12px; margin-bottom: 3rem; }
  .cta__buttons-container { flex-direction: column; gap: 1rem; }
  .cta__btn { width: 100%; text-align: center; }
  .section-gradient { min-height: 440px; }
  .gradient-panel {
    clip-path: inset(3.5% 3.5% 3.5% 3.5% round 26px);
    background-size: 42px 42px;
  }
  .gradient-section-grid { display: none !important; }
  .mobile-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, -50%);
    width: calc(100% - 2rem);
    max-width: 42rem;
  }
  .mobile-info-card:active {
    transform: scale(0.985);
    background: rgba(255,255,255,0.06);
    border-color: rgba(217,119,6,0.22);
  }
}

@media (max-width: 640px) {
  .section-cta {
    min-height: auto;
    padding: 3.25rem 1rem 0;
  }
  .cta__inner {
    width: 100%;
    flex: 0 0 auto;
    padding: 0 0 0.35rem;
  }
  .cta__headline {
    font-size: clamp(2.15rem, 10.8vw, 3.1rem);
    margin-bottom: 1.8rem;
  }
  .trial-card {
    gap: 1.15rem;
    padding: 1.6rem 1.25rem;
    border-radius: 22px;
    margin-bottom: 0;
  }
  .trial-card__actions {
    align-items: stretch;
    gap: 0.8rem;
  }
  .trial-login-link {
    display: block;
    text-align: center;
  }
  .lp-footer {
    position: static;
    margin-top: 1.6rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    align-items: center;
    padding: 1.5rem 1rem 2.35rem;
  }
  .lp-footer__copy {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.55rem;
  }
  .lp-footer__links {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    justify-content: center;
  }
  .section-gradient { min-height: 610px; }
  .mobile-info-grid {
    grid-template-columns: 1fr;
    max-width: 31rem;
    gap: 0.75rem;
  }
}

.glass-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35),
              0 0 0 0 rgba(217,119,6,0),
              inset 0 1px 0 rgba(255,255,255,0.06);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(217,119,6,0.07), transparent 70%);
  pointer-events: none;
}
.glass-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: radial-gradient(350px circle at var(--sx, 50%) var(--sy, 50%), rgba(217,119,6,0.12), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.glass-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255,255,255,0.055);
  border-color: rgba(217,119,6,0.4);
  box-shadow: 0 0 0 1px rgba(217,119,6,0.15),
              0 24px 80px rgba(0,0,0,0.55),
              0 0 60px rgba(217,119,6,0.06),
              inset 0 1px 0 rgba(255,255,255,0.08);
}
.glass-card[data-info-modal]:focus-visible {
  outline: none;
  transform: translateY(-4px);
  border-color: rgba(217,119,6,0.42);
  box-shadow: 0 0 0 1px rgba(217,119,6,0.16),
              0 18px 60px rgba(0,0,0,0.5),
              inset 0 1px 0 rgba(255,255,255,0.08);
}
.glass-card:hover::after { opacity: 1; }
.glass-card svg { margin-bottom: 1.25rem; transition: transform 0.3s ease; }
.glass-card:hover svg { transform: scale(1.1); }
.glass-card h3 { color: #fff; font-size: 1.1rem; font-weight: 600; margin: 0 0 0.55rem; letter-spacing: -0.02em; }
.glass-card p { color: rgba(255,255,255,0.55); font-size: 1rem; margin: 0; line-height: 1.65; }

.info-modal-open { overflow: hidden; }
.info-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  padding: 1.5rem;
  align-items: center;
  justify-content: center;
  background: rgba(12, 8, 2, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.info-modal-card {
  position: relative;
  width: min(920px, 100%);
  max-height: min(86vh, 900px);
  overflow-y: auto;
  padding: 2.5rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(28, 18, 8, 0.96), rgba(16, 11, 5, 0.96));
  border: 1px solid rgba(255, 222, 173, 0.14);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.44);
  color: #fff7ed;
}
.info-modal-close {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: #fff7ed;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.info-modal-close:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-1px);
}
.info-modal-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 206, 134, 0.86);
}
.info-modal-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  color: #fffaf2;
}
.info-modal-lead {
  margin: 1rem 0 0;
  color: rgba(255, 244, 228, 0.74);
  line-height: 1.8;
  font-size: 1rem;
}
.info-modal-divider {
  width: 100%;
  height: 1px;
  margin: 1.5rem 0 0;
  background: linear-gradient(90deg, rgba(255, 186, 104, 0), rgba(255, 186, 104, 0.26), rgba(255, 186, 104, 0));
}
.info-modal-stack {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}
.info-modal-section {
  padding: 1.2rem 1.25rem;
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.info-modal-section h3 {
  margin: 0 0 0.55rem;
  font-size: 1.08rem;
  color: #fffaf2;
}
.info-modal-section p {
  margin: 0;
  color: rgba(255, 244, 228, 0.72);
  line-height: 1.75;
}
.info-modal-section p + p {
  margin-top: 0.8rem;
}
.info-modal-section ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255, 244, 228, 0.74);
  line-height: 1.8;
}
.info-modal-section li + li {
  margin-top: 0.45rem;
}
.info-modal-section strong {
  color: #fff5e3;
}
.info-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.75rem;
}
.info-step-card {
  padding: 1.35rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.info-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 186, 104, 0.14);
  color: #ffc57b;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.info-step-card h3 {
  margin: 0 0 0.55rem;
  color: #fffaf2;
  font-size: 1.05rem;
}
.info-step-card p {
  margin: 0;
  color: rgba(255, 244, 228, 0.72);
  line-height: 1.75;
  font-size: 0.96rem;
}
.info-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.info-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.08);
  border: 1px solid rgba(255, 248, 238, 0.1);
  color: #fff5e6;
  font-size: 0.88rem;
}
.info-modal-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.info-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 186, 104, 0.09);
  border: 1px solid rgba(255, 186, 104, 0.16);
  color: #ffd7a1;
  font-size: 0.88rem;
  font-weight: 600;
}
.info-modal-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.35rem;
  border-radius: 14px;
  background: rgba(217,119,6,0.14);
  border: 1px solid rgba(217,119,6,0.28);
  color: #fbbf24;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.info-modal-link:hover {
  background: rgba(217,119,6,0.2);
  border-color: rgba(251,191,36,0.32);
  transform: translateY(-1px);
}
.info-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.75rem;
}
.info-hub-link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  color: #fffaf2;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.info-hub-link:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,186,104,0.2);
  transform: translateY(-2px);
}
.info-hub-link span {
  font-size: 0.82rem;
  color: rgba(255,244,228,0.62);
  line-height: 1.55;
}
@media (max-width: 980px) {
  .info-step-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .info-step-grid { grid-template-columns: 1fr; }
  .info-modal-card { padding: 1.6rem; }
  .info-hub-grid { grid-template-columns: 1fr; }
  .info-modal-badge-row { gap: 0.6rem; }
  .info-modal-badge { width: 100%; justify-content: center; }
}

body:has(.lp) { background-color: #080808 !important; }
body:has(.lp) .fr-mobile-cta { display: none !important; }
body:has(.lp) { padding-bottom: 0 !important; }

/* ══════════════ PLATFORM MARQUEE (SECTION 3) ══════════════ */
.platforms-section {
  width: 100%;
  text-align: center;
}
.platforms-label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  margin: 0 auto 1.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,235,205,0.78);
  text-align: center;
}
.platforms-label::before {
  content: '';
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #f59e0b;
  box-shadow: 0 0 16px rgba(245,158,11,0.7);
}
.marquee-fade-wrapper {
  position: relative;
  overflow: hidden;
}
.marquee-fade-wrapper::before,
.marquee-fade-wrapper::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 12%;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-wrapper::before { left: 0; background: linear-gradient(90deg, #000000, transparent); }
.marquee-fade-wrapper::after  { right: 0; background: linear-gradient(-90deg, #000000, transparent); }
.marquee-row {
  display: flex;
  overflow: hidden;
  margin-bottom: 1rem;
}
.marquee-track {
  display: flex;
  gap: 0.75rem;
  animation: marquee-left 38s linear infinite;
  flex-shrink: 0;
}
.marquee-row--reverse .marquee-track {
  animation: marquee-right 44s linear infinite;
}
@keyframes marquee-left  { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes marquee-right { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.platform-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.48rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  user-select: none;
  flex-shrink: 0;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.platform-chip:hover {
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
}

@media (prefers-reduced-motion: reduce) {
  .scatter-item,
  .marquee-track,
  .video-float,
  .particle {
    animation: none !important;
    transition: none !important;
  }
  .reveal-section__header,
  .cta__headline,
  .cta__buttons-container,
  .trial-card {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}
