/* HorosCode SellerShops — Privacy-OS Support Service */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #8a2be2;
  --primary-dark: #6b21a8;
  --accent: #ff8c00;
  --accent-green: #22c55e;
  --accent-amber: #f59e0b;
  --accent-gold: #ffb347;
  --accent-orange: #ff8c00;
  --accent-lavender: #d1b3ff;
  --accent-red: #ef4444;
  --accent-purple: #a855f7;
  --bg: #0a050f;
  --bg-card: #0f0818;
  --bg-card2: #140c1f;
  --bg-elevated: #1a1028;
  --border: rgba(209, 179, 255, 0.1);
  --border-strong: rgba(168, 85, 247, 0.4);
  --border-degoogled: rgba(209, 179, 255, 0.28);
  --border-degoogled-strong: rgba(255, 140, 0, 0.42);
  --text: #ece8f4;
  --text-muted: #9a8ab8;
  --gradient: linear-gradient(135deg, var(--accent-purple), var(--accent-orange));
  --gradient-secure: linear-gradient(135deg, #a855f7, #ff8c00);
  --gradient-degoogled: linear-gradient(135deg, var(--accent-lavender), var(--accent-purple), var(--accent-orange));
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(168, 85, 247, 0.2);
  --shadow-degoogled: 0 8px 32px rgba(255, 140, 0, 0.22);
  --shadow-orange: 0 8px 28px rgba(255, 140, 0, 0.18);
  --font-mono: ui-monospace, "Cascadia Code", "JetBrains Mono", "Consolas", monospace;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --hud-bracket: var(--accent-orange);
  --hud-bracket-dim: rgba(255, 140, 0, 0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 20%, black 20%, transparent 75%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  opacity: 0.4;
}
body > * { position: relative; z-index: 1; }

.po-hud-mono {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-orange);
  text-transform: uppercase;
}
.po-hud-tag {
  border: 1px solid rgba(255, 140, 0, 0.35);
  background: rgba(10, 5, 15, 0.6);
}

/* HUD corner brackets */
.po-hud-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--hud-bracket);
  border-style: solid;
  pointer-events: none;
}
.po-hud-corner--tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.po-hud-corner--tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.po-hud-corner--bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.po-hud-corner--br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10001;
  padding: 12px 20px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 0 0 10px 10px;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

a { text-decoration: none; color: inherit; }
a:not(.btn):hover { color: var(--accent); }

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.po-rom-filter:focus-visible,
.po-faq-trigger:focus-visible,
.po-rom-trigger:focus-visible,
.po-compare-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 800; line-height: 1.12; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.15rem; font-weight: 600; }

.gradient-text {
  background: var(--gradient-secure);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--gradient-secure); color: #fff; }
.btn-primary:hover { opacity: 0.92; transform: translateY(-2px); box-shadow: var(--shadow-orange); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-signal {
  background: linear-gradient(135deg, #3a76f0, #2d5fd4);
  color: #fff;
}
.btn-signal:hover { opacity: 0.92; transform: translateY(-2px); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.w-full { width: 100%; }

/* Header */
.po-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 5, 15, 0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-degoogled);
  box-shadow: 0 4px 24px rgba(168, 85, 247, 0.08);
}
.po-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}
.po-logo {
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.po-logo span:first-child { font-size: 1.45rem; filter: drop-shadow(0 0 8px var(--accent-orange)); }
.po-nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
  margin-left: auto;
}
.po-nav-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}
.po-nav-links a:hover { color: var(--text); }
.po-nav-cta { white-space: nowrap; }

