/* Fonts injected via next/font CSS variables — no CDN @import needed */

.open-report-container {
  /* ── OpenMemo-style dark theme ──────────────── */
  --bg: #08080c;
  --bg2: #0f0f14;
  --surface: rgba(255, 255, 255, 0.05);
  --surface2: rgba(255, 255, 255, 0.07);
  --surface3: #161616;
  --surface-hover: rgba(255, 255, 255, 0.08);

  /* ── Google Blue accent scale ──────────────────────── */
  --accent: #4285f4;
  --accent2: #8ab4f8;
  --accent-light: #aecbfa;

  /* ── Text ──────────────────────────────────────────── */
  --text: #f0f0f5;
  --muted: rgba(240, 240, 245, 0.45);
  --muted2: rgba(240, 240, 245, 0.25);

  /* ── Borders & glow ────────────────────────────────── */
  --border: rgba(255, 255, 255, 0.08);
  --border-h: rgba(255, 255, 255, 0.16);
  --glow: rgba(66, 133, 244, 0.18);
  --glass-blur: blur(24px) saturate(180%);

  /* ── Depth shadow scale ───────────────────────────── */
  --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.30);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.40);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 6px 28px rgba(0, 0, 0, 0.55);
  --shadow-xl: 0 10px 40px rgba(0, 0, 0, 0.65);

  background: var(--bg);
  color: var(--text);
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  min-height: 100vh;
}

/* NOISE TEXTURE OVERLAY */
.open-report-container::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* AMBIENT ORBS */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  animation: orbit 20s linear infinite;
  will-change: transform;
}
.orb-1 { width: 700px; height: 700px; background: rgba(66,133,244,0.07); top: -150px; right: -50px; }
.orb-2 { width: 500px; height: 500px; background: rgba(138,180,248,0.05); top: 40%; left: -100px; animation-direction: reverse; }

@keyframes orbit {
  0%   { transform: rotate(0deg) translateX(50px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(50px) rotate(-360deg); }
}

/* TYPOGRAPHY UTILITIES */
.display { font-family: var(--font-dm-sans), system-ui, sans-serif; font-weight: 700; }
.heading  { font-family: var(--font-dm-sans), system-ui, sans-serif; font-weight: 700; }

/* ─── FLOATING PILL NAV ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.5rem 0.8rem 2rem;
  background: rgba(20, 20, 20, 0.82);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border);
  border-radius: 100px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.04);
  animation: fadeDownPill 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes fadeDownPill {
  from { opacity: 0; transform: translate(-50%, -30px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

.nav-logo {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  border-radius: 8px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  aspect-ratio: 1;
  background: var(--accent);
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.logo-icon svg { width: 18px; height: 18px; }

.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  flex-shrink: 0;
}

.logo-text {
  font-weight: 700;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s, text-shadow 0.3s;
  border-radius: 4px;
}
.nav-links a:hover {
  color: var(--text);
  text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.nav-cta {
  background: var(--text);
  color: var(--bg);
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.nav-cta:hover {
  background: #fff;
  transform: translateY(-1px);
}

/* ─── FOCUS VISIBLE — ACCESSIBILITY ─────────────────────────────── */
.btn-primary:focus-visible,
.btn-ghost:focus-visible,
.nav-cta:focus-visible,
.nav-logo:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 12rem 5%;
  overflow: hidden;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--accent2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-family: var(--font-mono), monospace;
  font-weight: 400;
  margin-bottom: 2.5rem;
  animation: fadeUp 1s 0.1s both;
}

.hero-tag .dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 10px var(--accent); }
  50%       { opacity: 0.6; transform: scale(0.8); box-shadow: 0 0 2px var(--accent); }
}

