:root {
  --bg: #000;
  --bg-soft: #0d0d0d;
  --card: #111;
  --card-soft: #12141a;
  --text: #f6f6f6;
  --muted: #c8c8c8;
  --accent: #00e5ff;
  --accent-dark: #00b4cc;
  --line: #2a2a2a;
  --line-soft: rgba(0, 229, 255, 0.16);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.42);
}

.public-body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(0, 229, 255, 0.2), transparent 35%),
    radial-gradient(circle at 90% 20%, rgba(0, 229, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #030303 0%, #090909 50%, #000 100%);
}

.public-body {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 229, 255, 0.85) rgba(4, 12, 18, 0.95);
}

.public-body::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

.public-body::-webkit-scrollbar-track {
  background: linear-gradient(180deg, rgba(3, 8, 12, 0.98), rgba(6, 16, 24, 0.95));
}

.public-body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(0, 229, 255, 0.9), rgba(0, 180, 204, 0.95));
  border: 2px solid rgba(4, 12, 18, 0.95);
  border-radius: 999px;
}

.public-body::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(110, 247, 255, 0.95), rgba(0, 229, 255, 0.95));
}

.public-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  background: rgba(4, 4, 5, 0.86);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(10px);
}

.public-logo img {
  height: 30px;
  width: auto;
}

.public-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.public-nav a {
  color: var(--accent);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  white-space: nowrap;
}

.public-nav .nav-link {
  width: 72px;
}

.flag-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-inline: 12px;
  padding-inline: 10px;
  flex: 0 0 92px;
}

.public-nav .flag-link {
  min-width: 42px;
  text-align: center;
  padding: 5px 7px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.public-nav .flag-link img {
  display: block;
  width: 28px;
  height: 18px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.public-nav .flag-link.is-active {
  border-color: var(--accent);
  background: rgba(0, 229, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(0, 229, 255, 0.25);
}

.public-nav a:hover {
  border-color: var(--accent);
  color: #9af6ff;
  background: rgba(0, 229, 255, 0.08);
}

.public-nav .login-link {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(0, 229, 255, 0.1);
  width: 110px;
}

.public-nav .login-link:hover {
  background: rgba(0, 229, 255, 0.2);
  border-color: var(--accent-dark);
  color: #9af6ff;
}

.public-main {
  flex: 1 0 auto;
  max-width: 1160px;
  margin: 0 auto;
  padding: 34px 20px 48px;
}

.public-main {
  padding-top: calc(56px + 34px);
}

.premium-panel {
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.premium-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), transparent 45%);
  pointer-events: none;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
  padding: 30px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(0, 229, 255, 0.02));
  border: 1px solid var(--line-soft);
  border-radius: 22px;
}

.hero-text,
.hero-media,
.page-hero {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 255, 0.24);
  background: rgba(0, 229, 255, 0.08);
  color: #9af6ff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-text h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 3vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--accent);
}

.hero-text p,
.hero-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.07rem;
  line-height: 1.58;
  max-width: 700px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 229, 255, 0.18);
  color: #f3f4f6;
  font-size: 0.92rem;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
}

.hero-media img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.feature-grid,
.contact-grid,
.demo-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.feature-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.demo-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.94), rgba(12, 13, 17, 0.98));
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 18px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 229, 255, 0.28);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.feature-card h2 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 1.18rem;
}

.feature-card h2 a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 229, 255, 0.35);
}

.feature-card h2 a:hover,
.feature-card h2 a:focus {
  color: #9af6ff;
  border-bottom-color: rgba(154, 246, 255, 0.75);
}

.feature-card p {
  margin: 6px 0;
  color: var(--muted);
  line-height: 1.55;
}

.content-shell {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-hero {
  padding: 24px 26px;
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(0, 229, 255, 0.02));
}

.page-hero h1,
.content-shell h1 {
  color: var(--accent);
  margin: 0 0 8px;
  font-size: clamp(1.9rem, 2.4vw, 2.6rem);
}

.page-hero p,
.content-shell > p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  max-width: 900px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 18px;
}

.section-header h2 {
  margin: 0;
  color: #f8fafc;
  font-size: 1.4rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.public-footer {
  margin-top: auto;
  border-top: 1px solid var(--line-soft);
  padding: 18px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  background: rgba(0, 0, 0, 0.85);
}

.public-footer strong {
  color: var(--accent);
}

small {
  color: var(--muted);
}

.compact-card p {
  margin: 0;
}

.callout-note {
  margin-top: 24px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 14px;
  background: rgba(0, 229, 255, 0.06);
  color: var(--muted);
}

.premium-inline-note {
  margin-top: 0;
}

.callout-note strong {
  color: #fff;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.screenshot-card {
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.96), rgba(12, 13, 17, 1));
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #050505;
}

.screenshot-card-body {
  padding: 16px;
}

.screenshot-card-body h2 {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 1.08rem;
}

.screenshot-card-body p {
  margin: 0;
  color: var(--muted);
}

.table-wrap {
  margin-top: 24px;
  overflow: auto;
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.96), rgba(12, 13, 17, 1));
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

.data-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--accent);
  background: rgba(0, 229, 255, 0.08);
  font-weight: 700;
}

.data-table td code,
.callout-note code {
  color: #9af6ff;
}

.severity-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
}

.pill-high {
  color: #ffd8d8;
  background: rgba(220, 38, 38, 0.18);
  border-color: rgba(220, 38, 38, 0.38);
}

.pill-medium {
  color: #ffe6bf;
  background: rgba(245, 158, 11, 0.18);
  border-color: rgba(245, 158, 11, 0.38);
}

.pill-low {
  color: #d7f6d7;
  background: rgba(34, 197, 94, 0.16);
  border-color: rgba(34, 197, 94, 0.34);
}

.pill-info {
  color: #d9ecff;
  background: rgba(59, 130, 246, 0.16);
  border-color: rgba(59, 130, 246, 0.34);
}

.download-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0, 229, 255, 0.24);
  color: var(--accent);
  text-decoration: none;
  background: rgba(0, 229, 255, 0.08);
  font-weight: 600;
}

.download-link:hover {
  color: #9af6ff;
  border-color: var(--accent);
  background: rgba(0, 229, 255, 0.14);
}

.contact-card {
  position: relative;
}

.contact-card::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.85), rgba(0, 229, 255, 0));
}

.contact-protected,
.contact-protected * {
  user-select: none;
  -webkit-user-select: none;
}

@media (max-width: 991px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .feature-grid,
  .contact-grid,
  .demo-list,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }
}

/* Hero CTA: match nav-link appearance */
.hero-actions a {
  color: var(--accent);
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  background: transparent;
  font-weight: 400;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
}

.hero-actions a:hover,
.hero-actions a:focus,
.hero-actions a:active {
  border-color: var(--accent);
  color: #9af6ff;
  background: rgba(0, 229, 255, 0.08);
  box-shadow: none;
}