.po-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.po-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.po-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.po-hamburger.open span:nth-child(2) { opacity: 0; }
.po-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.po-hero {
  position: relative;
  padding: 80px 0 72px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-degoogled);
}
.po-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.po-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black, transparent);
}
.po-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
}
.po-hero-orb--1 { width: 480px; height: 480px; background: var(--accent-purple); top: -120px; right: -80px; }
.po-hero-orb--2 { width: 360px; height: 360px; background: var(--accent-orange); bottom: -60px; left: -40px; opacity: 0.18; }
.po-hero-inner { position: relative; z-index: 1; max-width: 860px; }
.po-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid var(--border-degoogled-strong);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-lavender);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(10, 5, 15, 0.5);
}
.po-hero-lead {
  margin-top: 18px;
  font-size: 1.12rem;
  color: var(--text-muted);
  max-width: 720px;
}
.po-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
  list-style: none;
}
.po-hero-badge {
  padding: 8px 14px;
  background: var(--bg-card2);
  border: 1px solid var(--border-degoogled);
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--text-muted);
  box-shadow: inset 0 0 0 1px rgba(255, 140, 0, 0.06);
}
.po-hero-badge strong { color: var(--text); }
.po-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* Trust strip */
.po-trust-strip {
  padding: 28px 0;
  border-top: 1px solid var(--border-degoogled);
  border-bottom: 1px solid var(--border-degoogled);
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(168, 85, 247, 0.06), transparent),
    var(--bg-card);
}
.po-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
}
.po-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border-degoogled);
  position: relative;
}
.po-trust-item::before,
.po-trust-item::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: var(--hud-bracket-dim);
  border-style: solid;
  pointer-events: none;
}
.po-trust-item::before { top: 6px; left: 6px; border-width: 1px 0 0 1px; }
.po-trust-item::after { bottom: 6px; right: 6px; border-width: 0 1px 1px 0; }
.po-trust-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 140, 0, 0.12);
  border: 1px solid rgba(255, 140, 0, 0.25);
  font-size: 1.2rem;
}
.po-trust-item h3 { font-size: 0.95rem; margin-bottom: 4px; }
.po-trust-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* Sections */
.po-section {
  padding: 72px 0;
  position: relative;
}
.po-section--alt {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(168, 85, 247, 0.05), transparent),
    var(--bg-card);
}
.po-section--dark {
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255, 140, 0, 0.04), transparent),
    linear-gradient(180deg, var(--bg-card) 0%, var(--bg) 100%);
}
.po-section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  position: relative;
  padding: 24px 16px;
}
.po-section-tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 4px;
  background: rgba(255, 140, 0, 0.1);
  border: 1px solid rgba(255, 140, 0, 0.28);
  color: var(--accent-orange);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.po-section-lead {
  margin-top: 14px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ROM filter */
.po-rom-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.po-rom-filter {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--bg-card2);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.po-rom-filter:hover { border-color: var(--primary); color: var(--text); }
.po-rom-filter[aria-pressed="true"] {
  background: rgba(168, 85, 247, 0.18);
  border-color: var(--border-strong);
  color: var(--text);
}

/* Deep-tech ROM banner */
.po-deep-tech-banner {
  position: relative;
  margin-bottom: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  min-height: 140px;
}
.po-deep-tech-bg {
  position: absolute;
  inset: 0;
}
.po-deep-tech-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.po-deep-tech-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 10, 15, 0.92) 0%, rgba(10, 10, 15, 0.55) 45%, rgba(10, 10, 15, 0.88) 100%),
    linear-gradient(180deg, transparent 60%, rgba(10, 10, 15, 0.95) 100%);
}
.po-deep-tech-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, black, transparent 70%);
  pointer-events: none;
}
.po-deep-tech-hud {
  position: absolute;
  top: 14px;
  right: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  max-width: 55%;
}
.po-hud-label {
  padding: 4px 10px;
  border: 1px solid rgba(168, 85, 247, 0.35);
  border-radius: 4px;
  background: rgba(10, 10, 15, 0.65);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-purple);
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
}
.po-hud-label--accent {
  border-color: rgba(245, 158, 11, 0.45);
  color: var(--accent-amber);
}
.po-deep-tech-tagline {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.po-deep-tech-tagline .po-section-tag {
  display: block;
  margin-bottom: 8px;
}

/* ROM command deck — merged de-googled banner + accordion */
.po-rom-command {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding: 0;
}
.po-rom-command-hero {
  position: relative;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.38);
  border-bottom: none;
  box-shadow:
    0 0 0 1px rgba(255, 140, 0, 0.1),
    0 -8px 32px rgba(138, 43, 226, 0.2);
}
.po-rom-command-hero img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 180px;
  max-height: min(38vw, 300px);
  object-fit: cover;
  object-position: center center;
}
.po-rom-command-hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 4, 18, 0.15) 0%,
    rgba(8, 4, 18, 0.55) 55%,
    rgba(10, 6, 22, 0.98) 100%
  );
  pointer-events: none;
}
.po-rom-command-hud {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  z-index: 1;
  pointer-events: none;
}
.po-rom-command-dock {
  position: relative;
  margin-top: -3rem;
  padding: 1.75rem 1.5rem 1.5rem;
  background: linear-gradient(165deg, rgba(18, 10, 32, 0.94), rgba(8, 5, 16, 0.92));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-degoogled-strong);
  border-radius: 16px;
  box-shadow:
    var(--shadow-degoogled),
    inset 0 1px 0 rgba(209, 179, 255, 0.08);
}
.po-rom-command-dock::before,
.po-rom-command-dock::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--accent-orange);
  border-style: solid;
  opacity: 0.65;
  pointer-events: none;
}
.po-rom-command-dock::before {
  top: 10px;
  left: 10px;
  border-width: 2px 0 0 2px;
}
.po-rom-command-dock::after {
  bottom: 10px;
  right: 10px;
  border-width: 0 2px 2px 0;
}
.po-rom-dock-header {
  text-align: center;
  margin-bottom: 1.25rem;
}
.po-rom-dock-header .po-section-tag {
  margin-bottom: 10px;
}
.po-rom-dock-label {
  margin: 0;
  font-size: clamp(0.78rem, 2vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.po-rom-dock-label .po-hud-mono {
  color: var(--accent-orange);
}
.po-rom-command-dock .po-rom-accordion {
  max-width: none;
  margin: 0;
  gap: 12px;
}
.po-rom-command-dock .po-rom-item {
  background: rgba(12, 8, 24, 0.75);
  border-color: var(--border-degoogled);
}
.po-rom-command-dock .po-rom-item[data-open="true"] {
  background: rgba(20, 12, 36, 0.9);
}
.po-degoogled-zone .po-rom-command {
  margin-bottom: 1rem;
}

/* ROM accordion */
.po-rom-accordion {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}
.po-rom-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card2);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.po-rom-item[data-open="true"] {
  border-color: var(--border-degoogled-strong);
  box-shadow: var(--shadow-degoogled);
}
.po-rom-item--premium {
  border-color: rgba(168, 85, 247, 0.35);
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.08), var(--bg-card2));
}
.po-rom-item[hidden] { display: none; }
.po-rom-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}
.po-rom-trigger:hover { background: rgba(168, 85, 247, 0.06); }
.po-rom-trigger-main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex: 1;
}
.po-rom-trigger-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.po-rom-trigger-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.po-rom-name {
  font-size: 1.05rem;
  font-weight: 700;
}
.po-rom-summary {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.po-rom-chevron {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.15);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform var(--transition);
}
.po-rom-item[data-open="true"] .po-rom-chevron { transform: rotate(45deg); }
.po-rom-panel {
  padding: 0 20px 20px 74px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  border-top: 1px solid var(--border);
}
.po-rom-panel[hidden] { display: none; }
.po-rom-panel > p { margin-bottom: 12px; }
.po-rom-badge {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: rgba(168, 85, 247, 0.2);
  color: var(--accent-purple);
  white-space: nowrap;
}
.po-rom-badge--premium {
  background: var(--gradient-secure);
  color: #fff;
}
.po-rom-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.3rem;
  background: rgba(168, 85, 247, 0.18);
}
.po-rom-target {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.po-rom-meta {
  list-style: none;
  margin-top: 8px;
}
.po-rom-meta li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 0.85rem;
  color: var(--text);
}
.po-rom-meta li::before {
  content: "•";
  position: absolute;
  left: 4px;
  color: var(--accent-purple);
}
.po-rom-warning {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  font-size: 0.82rem;
  color: var(--accent-amber);
  line-height: 1.5;
}
.po-rom-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-purple);
}
.po-rom-link:hover { color: var(--accent); }