.hero-title {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-feature-settings: 'ss01' 1;
  max-width: 820px;
  animation: fadeUp 1s 0.2s both;
  margin: 0;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(to right, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-sub {
  margin-top: 2rem;
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 540px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: -0.01em;
  animation: fadeUp 1s 0.3s both;
}
.hero-sub strong { color: var(--text); font-weight: 500; }

.hero-actions {
  margin-top: 3.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.4s both;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(66, 133, 244, 0.3);
}
.btn-primary:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(66, 133, 244, 0.4);
}

.btn-ghost {
  color: var(--text);
  padding: 0.9rem 2rem;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-ghost:hover {
  background: var(--surface-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ─── LEVITATING HERO VISUAL ─────────────────────────────────────── */
.hero-visual {
  position: absolute;
  right: 2vw;
  top: 45%;
  width: 560px;
  animation: levitateMain 8s ease-in-out infinite, fadeUp 1.2s 0.5s both;
  perspective: 1000px;
  will-change: transform;
}

@keyframes levitateMain {
  0%, 100% { transform: translateY(-50%) rotateX(5deg) rotateY(-10deg); }
  50%       { transform: translateY(-55%) rotateX(0deg) rotateY(-5deg); }
}

.report-card {
  background: rgba(22, 22, 22, 0.85);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.05);
  position: relative;
  transform-style: preserve-3d;
}

.report-topbar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.dot-red, .dot-yellow, .dot-green {
  width: 12px; height: 12px;
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.3);
}
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #ffbd2e; }
.dot-green  { background: #28c840; }

.report-title-bar {
  flex: 1;
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  height: 32px;
  border-radius: 100px;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.6rem;
}

.url-text {
  font-size: 0.75rem;
  color: var(--muted);
  font-family: var(--font-mono), 'Fira Code', 'Courier New', monospace;
}

.report-slide {
  background: linear-gradient(145deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
  border-radius: 16px;
  padding: 2.5rem;
  min-height: 260px;
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.3);
}

.slide-accent-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  box-shadow: 0 2px 15px var(--accent);
}

.slide-tag {
  display: inline-block;
  background: rgba(66,133,244,0.15);
  color: var(--accent2);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.slide-h {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.slide-p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
}

.slide-chart {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.bar {
  width: 16px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.bar:nth-child(1) { height: 40px; }
.bar:nth-child(2) { height: 70px; background: var(--accent); box-shadow: 0 0 18px rgba(66,133,244,0.50); }
.bar:nth-child(3) { height: 50px; }
.bar:nth-child(4) { height: 90px; background: var(--accent2); box-shadow: 0 0 18px rgba(138,180,248,0.50); }
.bar:nth-child(5) { height: 60px; }

/* FLOATING MINI CARDS */
.mini-card {
  position: absolute;
  background: rgba(22, 22, 22, 0.90);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.07);
  will-change: transform;
}
.mini-card-1 {
  bottom: -40px; left: -80px; width: 180px;
  animation: floatSlow 5s ease-in-out infinite alternate;
}
.mini-card-2 {
  top: 30px; right: -60px; width: 170px;
  animation: floatSlow 6s ease-in-out infinite alternate-reverse;
}

@keyframes floatSlowHero {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}
@keyframes floatSlow {
  0%   { transform: translateY(0px); }
  100% { transform: translateY(-20px); }
}

.mini-label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
.mini-val { font-family: var(--font-dm-sans), system-ui, sans-serif; font-weight: 700; font-size: 1.3rem; }
.mini-val.green  { color: var(--accent2);     text-shadow: 0 0 14px rgba(138,180,248,0.40); }
.mini-val.yellow { color: var(--accent-light); text-shadow: 0 0 14px rgba(174,203,250,0.35); }

/* ─── DIVIDER ────────────────────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  margin: 0;
}

/* ─── LOGOS STRIP ────────────────────────────────────────────────── */
.logos-section {
  padding: 5rem 5%;
  text-align: center;
}
.logos-label {
  font-family: var(--font-mono), monospace;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.logos-strip {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  opacity: 0.4;
  filter: grayscale(1);
  transition: opacity 0.3s;
}
.logos-strip:hover { opacity: 0.7; }
.logo-item {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

/* ─── LOGO TRACK ─────────────────────────────────────────────────── */
.logo-track {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  opacity: 0.45;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  transition: opacity 0.3s;
}
.logo-track:hover { opacity: 0.72; }

/* ─── SHARE CARDS ────────────────────────────────────────────────── */
.share-cards-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.share-card {
  width: 290px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.share-card:hover {
  border-color: rgba(138, 180, 248, 0.28);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.share-card-thumb {
  width: 100%;
  height: 152px;
  position: relative;
  overflow: hidden;
}

.share-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.share-card-slide {
  padding: 1.2rem 1.2rem 0.6rem;
}

.share-card-slide-title {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.share-card-slide-body {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
}

.share-card-mini-bars {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.share-card-mini-bar {
  width: 9px;
  border-radius: 2px 2px 0 0;
  background: rgba(255, 255, 255, 0.08);
}

.share-card-meta {
  padding: 0.7rem 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.share-card-url {
  font-family: var(--font-mono), monospace;
  font-size: 0.68rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.share-card-views {
  font-family: var(--font-mono), monospace;
  font-size: 0.68rem;
  color: var(--accent2);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ─── FEATURES ───────────────────────────────────────────────────── */
.features { padding: 10rem 5%; position: relative; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono), monospace;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  background: none;
  padding: 0;
  border-radius: 0;
  border: none;
}

.section-title {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 650px;
  margin-bottom: 1.5rem;
}

.section-sub { color: var(--muted); font-size: 1.2rem; max-width: 500px; line-height: 1.7; margin-bottom: 6rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s;
}
.feature-cell:hover {
  background: var(--surface-hover);
  border-color: rgba(255, 255, 255, 0.15);
}

.feature-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(66, 133, 244, 0.10);
  border: none;
  border-radius: 8px;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}
.feature-cell:hover .feature-icon-wrap {
  background: rgba(66, 133, 244, 0.18);
}
.feature-cell:hover .feature-icon-wrap svg { color: var(--accent2); }
.feature-icon-wrap svg { width: 20px; height: 20px; color: var(--accent2); transition: color 0.3s; }

.feature-name { font-family: var(--font-dm-sans), system-ui, sans-serif; font-weight: 700; font-size: 1.2rem; margin-bottom: 1rem; }
.feature-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.7; margin: 0; }

/* ─── HOW IT WORKS ───────────────────────────────────────────────── */
.how { padding: 10rem 5%; position: relative; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 6rem;
}

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s;
}
.step:nth-child(even) { transform: translateY(30px); }
.step:hover { transform: translateY(-10px) scale(1.02); }
.step:nth-child(even):hover { transform: translateY(20px) scale(1.02); }

.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text);
  margin: 0 auto 2rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  transition: all 0.3s;
}
.step:hover .step-num {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.step-name { font-family: var(--font-dm-sans), system-ui, sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.8rem; }
.step-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.7; }

/* ─── SHOWCASE ───────────────────────────────────────────────────── */
.showcase {
  padding: 10rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 3.5rem;
  padding: 0;
}
.checklist li {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.05rem;
  color: var(--muted);
}
.checklist li .check {
  width: 24px; height: 24px;
  background: rgba(66,133,244,0.12);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(66,133,244,0.15);
}
.checklist li .check svg { width: 12px; height: 12px; color: var(--accent); }

.showcase-preview {
  background: rgba(22, 22, 22, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  transition: border-color 0.3s;
}
.showcase-preview:hover { border-color: rgba(255,255,255,0.15); }

.chat-bubble { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 12px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
}
.avatar.user { background: rgba(255,255,255,0.08); color: var(--text); }
.avatar.ai   { background: linear-gradient(135deg, #4285f4, #34a853); color: #fff; box-shadow: var(--shadow-md); }

.bubble-body { flex: 1; }
.bubble {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 0 16px 16px 16px;
  padding: 1rem 1.2rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}
.chat-bubble.user .bubble {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border-radius: 16px 16px 0px 16px;
}

/* ─── CTA ────────────────────────────────────────────────────────── */
.cta {
  padding: 12rem 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 0;
}
.cta-glow {
  position: absolute;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(66,133,244,0.14) 0%, rgba(138,180,248,0.06) 38%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: ctaPulse 5s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes ctaPulse {
  0%   { opacity: 0.8; transform: translate(-50%, -50%) scale(0.95); }
  100% { opacity: 1;   transform: translate(-50%, -50%) scale(1.05); }
}
.cta-actions { margin-top: 3.5rem; display: flex; justify-content: center; }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.report-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  overflow: hidden;
}

.footer-wordmark-wrapper {
  position: relative;
  line-height: 1;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 80%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 80%);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 48px;
  padding: 64px 0;
}

.footer-wordmark {
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-size: clamp(80px, 18vw, 160px);
  font-weight: 800;
  letter-spacing: -4px;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(255, 255, 255, 0.07) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
  padding-bottom: 80px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  max-width: 280px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 240px;
}

.footer-copy {
  font-size: 12px;
  color: var(--muted2, rgba(255,255,255,0.25));
  margin-bottom: 0;
}

.footer-bottom-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
}

.footer-icp {
  font-size: 12px;
  color: var(--muted2, rgba(255,255,255,0.25));
  text-decoration: none;
  transition: color 0.15s;
}

.footer-icp:hover {
  color: var(--text);
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  gap: 64px;
  align-items: start;
  flex-shrink: 0;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.15s;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--text);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
  .footer-nav {
    gap: 2rem;
    width: 100%;
    justify-content: space-between;
  }
  .footer-brand {
    max-width: 100%;
  }
}

/* ─── ANIMATIONS ─────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── SUPPRESS GLOBALS.CSS CSS-COUNTER ON LANDING STEPS ──────────── */
.open-report-container .step::before {
  content: none;
  display: none;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { width: 95%; padding: 0.8rem 1.5rem; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(even) { transform: none; }
  .showcase { grid-template-columns: 1fr; gap: 4rem; }
}

@media (max-width: 600px) {
  .hero { padding: 10rem 6%; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}

/* ─── ULTRA-WIDE CONTENT CAP ─────────────────────────────────────── */
@media (min-width: 1600px) {
  .features, .how, .showcase, .logos-section, .cta {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
  .report-footer {
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ─── METEOR EFFECT ─────────────────────────────────────────────── */
.meteor-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  overflow: hidden;
}

.meteor {
  position: absolute;
  width: 250px;
  height: 1px;
  /* Multi-stop cold-blue atmospheric gradient: brilliant head → rapid falloff → long translucent tail */
  background: linear-gradient(
    to right,
    rgba(200, 230, 255, 1) 0%,
    rgba(200, 230, 255, 0.6) 8%,
    rgba(200, 230, 255, 0.2) 20%,
    rgba(200, 230, 255, 0.05) 50%,
    transparent 100%
  );
  border-radius: 100px;
  opacity: 0;
  box-shadow: 0 0 10px rgba(200, 230, 255, 0.4), 0 0 20px rgba(200, 230, 255, 0.1);
  will-change: transform, opacity;
  transform-origin: left center;
}

/* Coma (glowing nucleus at meteor head) */
.meteor::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 0 6px #fff,
    0 0 14px rgba(200, 230, 255, 0.9),
    0 0 28px rgba(200, 230, 255, 0.5);
}

@keyframes meteor-fall {
  0% {
    opacity: 0;
    transform: translate(0, 0) rotate(-45deg) scale(var(--scale, 1));
  }
  15% {
    opacity: var(--max-opacity, 1);
  }
  100% {
    opacity: 0;
    transform: translate(-100vw, 100vh) rotate(-45deg) scale(var(--scale, 1));
  }
}

/* ─── METEOR SHOWER TRIGGER BUTTON ──────────────────────────────── */
.meteor-trigger {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  z-index: 200;
  width: 52px;
  height: 52px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  /* Entrance animation */
  animation: triggerEntrance 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s both;
}

@keyframes triggerEntrance {
  from { opacity: 0; transform: translateY(20px) scale(0.6); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.meteor-trigger-inner {
  position: relative;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  /* Dark glass pill surface */
  background: rgba(12, 12, 18, 0.75);
  border: 1px solid rgba(200, 230, 255, 0.18);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.6),
    0 0 0 0 rgba(200, 230, 255, 0),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.meteor-trigger:hover .meteor-trigger-inner {
  border-color: rgba(200, 230, 255, 0.45);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.7),
    0 0 20px rgba(200, 230, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: scale(1.1);
}

.meteor-trigger:active .meteor-trigger-inner {
  transform: scale(0.95);
}

/* Orbiting ring that appears on hover */
.meteor-trigger-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(200, 230, 255, 0.2);
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.meteor-trigger:hover .meteor-trigger-ring {
  opacity: 1;
  transform: scale(1);
}

/* Pulsing ring animation when shower is active */
.meteor-trigger.shower-active .meteor-trigger-ring {
  opacity: 1;
  transform: scale(1);
  animation: triggerPulse 1.6s ease-in-out infinite;
  border-color: rgba(200, 230, 255, 0.5);
}
.meteor-trigger.shower-active .meteor-trigger-inner {
  border-color: rgba(200, 230, 255, 0.6);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(200, 230, 255, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

@keyframes triggerPulse {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%       { transform: scale(1.15); opacity: 0.2; }
}

/* SVG icon inside the button */
.meteor-trigger-icon {
  width: 22px;
  height: 22px;
  color: rgba(200, 230, 255, 0.85);
  transition: color 0.3s, filter 0.3s;
  filter: drop-shadow(0 0 4px rgba(200, 230, 255, 0.4));
}

.meteor-trigger:hover .meteor-trigger-icon {
  color: rgba(220, 240, 255, 1);
  filter: drop-shadow(0 0 8px rgba(200, 230, 255, 0.8));
}

.meteor-trigger.shower-active .meteor-trigger-icon {
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(200, 230, 255, 1));
  animation: iconGlow 1.6s ease-in-out infinite alternate;
}

@keyframes iconGlow {
  from { filter: drop-shadow(0 0 6px rgba(200, 230, 255, 0.7)); }
  to   { filter: drop-shadow(0 0 16px rgba(200, 230, 255, 1)); }
}

/* Tooltip */
.meteor-trigger-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(12, 12, 18, 0.92);
  border: 1px solid rgba(200, 230, 255, 0.15);
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  font-family: var(--font-mono), monospace;
  font-size: 0.7rem;
  color: rgba(200, 230, 255, 0.8);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-50%) translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
  backdrop-filter: blur(12px);
}

.meteor-trigger:hover .meteor-trigger-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 600px) {
  .meteor-trigger { bottom: 1.5rem; right: 1.5rem; }
}

/* ─── NAV USER MENU (avatar button inside .open-report-container) ─── */
.open-report-container .nav-user-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s, transform 0.2s;
  outline: none;
}
.open-report-container .nav-user-btn:hover {
  opacity: 0.85;
  transform: scale(1.06);
}
.open-report-container .nav-user-btn:focus-visible {
  outline: 2px solid #4285f4;
  outline-offset: 3px;
}
.open-report-container .nav-user-avatar {
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  overflow: hidden;
  background: #161616;
}
.open-report-container .nav-user-fallback {
  background: linear-gradient(135deg, #4285f4, #34a853);
  color: #fff;
  font-family: var(--font-dm-sans), system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 50%;
}

/* ─── LANDING USER DROPDOWN (portaled to <body>, global scope) ────── */
.landing-user-dropdown {
  min-width: 210px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.55), 0 1px 0 rgba(255,255,255,0.04) inset;
  z-index: 9999;
  font-family: system-ui, -apple-system, sans-serif;
  animation-duration: 0.15s;
}

.landing-user-info {
  padding: 10px 10px 6px;
}

.landing-user-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e8eaed;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-user-email {
  font-size: 0.75rem;
  color: #9aa0a6;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.landing-user-sep {
  background: rgba(255, 255, 255, 0.08);
  height: 1px;
  margin: 4px -2px;
}

.landing-user-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #9aa0a6;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.landing-user-item:hover,
.landing-user-item:focus {
  background: rgba(255, 255, 255, 0.06);
  color: #e8eaed;
}
.landing-user-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}
.landing-user-item:hover svg,
.landing-user-item:focus svg {
  opacity: 1;
}

.landing-user-signout {
  color: #f28b82;
}
.landing-user-signout:hover,
.landing-user-signout:focus {
  background: rgba(242, 139, 130, 0.10);
  color: #f28b82;
}

@media (max-width: 600px) {
  .landing-user-dropdown {
    min-width: 180px;
  }
}

/* latin-ext */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/7ab938503e4547a1-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/13971731025ec697-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/7ab938503e4547a1-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/13971731025ec697-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/7ab938503e4547a1-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/13971731025ec697-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/7ab938503e4547a1-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/13971731025ec697-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin-ext */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/7ab938503e4547a1-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__DM_Sans_e64f39';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/_next/static/media/13971731025ec697-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: '__DM_Sans_Fallback_e64f39';src: local("Arial");ascent-override: 94.90%;descent-override: 29.66%;line-gap-override: 0.00%;size-adjust: 104.53%
}.__className_e64f39 {font-family: '__DM_Sans_e64f39', '__DM_Sans_Fallback_e64f39';font-style: normal
}.__variable_e64f39 {--font-dm-sans: '__DM_Sans_e64f39', '__DM_Sans_Fallback_e64f39'
}

/* cyrillic-ext */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/2654dbf24aea7c5c-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/28d9a5bcdfe1d85c-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/f9ab74ff5df93b56-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/f884487c2e174fcf-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/_next/static/media/f36144f235cd456e-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/58f386aa6b1a2a92-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/011e180705008d6f-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/7ba5fb2a8c88521c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/92eeb95d069020cc-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/_next/static/media/d3ebbfd689654d3a-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/ef4d5661765d0e49-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/d29838c109ef09b4-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/e40af3453d7c920a-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/99dcf268bda04fe5-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url(/_next/static/media/98e207f02528a563-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/73cb51aac9c97f90-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/d26bbd13d6b70f89-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/20535187d867b7b9-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/5356a6a4f2c8c8d8-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__IBM_Plex_Mono_131c8e';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url(/_next/static/media/db96af6b531dc71f-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: '__IBM_Plex_Mono_Fallback_131c8e';src: local("Arial");ascent-override: 76.16%;descent-override: 20.43%;line-gap-override: 0.00%;size-adjust: 134.59%
}.__className_131c8e {font-family: '__IBM_Plex_Mono_131c8e', '__IBM_Plex_Mono_Fallback_131c8e';font-style: normal
}.__variable_131c8e {--font-mono: '__IBM_Plex_Mono_131c8e', '__IBM_Plex_Mono_Fallback_131c8e'
}