/* Comparison toggle */
.po-compare-toggle-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.po-compare-toggle {
  gap: 10px;
}
.po-compare-toggle-icon {
  font-size: 0.75rem;
  transition: transform var(--transition);
}
.po-compare-toggle[aria-expanded="true"] .po-compare-toggle-icon {
  transform: rotate(180deg);
}

/* Comparison table */
.po-compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card2);
}
.po-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 720px;
}
.po-compare-table caption {
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.po-compare-table th,
.po-compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.po-compare-table th {
  background: var(--bg-elevated);
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.po-compare-table td { color: var(--text-muted); }
.po-compare-table tr:last-child td { border-bottom: none; }
.po-compare-table tbody tr:hover td { background: rgba(168, 85, 247, 0.04); }

/* Shared banner centering + mystic glow */
.po-degoogled-banner {
  display: block;
  max-width: 1100px;
  width: 100%;
  margin: 3rem auto;
  padding: 0 24px;
  border: none;
  background: transparent;
  overflow: visible;
}
.po-degoogled-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(42vw, 360px);
  object-fit: cover;
  object-position: center center;
  border-radius: 12px;
  border: 1px solid rgba(168, 85, 247, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 140, 0, 0.12),
    0 0 24px rgba(138, 43, 226, 0.28),
    0 0 48px rgba(255, 140, 0, 0.1),
    0 12px 40px rgba(0, 0, 0, 0.45);
}
.po-degoogled-banner figcaption:not(.visually-hidden) {
  display: none;
}

.po-degoogled-banner-section {
  padding: 0 0 3rem;
}

.po-degoogled-banner--link {
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.po-degoogled-banner--link:hover,
.po-degoogled-banner--link:focus-visible {
  transform: translateY(-3px);
  outline: none;
}
.po-degoogled-banner--link:hover img,
.po-degoogled-banner--link:focus-visible img {
  border-color: var(--border-degoogled-strong);
  box-shadow:
    0 0 0 1px rgba(255, 140, 0, 0.28),
    0 0 32px rgba(138, 43, 226, 0.42),
    0 0 64px rgba(255, 140, 0, 0.22),
    0 16px 48px rgba(0, 0, 0, 0.5);
}

/* DE-GOOGLED banner + zone theming (#roms, #vergleich) */
.po-degoogled-banner {
  position: relative;
}

.po-degoogled-zone {
  --zone-accent: var(--accent-lavender);
  --zone-accent-hot: var(--accent-orange);
  --zone-border: var(--border-degoogled);
  --zone-border-strong: var(--border-degoogled-strong);
}
.po-degoogled-zone .gradient-text {
  background: var(--gradient-degoogled);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.po-degoogled-zone .po-section-tag {
  background: rgba(249, 115, 22, 0.12);
  color: var(--accent-orange);
  border: 1px solid rgba(249, 115, 22, 0.25);
}
#roms.po-degoogled-zone {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(168, 85, 247, 0.08), transparent),
    var(--bg-card);
}
#vergleich.po-degoogled-zone {
  background:
    radial-gradient(ellipse 70% 45% at 50% 100%, rgba(249, 115, 22, 0.06), transparent),
    var(--bg);
  padding-top: 56px;
}

.po-degoogled-zone .po-rom-filter:hover {
  border-color: var(--accent-lavender);
  color: var(--accent-lavender);
}
.po-degoogled-zone .po-rom-filter[aria-pressed="true"] {
  background: rgba(209, 179, 255, 0.14);
  border-color: var(--zone-border-strong);
  color: var(--accent-lavender);
  box-shadow: 0 0 16px rgba(249, 115, 22, 0.12);
}
.po-degoogled-zone .po-deep-tech-banner {
  border-color: var(--zone-border-strong);
}
.po-degoogled-zone .po-hud-label {
  border-color: rgba(209, 179, 255, 0.4);
  color: var(--accent-lavender);
}
.po-degoogled-zone .po-hud-label--accent {
  border-color: rgba(249, 115, 22, 0.5);
  color: var(--accent-orange);
}
.po-degoogled-zone .po-rom-item {
  border-color: var(--zone-border);
}
.po-degoogled-zone .po-rom-item[data-open="true"] {
  border-color: var(--zone-border-strong);
  box-shadow: var(--shadow-degoogled);
}
.po-degoogled-zone .po-rom-item--premium {
  border-color: rgba(209, 179, 255, 0.4);
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.1), rgba(249, 115, 22, 0.04), var(--bg-card2));
}
.po-degoogled-zone .po-rom-trigger:hover {
  background: rgba(209, 179, 255, 0.06);
}
.po-degoogled-zone .po-rom-badge {
  background: rgba(209, 179, 255, 0.18);
  color: var(--accent-lavender);
  border: 1px solid rgba(209, 179, 255, 0.25);
}
.po-degoogled-zone .po-rom-badge--premium {
  background: var(--gradient-degoogled);
  color: #fff;
  border: none;
}
.po-degoogled-zone .po-rom-chevron,
.po-degoogled-zone .po-rom-icon {
  background: rgba(249, 115, 22, 0.15);
}
.po-degoogled-zone .po-rom-target {
  color: var(--accent-orange);
}
.po-degoogled-zone .po-rom-meta li::before {
  color: var(--accent-orange);
}
.po-degoogled-zone .po-rom-link {
  color: var(--accent-lavender);
}
.po-degoogled-zone .po-rom-link:hover {
  color: var(--accent-orange);
}
.po-degoogled-zone .po-compare-toggle:hover {
  border-color: var(--accent-lavender);
  color: var(--accent-lavender);
}
.po-degoogled-zone .po-compare-wrap {
  border-color: var(--zone-border-strong);
  box-shadow: 0 4px 24px rgba(168, 85, 247, 0.1);
}
.po-degoogled-zone .po-compare-table caption {
  color: var(--accent-lavender);
  border-bottom-color: var(--zone-border);
}
.po-degoogled-zone .po-compare-table thead th {
  background: linear-gradient(180deg, rgba(209, 179, 255, 0.14), rgba(168, 85, 247, 0.08));
  color: var(--accent-lavender);
  border-bottom: 2px solid rgba(249, 115, 22, 0.35);
}
.po-degoogled-zone .po-compare-table tbody th {
  color: var(--accent-orange);
  background: rgba(249, 115, 22, 0.06);
}
.po-degoogled-zone .po-compare-table tbody tr:hover td {
  background: rgba(209, 179, 255, 0.06);
}
.po-degoogled-zone .po-compare-table a {
  color: var(--accent-orange);
  font-weight: 600;
}
.po-degoogled-zone .po-compare-table a:hover {
  color: var(--accent-lavender);
}

/* GrapheneOS Premium section */
.po-graphene-zone {
  position: relative;
  padding: 0 0 80px;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(168, 85, 247, 0.12), transparent),
    radial-gradient(ellipse 70% 50% at 80% 80%, rgba(255, 140, 0, 0.08), transparent),
    var(--bg);
  border-top: 1px solid var(--border-degoogled-strong);
  border-bottom: 1px solid var(--border-degoogled-strong);
  overflow: hidden;
}
.po-graphene-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.po-graphene-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.po-graphene-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.04) 3px,
    rgba(0, 0, 0, 0.04) 6px
  );
  opacity: 0.5;
}
.po-graphene-zone .container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}

/* GrapheneOS command deck — hero + ROM strip + service grid */
.po-graphene-command {
  max-width: 1100px;
  margin: 0 auto;
}
.po-graphene-command-dock {
  position: relative;
  margin-top: -2.75rem;
  padding: 1.75rem 1.5rem 2rem;
  background: linear-gradient(165deg, rgba(16, 8, 30, 0.95), rgba(8, 5, 18, 0.92));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(168, 85, 247, 0.42);
  border-radius: 16px;
  box-shadow:
    0 0 32px rgba(138, 43, 226, 0.22),
    0 0 64px rgba(255, 140, 0, 0.08),
    inset 0 1px 0 rgba(209, 179, 255, 0.1);
}
.po-graphene-rom-strip {
  padding: 1.25rem 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(209, 179, 255, 0.35);
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.12), rgba(249, 115, 22, 0.05), rgba(12, 8, 24, 0.8));
  box-shadow: var(--shadow-degoogled);
}
.po-graphene-rom-strip-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
}
.po-graphene-rom-strip-title {
  flex: 1;
  min-width: 0;
}
.po-graphene-rom-strip-title .po-rom-summary {
  margin-top: 4px;
}
.po-graphene-rom-intro {
  margin: 0 0 12px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 72ch;
}
.po-graphene-rom-meta {
  margin-top: 10px;
}
.po-graphene-services-deck {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(168, 85, 247, 0.22);
}
.po-graphene-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-degoogled-strong);
  background: rgba(20, 12, 31, 0.75);
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.po-graphene-services-toggle:hover {
  border-color: var(--accent-lavender);
  background: rgba(168, 85, 247, 0.08);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.15);
}
.po-graphene-services-toggle[aria-expanded="true"] {
  border-color: var(--accent-orange);
  box-shadow: var(--shadow-degoogled);
  border-radius: 12px 12px 0 0;
}
.po-graphene-services-toggle-icon {
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--accent-orange);
  transition: transform var(--transition);
}
.po-graphene-services-toggle[aria-expanded="true"] .po-graphene-services-toggle-icon {
  transform: rotate(180deg);
}
.po-graphene-services-panel {
  padding: 1.25rem 0 0;
  border: 1px solid var(--border-degoogled-strong);
  border-top: none;
  border-radius: 0 0 12px 12px;
  background: rgba(12, 8, 22, 0.5);
}
.po-graphene-services-panel[hidden] {
  display: none;
}
.po-graphene-services-panel .po-graphene-services {
  padding: 0 12px 12px;
}
.po-graphene-services-label {
  margin: 0;
  text-align: left;
  font-size: clamp(0.78rem, 2vw, 0.88rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.po-graphene-services-label .po-hud-mono {
  color: var(--accent-orange);
}
.po-graphene-zone--pulse {
  animation: poGraphenePulse 1.4s ease-out 1;
}
@keyframes poGraphenePulse {
  0% { box-shadow: inset 0 0 0 0 rgba(255, 140, 0, 0); }
  35% { box-shadow: inset 0 0 0 2px rgba(255, 140, 0, 0.45); }
  100% { box-shadow: inset 0 0 0 0 rgba(255, 140, 0, 0); }
}

/* ROM list → Premium bridge link */
.po-rom-premium-bridge {
  margin: 1rem 0 0;
  list-style: none;
}
.po-rom-premium-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(209, 179, 255, 0.4);
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.14), rgba(249, 115, 22, 0.06), rgba(12, 8, 24, 0.85));
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.po-rom-premium-link:hover {
  border-color: var(--border-degoogled-strong);
  box-shadow: var(--shadow-degoogled);
  transform: translateY(-1px);
}
.po-rom-premium-link-main {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.po-rom-premium-link-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.po-rom-premium-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.2);
  color: var(--accent-orange);
  font-size: 1.1rem;
  font-weight: 700;
}

/* Unified GrapheneOS hero — HUD banner + headline overlay */
.po-graphene-command .po-graphene-hero {
  position: relative;
  max-width: none;
  width: 100%;
  margin: 3rem auto 0;
  min-height: clamp(380px, 52vw, 520px);
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  border: 1px solid rgba(168, 85, 247, 0.4);
  border-bottom: none;
  box-shadow:
    0 0 0 1px rgba(255, 140, 0, 0.14),
    0 0 28px rgba(138, 43, 226, 0.32),
    0 0 56px rgba(255, 140, 0, 0.12),
    0 16px 48px rgba(0, 0, 0, 0.5);
}
.po-graphene-hero-visual {
  position: absolute;
  inset: 0;
}
.po-graphene-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}
.po-graphene-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 5, 15, 0.15) 0%, transparent 38%),
    linear-gradient(180deg, transparent 42%, rgba(10, 5, 15, 0.72) 62%, rgba(10, 5, 15, 0.94) 100%);
  pointer-events: none;
}
.po-graphene-hero-scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.03) 3px,
    rgba(0, 0, 0, 0.03) 6px
  );
  opacity: 0.45;
  pointer-events: none;
}
.po-graphene-hero .po-hud-corner {
  z-index: 3;
}
.po-graphene-hero .po-hud-corner--tl,
.po-graphene-hero .po-hud-corner--tr { top: 10px; }
.po-graphene-hero .po-hud-corner--tl,
.po-graphene-hero .po-hud-corner--bl { left: 10px; }
.po-graphene-hero .po-hud-corner--tr,
.po-graphene-hero .po-hud-corner--br { right: 10px; }
.po-graphene-hero .po-hud-corner--bl,
.po-graphene-hero .po-hud-corner--br { bottom: 10px; }
.po-graphene-hero-content {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: clamp(20px, 4vw, 36px) clamp(20px, 4vw, 40px) clamp(24px, 4.5vw, 40px);
  text-align: center;
}
.po-graphene-hero-content .po-section-tag {
  display: inline-block;
  margin-bottom: 12px;
}
.po-graphene-hero-content h2 {
  margin-bottom: 14px;
  color: var(--text);
}
.po-graphene-hero-content .gradient-text {
  background: var(--gradient-degoogled);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.po-graphene-hero-content .po-section-lead {
  margin: 0 auto;
  max-width: 68ch;
  line-height: 1.65;
  color: rgba(230, 220, 245, 0.92);
  font-size: clamp(0.92rem, 1.8vw, 1.05rem);
}
.po-device-strip {
  margin: 0 auto 40px;
  padding: 24px 28px;
  border: 1px solid var(--border-degoogled-strong);
  border-radius: var(--radius-sm);
  background: rgba(20, 12, 31, 0.85);
  backdrop-filter: blur(8px);
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(168, 85, 247, 0.08),
    0 0 20px rgba(138, 43, 226, 0.15);
}
.po-device-strip::before,
.po-device-strip::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--hud-bracket);
  border-style: solid;
  pointer-events: none;
}
.po-device-strip::before { top: 8px; left: 8px; border-width: 2px 0 0 2px; }
.po-device-strip::after { bottom: 8px; right: 8px; border-width: 0 2px 2px 0; }
.po-device-strip-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-lavender);
  margin-bottom: 14px;
  text-align: center;
}
.po-device-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin-bottom: 14px;
  padding: 0;
}
.po-device-chips li {
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(168, 85, 247, 0.4);
  background: rgba(168, 85, 247, 0.12);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text);
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.po-device-chips li:hover {
  border-color: rgba(255, 140, 0, 0.45);
  background: rgba(255, 140, 0, 0.1);
}
.po-device-strip-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 70ch;
  margin: 0 auto;
  text-align: center;
}
.po-device-strip-note a { color: var(--accent-orange); font-weight: 600; }
.po-graphene-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  list-style: none;
  margin: 0 auto 48px;
  padding: 0;
  max-width: 100%;
}
.po-graphene-services > li {
  list-style: none;
  display: flex;
}
.po-graphene-card {
  padding: 24px;
  border: 1px solid var(--border-degoogled);
  border-radius: var(--radius-sm);
  background: rgba(20, 12, 31, 0.85);
  backdrop-filter: blur(8px);
  transition: var(--transition);
  position: relative;
  height: 100%;
  width: 100%;
  box-shadow:
    inset 0 0 0 1px rgba(168, 85, 247, 0.06),
    0 0 15px rgba(138, 43, 226, 0.12);
}
.po-graphene-card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--hud-bracket-dim);
  border-left: 1px solid var(--hud-bracket-dim);
  pointer-events: none;
}
.po-graphene-card:hover {
  border-color: var(--border-degoogled-strong);
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}
.po-graphene-card--featured {
  border-color: var(--border-degoogled-strong);
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.12), rgba(255, 140, 0, 0.06), rgba(20, 12, 31, 0.9));
}
.po-graphene-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 8px;
  background: rgba(255, 140, 0, 0.12);
  border: 1px solid rgba(255, 140, 0, 0.3);
  font-size: 1.3rem;
}
.po-graphene-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  background: var(--gradient-secure);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.po-graphene-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 70ch;
}
.po-graphene-pricing { margin: 0 auto 36px; max-width: 100%; }
.po-graphene-pricing-title {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 24px;
  background: var(--gradient-secure);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.po-graphene-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
}
.po-graphene-pricing-grid > li {
  list-style: none;
  display: flex;
}
.po-graphene-price-card {
  position: relative;
  width: 100%;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 12px;
  background: rgba(20, 10, 30, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.12);
}
.po-graphene-price-card--featured {
  border-color: rgba(168, 85, 247, 0.55);
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.16), rgba(255, 140, 0, 0.06), rgba(20, 10, 30, 0.9));
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.4),
    0 0 28px rgba(138, 43, 226, 0.32);
}
.po-graphene-price-card h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
  background: var(--gradient-secure);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.po-graphene-price strong {
  font-size: 1.5rem;
  background: var(--gradient-secure);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.po-graphene-price {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.po-graphene-price-card > p:last-child {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.po-graphene-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin: 0 auto 48px;
  max-width: 100%;
}
.po-legal-edu {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--border-degoogled-strong);
  border-radius: var(--radius-sm);
  background: rgba(15, 8, 24, 0.88);
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 0 0 1px rgba(168, 85, 247, 0.1),
    0 0 24px rgba(138, 43, 226, 0.18);
  max-width: 100%;
  text-align: center;
}
.po-legal-edu h3 {
  font-size: 1.05rem;
  margin-bottom: 16px;
  background: var(--gradient-secure);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.po-legal-edu p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0 auto 14px;
  line-height: 1.65;
  max-width: 70ch;
}
.po-newsletter-waitlist {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-degoogled);
  text-align: center;
}
.po-newsletter-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-orange);
  margin-bottom: 12px;
}
.po-newsletter-note {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Pricing — Dashboard HUD vibe (#preise) */
#preise.po-section--dark {
  position: relative;
  overflow: hidden;
}
#preise.po-section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 85, 247, 0.04) 1px, transparent 1px),
    linear-gradient(125deg, transparent 42%, rgba(255, 140, 0, 0.03) 42.5%, transparent 43%),
    linear-gradient(55deg, transparent 58%, rgba(138, 43, 226, 0.04) 58.5%, transparent 59%),
    linear-gradient(170deg, transparent 72%, rgba(255, 140, 0, 0.025) 72.3%, transparent 73%);
  background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%, 100% 100%;
  opacity: 0.85;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 30%, transparent 85%);
}
#preise.po-section--dark::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(138, 43, 226, 0.08), transparent),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(255, 140, 0, 0.06), transparent);
}
#preise .container {
  position: relative;
  z-index: 1;
}
#preise .po-section-header {
  text-align: center;
}
#preise .po-section-lead {
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.po-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  margin-bottom: 24px;
  padding: 0;
}
.po-pricing-grid > li {
  list-style: none;
  display: flex;
}
.po-pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 32px 28px;
  background: rgba(20, 10, 30, 0.82);
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
  box-shadow:
    inset 0 0 0 1px rgba(168, 85, 247, 0.06),
    0 0 15px rgba(138, 43, 226, 0.15);
}
.po-pricing-card h3 {
  background: var(--gradient-secure);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.po-pricing-card::before,
.po-pricing-card::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--hud-bracket-dim);
  border-style: solid;
  pointer-events: none;
}
.po-pricing-card::before { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.po-pricing-card::after { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }
.po-pricing-card:hover {
  border-color: var(--border-degoogled-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-orange);
}
.po-pricing-card--featured {
  border-color: rgba(168, 85, 247, 0.55);
  background: linear-gradient(145deg, rgba(168, 85, 247, 0.18), rgba(255, 140, 0, 0.08), rgba(20, 10, 30, 0.9));
  box-shadow:
    0 0 0 1px rgba(168, 85, 247, 0.4),
    0 0 30px rgba(138, 43, 226, 0.35),
    0 0 60px rgba(255, 140, 0, 0.12);
}
.po-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--gradient-secure);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.po-pricing-price {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 12px 0;
}
.po-pricing-price strong {
  font-size: 2rem;
  background: var(--gradient-secure);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.po-pricing-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.65;
  max-width: 70ch;
}
.po-pricing-features {
  list-style: none;
  margin-bottom: 24px;
}
.po-pricing-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--text);
}
.po-pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: rgba(34, 197, 94, 0.72);
  font-weight: 700;
}
.po-pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
}

/* Process */
.po-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  list-style: none;
  margin-top: 16px;
}
.po-process::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-purple), var(--accent-orange));
  opacity: 0.45;
  z-index: 0;
}
.po-process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}
.po-process-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--accent-orange);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent-lavender);
  box-shadow: 0 0 16px rgba(255, 140, 0, 0.2);
}
.po-process-step h3 { font-size: 0.95rem; margin-bottom: 8px; }
.po-process-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* FAQ */
.po-faq-list { list-style: none; max-width: 800px; margin: 0 auto; }
.po-faq-item {
  border: 1px solid var(--border-degoogled);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  background: var(--bg-card2);
  overflow: hidden;
}
.po-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.po-faq-trigger:hover { background: rgba(255, 140, 0, 0.05); }
.po-faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(255, 140, 0, 0.12);
  border: 1px solid rgba(255, 140, 0, 0.25);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform var(--transition);
}
.po-faq-item[data-open="true"] .po-faq-icon { transform: rotate(45deg); }
.po-faq-panel {
  padding: 0 22px 18px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}
.po-faq-panel[hidden] { display: none; }

/* CTA */
.po-cta { padding: 72px 0; }
.po-cta-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 48px;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(255, 140, 0, 0.08)),
    var(--bg-card2);
  border: 1px solid var(--border-degoogled-strong);
  position: relative;
}
.po-cta-box::before,
.po-cta-box::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--hud-bracket);
  border-style: solid;
  pointer-events: none;
}
.po-cta-box::before { top: 10px; left: 10px; border-width: 2px 0 0 2px; }
.po-cta-box::after { bottom: 10px; right: 10px; border-width: 0 2px 2px 0; }
.po-cta-text h2 { margin-bottom: 10px; }
.po-cta-text p { color: var(--text-muted); max-width: 520px; }
.po-cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.po-legal-notice {
  margin-top: 32px;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.25);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.po-legal-notice strong { color: var(--accent-amber); }

.po-brand-note {
  max-width: 800px;
  margin: 32px auto 0;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  background: var(--bg-card2);
  border: 1px solid var(--border-degoogled);
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.po-brand-note strong { color: var(--text); }

/* Footer */
.po-footer {
  padding: 48px 0 24px;
  border-top: 1px solid var(--border-degoogled-strong);
  background:
    radial-gradient(ellipse 50% 80% at 100% 50%, rgba(255, 140, 0, 0.05), transparent),
    var(--bg-card);
}
.po-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.po-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}
.po-footer-nav a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: var(--transition);
}
.po-footer-nav a:hover { color: var(--text); }
.po-footer-copy { font-size: 0.85rem; color: var(--text-muted); }

/* Responsive */
@media (min-width: 1200px) {
  .po-graphene-services {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .po-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .po-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .po-graphene-services { grid-template-columns: 1fr; }
  .po-graphene-pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .po-process { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .po-process::before { display: none; }
}

@media (max-width: 768px) {
  .po-nav-links {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px 24px;
    background: rgba(10, 10, 15, 0.98);
    border-bottom: 1px solid var(--border);
    margin-left: 0;
  }
  .po-nav-links.open { display: flex; }
  .po-nav-links li { width: 100%; }
  .po-nav-links a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .po-hamburger { display: flex; }
  .po-nav .btn-primary { display: none; }
  .po-trust-grid { grid-template-columns: 1fr; }
  .po-rom-panel { padding-left: 20px; }
  .po-deep-tech-hud { display: none; }
  .po-rom-command {
    margin-top: 1.5rem;
    padding: 0;
  }
  .po-rom-command-hero img {
    max-height: min(44vw, 200px);
  }
  .po-rom-command-hud { display: none; }
  .po-rom-command-dock {
    margin-top: -2rem;
    padding: 1.25rem 1rem 1rem;
  }
  .po-degoogled-banner {
    margin: 2rem auto;
    padding: 0 16px;
  }
  .po-degoogled-banner img {
    max-height: min(48vw, 220px);
    object-position: center center;
  }
  .po-graphene-command-dock {
    margin-top: -2rem;
    padding: 1.25rem 1rem 1.5rem;
  }
  .po-graphene-rom-strip-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .po-rom-premium-link {
    padding: 14px 16px;
  }
  .po-graphene-command .po-graphene-hero {
    margin: 2rem auto 2rem;
    min-height: clamp(340px, 72vw, 440px);
  }
  .po-graphene-hero-visual img {
    object-position: center 22%;
  }
  .po-graphene-hero-content {
    padding: 18px 16px 22px;
  }
  .po-graphene-cta .btn { width: 100%; max-width: 320px; }
  .po-graphene-pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .po-process { grid-template-columns: 1fr; }
  .po-cta-box { padding: 32px 24px; }
}
