:root {
  --oh-bg: #08070d;
  --oh-panel: #0d0d13;
  --oh-panel-soft: #111119;
  --oh-line: rgba(255, 255, 255, 0.11);
  --oh-line-soft: rgba(255, 255, 255, 0.075);
  --oh-ink: #f4f1fa;
  --oh-muted: #aaa5b6;
  --oh-violet: #8b5cf6;
  --oh-violet-light: #b9a2ff;
}

.official-principle-card {
  position: relative;
  min-height: 22rem;
}

.official-principles-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.oh-product-choice {
  width: min(760px, calc(100% - 32px));
  max-height: min(760px, calc(100dvh - 32px));
  margin: auto;
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(139, 92, 246, 0.48);
  border-radius: 28px;
  color: var(--oh-ink);
  background: rgba(10, 8, 18, 0.96);
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.7), 0 0 70px rgba(124, 58, 237, 0.18);
  backdrop-filter: blur(28px) saturate(125%);
}

.oh-product-choice::backdrop {
  background: rgba(2, 2, 6, 0.76);
  backdrop-filter: blur(8px);
}

.oh-product-choice__panel {
  position: relative;
  padding: 38px;
}

.oh-product-choice__panel h2 {
  max-width: 620px;
  margin: 14px 48px 10px 0;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.oh-product-choice__panel > p {
  max-width: 610px;
  color: var(--oh-muted);
  line-height: 1.7;
}

.oh-product-choice__close {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--oh-line);
  border-radius: 50%;
  color: var(--oh-muted);
  background: rgba(255, 255, 255, 0.03);
  font-size: 1.6rem;
  line-height: 1;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.oh-product-choice__close:hover,
.oh-product-choice__close:focus-visible {
  border-color: rgba(139, 92, 246, 0.75);
  color: #fff;
  background: rgba(124, 58, 237, 0.12);
}

.oh-product-choice__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.oh-product-choice__item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--oh-line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, background 180ms ease;
}

.oh-product-choice__item:hover,
.oh-product-choice__item:focus-visible {
  border-color: rgba(139, 92, 246, 0.72);
  background: rgba(124, 58, 237, 0.08);
}

.oh-product-choice__item img {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  object-fit: contain;
}

.oh-product-choice__item span,
.oh-product-choice__item strong,
.oh-product-choice__item small {
  display: block;
}

.oh-product-choice__item strong {
  color: var(--oh-ink);
  font-size: 0.98rem;
}

.oh-product-choice__item small {
  margin-top: 4px;
  color: var(--oh-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.oh-product-choice__item b {
  color: var(--oh-violet-light);
  font-size: 1rem;
}

.official-principle-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.official-principle-card__meta p {
  margin: 0;
  color: rgb(167 139 250);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.official-principle-card__number {
  color: rgb(167 139 250);
  font-size: 2rem;
  font-weight: 650;
  line-height: 1;
  opacity: .78;
}

@media (max-width: 767px) {
  .official-principle-card { min-height: 0; }
  .official-principles-grid { grid-template-columns: 1fr; }
  .oh-product-choice__panel { padding: 30px 20px 22px; }
  .oh-product-choice__grid { grid-template-columns: 1fr; }
  .oh-product-choice__close { top: 18px; right: 18px; }
}

@media (min-width: 768px) and (max-width: 1100px) {
  .official-principles-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.oh-skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(185, 162, 255, 0.7);
  border-radius: 10px;
  color: var(--oh-ink);
  background: rgba(12, 10, 20, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.oh-skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--oh-violet-light);
  outline-offset: 2px;
}

#desktop-products-menu img[src="/priviot-pdf-product-icon.png"],
#mobile-products-menu img[src="/priviot-pdf-product-icon.png"] {
  transform: scale(1.36) !important;
  transform-origin: center center !important;
}

#desktop-products-menu img[src="/priviot-write-icon.png"],
#mobile-products-menu img[src="/priviot-write-icon.png"] {
  transform: scale(1.35) !important;
  transform-origin: center center !important;
}

#desktop-products-menu img[src="/priviot-notes-icon.png"],
#mobile-products-menu img[src="/priviot-notes-icon.png"] {
  transform: scale(1.55) !important;
  transform-origin: center center !important;
}

#desktop-products-menu img[src="/priviot-ai-icon.png"],
#mobile-products-menu img[src="/priviot-ai-icon.png"] {
  transform: scale(1.52) !important;
  transform-origin: center center !important;
}

#desktop-products-menu img[src="/priviot-paste-icon.png"],
#mobile-products-menu img[src="/priviot-paste-icon.png"] {
  transform: scale(1.40) !important;
  transform-origin: center center !important;
}

#desktop-products-menu img[src="/priviot-proof-icon-official.png"],
#mobile-products-menu img[src="/priviot-proof-icon-official.png"] {
  transform: scale(1.55) !important;
  transform-origin: center center !important;
}

html,
body,
#root,
#root > div {
  background-color: var(--oh-bg);
}

#root > div {
  background:
    radial-gradient(ellipse 78% 16% at 52% 4%, rgba(85, 42, 145, 0.24), transparent 72%),
    radial-gradient(ellipse 54% 20% at 11% 27%, rgba(72, 37, 126, 0.16), transparent 74%),
    radial-gradient(ellipse 62% 18% at 88% 49%, rgba(83, 44, 140, 0.15), transparent 76%),
    radial-gradient(ellipse 58% 19% at 18% 71%, rgba(66, 34, 116, 0.14), transparent 76%),
    radial-gradient(ellipse 70% 18% at 76% 91%, rgba(78, 40, 132, 0.15), transparent 78%),
    linear-gradient(180deg, #090711 0%, #08070d 42%, #090710 100%);
}

#root main,
#root main > section {
  background-color: transparent !important;
}

#root main > section {
  background-image: none;
}

#root main [class*="bg-panel-1"],
#root footer [class*="bg-panel-1"],
#root [role="region"] [class*="bg-panel-1"] {
  background-color: rgba(13, 12, 19, 0.26) !important;
  backdrop-filter: blur(14px) saturate(112%);
}

#root main [class*="bg-panel-2"],
#root footer [class*="bg-panel-2"],
#root [role="region"] [class*="bg-panel-2"] {
  background-color: rgba(15, 14, 22, 0.2) !important;
  backdrop-filter: blur(12px) saturate(110%);
}

#root main [class*="bg-panel-3"],
#root footer [class*="bg-panel-3"],
#root [role="region"] [class*="bg-panel-3"] {
  background-color: rgba(18, 16, 26, 0.28) !important;
  backdrop-filter: blur(12px) saturate(112%);
}

#root main .priviot-glass-card {
  --pg-bg: rgba(14, 12, 20, 0.26) !important;
  --pg-bg-dense: rgba(10, 8, 18, 0.36) !important;
  --pg-bg-hover: rgba(22, 18, 31, 0.38) !important;
  backdrop-filter: blur(16px) saturate(115%);
}

.oh-header-shell,
#root > div > header {
  inset-inline: auto !important;
  top: 16px !important;
  left: 50% !important;
  width: min(calc(100% - 32px), 72rem) !important;
  transform: translateX(-50%);
  overflow: visible;
  border: 1px solid var(--oh-line) !important;
  border-radius: 20px;
  background: rgba(8, 8, 13, 0.2) !important;
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(14px) saturate(115%);
}

.oh-header-shell > div:first-child,
#root > div > header > div:first-child {
  height: 64px;
}

.oh-header-shell #desktop-products-menu,
#root > div > header #desktop-products-menu {
  top: 80px;
}

#desktop-products-menu .priviot-glass-card {
  transform-origin: top center;
  will-change: opacity, filter, transform;
}

#desktop-products-menu .priviot-glass-card.priviot-glass-hidden {
  opacity: 0 !important;
  filter: blur(4px);
  transform: translateY(-12px) scale(0.975) !important;
  transition:
    opacity 180ms ease,
    filter 200ms ease,
    transform 240ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

#desktop-products-menu .priviot-glass-card.priviot-glass-visible {
  opacity: 1 !important;
  filter: blur(0);
  transform: translateY(0) scale(1) !important;
  transition:
    opacity 260ms ease,
    filter 300ms ease,
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

#desktop-products-menu .priviot-glass-card [role="menuitem"],
#desktop-products-menu .priviot-glass-card .grid > div {
  opacity: 0;
  transform: translateY(-7px);
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

#desktop-products-menu
  .priviot-glass-card.priviot-glass-visible
  [role="menuitem"],
#desktop-products-menu
  .priviot-glass-card.priviot-glass-visible
  .grid
  > div {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 280ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

#desktop-products-menu
  .priviot-glass-card.priviot-glass-visible
  .grid
  > :nth-child(1) {
  transition-delay: 60ms;
}

#desktop-products-menu
  .priviot-glass-card.priviot-glass-visible
  .grid
  > :nth-child(2) {
  transition-delay: 95ms;
}

#desktop-products-menu
  .priviot-glass-card.priviot-glass-visible
  .grid
  > :nth-child(3) {
  transition-delay: 130ms;
}

#desktop-products-menu
  .priviot-glass-card.priviot-glass-visible
  .grid
  > :nth-child(4) {
  transition-delay: 165ms;
}

.oh-header-shell [role="group"],
#root > div > header [role="group"] {
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgba(8, 8, 13, 0.14) !important;
  backdrop-filter: blur(10px);
}

.oh-header-shell a[aria-label="Support"],
#root > div > header a[aria-label="Support"] {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 13, 0.14) !important;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.oh-header-shell a[aria-label="Support"]:hover,
#root > div > header a[aria-label="Support"]:hover {
  background: rgba(124, 58, 237, 0.12) !important;
}

.oh-section {
  position: relative;
  color: var(--oh-ink);
}

.oh-shell {
  width: min(calc(100% - 40px), 72rem);
  margin-inline: auto;
}

.oh-eyebrow,
.oh-kicker {
  color: var(--oh-violet);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

details[data-oh-faq-animation="true"] > p,
details[data-oh-faq-animation="true"] > div {
  transform-origin: top;
  will-change: height, opacity, transform;
}

details[data-oh-faq-animation="true"] > summary {
  transition:
    color 220ms ease,
    padding-left 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

details[data-oh-faq-animation="true"] > summary:hover {
  padding-left: 6px;
}

/* Keep hero badges and short trust lines typographically clean. */
main :is(span, a).inline-flex.items-center.gap-2.rounded-full
  > span[class~="h-1.5"][class~="w-1.5"][class~="rounded-full"],
main p.flex.items-start.gap-2
  > span[class~="h-1.5"][class~="w-1.5"][class~="rounded-full"] {
  display: none;
}

#oh-trust-strip {
  padding: 0 0 42px;
}

#oh-trust-strip ul {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-block: 1px solid var(--oh-line-soft);
  list-style: none;
}

#oh-trust-strip li {
  position: relative;
  padding: 22px 20px;
  color: #b8b3c1;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-align: center;
  text-transform: uppercase;
}

#oh-trust-strip li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -3px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--oh-violet);
  content: "";
  transform: translateY(-50%);
}

#oh-product-overview {
  padding: 110px 0 60px;
  background: transparent;
}

.oh-split-heading {
  max-width: 672px;
  margin-inline: auto;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--oh-line-soft);
  text-align: center;
}

.oh-split-heading .oh-eyebrow,
.oh-section-heading .oh-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.16px;
  line-height: 16px;
}

.oh-split-heading h2,
.oh-section-heading h2 {
  max-width: 672px;
  margin: 12px auto 0;
  color: var(--oh-ink);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.9px;
  line-height: 40px;
}

.oh-split-heading p,
.oh-section-heading > p {
  max-width: 672px;
  margin: 16px auto 0;
  color: var(--oh-muted);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.176px;
  line-height: 26px;
}

.oh-product-row {
  position: relative;
  display: grid;
  grid-template-columns: 96px 170px minmax(180px, 1fr) minmax(250px, 1.35fr) 48px;
  gap: 18px;
  align-items: center;
  min-height: 178px;
  padding-inline: 18px;
  border-bottom: 1px solid var(--oh-line-soft);
  color: inherit;
  cursor: pointer;
  isolation: isolate;
  text-decoration: none;
}

.oh-product-row::before {
  position: absolute;
  inset: 10px 0;
  z-index: -1;
  border: 1px solid transparent;
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 50%, rgba(124, 58, 237, 0.16), transparent 34%),
    linear-gradient(90deg, rgba(124, 58, 237, 0.07), rgba(15, 13, 22, 0.62) 48%, rgba(124, 58, 237, 0.035));
  content: "";
  opacity: 0;
  transform: scale(0.985);
  transition:
    border-color 260ms ease,
    opacity 260ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.oh-product-row__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 18px 42px rgba(71, 34, 145, 0.16);
  transition:
    filter 300ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.oh-product-row h3 {
  margin: 0;
  color: var(--oh-ink);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 480;
  letter-spacing: -0.035em;
  transition:
    color 240ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.oh-product-row p {
  margin: 0;
  color: var(--oh-muted);
  line-height: 1.65;
  transition:
    color 240ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.oh-product-row__arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--oh-line);
  border-radius: 999px;
  color: #8b5cf6;
  font-size: 1.25rem;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease,
    color 180ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.oh-product-row:hover::before,
.oh-product-row:focus-within::before {
  border-color: rgba(167, 139, 250, 0.17);
  opacity: 1;
  transform: scale(1);
}

.oh-product-row:hover .oh-product-row__icon,
.oh-product-row:focus-within .oh-product-row__icon {
  filter: drop-shadow(0 16px 22px rgba(100, 53, 190, 0.3));
  transform: translateY(-5px) scale(1.045);
}

.oh-product-row:hover h3,
.oh-product-row:focus-within h3 {
  color: #fff;
  transform: translateX(7px);
}

.oh-product-row:hover p,
.oh-product-row:focus-within p {
  color: #c1bccb;
  transform: translateX(4px);
}

.oh-product-row:hover .oh-product-row__arrow,
.oh-product-row:focus-visible .oh-product-row__arrow {
  border-color: rgba(167, 139, 250, 0.5);
  background: rgba(124, 58, 237, 0.11);
  box-shadow: 0 0 28px rgba(124, 58, 237, 0.14);
  color: white;
  transform: translate(2px, -2px);
}

#oh-product-focus {
  padding: 110px 0 120px;
  background: transparent;
}

#oh-brand-principles {
  padding: 108px 0 118px;
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.035), transparent);
}

.oh-brand-principles__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 58px;
}

.oh-brand-principle {
  min-height: 360px;
  padding: 30px;
  border: 1px solid var(--oh-line);
  border-radius: 26px;
  background: rgba(11, 9, 17, 0.5);
}

.oh-brand-principle__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
}

.oh-brand-principle__meta span {
  color: #8b6bd1;
  font-size: 2rem;
  font-weight: 650;
  line-height: 1;
}

.oh-brand-principle__meta strong {
  color: #a78bfa;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  line-height: 1.55;
}

.oh-brand-principle h3 {
  margin-top: 30px;
  color: var(--oh-ink);
  font-size: 1.1rem;
  font-weight: 620;
}

.oh-brand-principle p {
  margin-top: 18px;
  color: var(--oh-muted);
  font-size: 0.88rem;
  line-height: 1.75;
}

.oh-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 62px;
  padding: 8px 1px 0;
}

.oh-focus-card {
  --oh-card-accent: 139, 92, 246;
  --oh-card-rest-accent: var(--oh-card-accent);
  --oh-card-rest-border: var(--oh-card-rest-accent);
  display: flex;
  min-width: 0;
  min-height: 440px;
  padding: 28px 24px 24px;
  flex-direction: column;
  border: 1px solid rgba(var(--oh-card-rest-border), 0.42);
  border-radius: 34px;
  background:
    radial-gradient(circle at 26% 8%, rgba(var(--oh-card-rest-accent), 0.2), transparent 46%),
    linear-gradient(145deg, rgba(var(--oh-card-rest-accent), 0.075), rgba(9, 8, 16, 0.86) 54%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  color: inherit;
  text-decoration: none;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.oh-focus-card--write {
  --oh-card-accent: 232, 228, 239;
  --oh-card-rest-accent: var(--oh-card-accent);
  --oh-card-rest-border: 139, 92, 246;
}
.oh-focus-card--paste { --oh-card-accent: 79, 70, 229; }
.oh-focus-card--notes { --oh-card-accent: 249, 115, 22; }
.oh-focus-card--ai { --oh-card-accent: 124, 58, 237; }

.oh-focus-card:hover,
.oh-focus-card:focus-visible {
  border-color: rgba(var(--oh-card-accent), 0.9);
  box-shadow:
    0 0 0 1px rgba(var(--oh-card-accent), 0.14),
    0 20px 64px rgba(var(--oh-card-accent), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.oh-focus-card:focus-visible {
  outline: 2px solid rgba(var(--oh-card-accent), 0.9);
  outline-offset: 4px;
}

.oh-focus-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  object-fit: contain;
}

.oh-focus-card__heading {
  margin-top: 46px;
}

.oh-focus-card h3 {
  margin: 0;
  color: var(--oh-ink);
  font-size: 1.38rem;
  font-weight: 520;
  letter-spacing: -0.035em;
}

.oh-focus-card ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--oh-muted);
  font-size: 0.86rem;
  list-style: none;
}

.oh-focus-card li::before {
  margin-right: 18px;
  color: rgb(var(--oh-card-accent));
  content: "—";
}

.oh-focus-card__action {
  display: flex;
  margin-top: auto;
  padding-top: 24px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--oh-line-soft);
  color: var(--oh-ink);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.oh-product-list {
  max-width: 1120px;
  margin: 58px auto 0;
  border-top: 1px solid var(--oh-line-soft);
}

.oh-product-row__identity {
  min-width: 0;
}

.oh-product-row__version {
  display: inline-block;
  margin-top: 7px;
  color: #a78bfa;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.oh-product-row__task {
  color: #d8d3df !important;
}

.oh-product-row__details {
  font-size: 0.82rem;
}

.oh-section-heading {
  max-width: 672px;
  margin-inline: auto;
  text-align: center;
}

.oh-section-heading > p {
  max-width: 672px;
}

.oh-suite-without-brand {
  padding-top: 0;
}

.oh-suite-without-brand > .relative:first-child,
.oh-suite-without-brand > .suite-reveal-stem {
  display: none;
}

.oh-suite-panel {
  position: relative;
}

.oh-suite-browser-bridge {
  display: flex;
  width: fit-content;
  margin: 0 auto 20px;
  align-items: center;
  flex-direction: column;
  gap: 9px;
}

.oh-suite-browser-bridge__icon {
  display: flex;
  padding: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.oh-suite-browser-bridge__label {
  color: #aaa5b5;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.oh-suite-program-heading {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.oh-suite-program-list {
  position: relative;
  z-index: 1;
}

/* Without the former central brand mark there is no truthful flight origin.
   Reveal every product at its final position instead. */
.oh-suite-without-brand .suite-emerge {
  --dx: 0px !important;
  --dy: 0px !important;
  animation-name: oh-suite-item-in-place;
  animation-duration: 620ms;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes oh-suite-item-in-place {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translateY(8px) scale(0.9);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

.oh-suite-without-brand .card-sheen:has(> img) {
  display: flex;
  width: 50px;
  height: 50px;
  padding: 0;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.oh-suite-without-brand .card-sheen:has(> img) > img {
  --oh-icon-crop: 1.22;
  width: 100%;
  height: 100%;
  border-radius: 11px;
  object-fit: cover;
  transform: scale(var(--oh-icon-crop));
  transform-origin: center;
}

.oh-suite-without-brand .oh-suite-browser-bridge__icon.card-sheen {
  width: 68px;
  height: 68px;
  border-radius: 16px;
}

.oh-suite-without-brand .oh-suite-browser-bridge__icon.card-sheen > img {
  border-radius: 15px;
}

.ecosystem-flow-node {
  display: flex;
  width: 66px;
  height: 66px;
  padding: 0 !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ecosystem-flow-node > img {
  --oh-icon-crop: 1.22;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  transform: scale(var(--oh-icon-crop));
  transform-origin: center;
}

:is(.oh-suite-without-brand .card-sheen, .ecosystem-flow-node) > img[src$="/priviot-pdf-product-icon.png"] { --oh-icon-crop: 1.238; }
:is(.oh-suite-without-brand .card-sheen, .ecosystem-flow-node) > img[src$="/priviot-pdf-icon.png"] { --oh-icon-crop: 1.238; }
:is(.oh-suite-without-brand .card-sheen, .ecosystem-flow-node) > img[src$="/priviot-write-icon.png"] { --oh-icon-crop: 1.230; }
:is(.oh-suite-without-brand .card-sheen, .ecosystem-flow-node) > img[src$="/priviot-paste-icon.png"] { --oh-icon-crop: 1.318; }
:is(.oh-suite-without-brand .card-sheen, .ecosystem-flow-node) > img[src$="/priviot-card-pdf.png"] { --oh-icon-crop: 1.199; }
:is(.oh-suite-without-brand .card-sheen, .ecosystem-flow-node) > img[src$="/priviot-card-write.png"] { --oh-icon-crop: 1.216; }
:is(.oh-suite-without-brand .card-sheen, .ecosystem-flow-node) > img[src$="/priviot-card-paste.png"] { --oh-icon-crop: 1.247; }
:is(.oh-suite-without-brand .card-sheen, .ecosystem-flow-node) > img[src$="/priviot-card-notes.png"] { --oh-icon-crop: 1.269; }
:is(.oh-suite-without-brand .card-sheen, .ecosystem-flow-node) > img[src$="/priviot-ai-logo-20260730-v2.png"] { --oh-icon-crop: 1.220; }
:is(.oh-suite-without-brand .card-sheen, .ecosystem-flow-node) > img[src$="/priviot-card-proof.png"] { --oh-icon-crop: 1.279; }
:is(.oh-suite-without-brand .card-sheen, .ecosystem-flow-node) > img[src$="/priviot-card-drive.png"] { --oh-icon-crop: 1.220; }
:is(.oh-suite-without-brand .card-sheen, .ecosystem-flow-node) > img[src$="/priviot-card-cell.png"] { --oh-icon-crop: 1.199; }
:is(.oh-suite-without-brand .card-sheen, .ecosystem-flow-node) > img[src$="/priviot-card-presentation.png"] { --oh-icon-crop: 1.211; }
:is(.oh-suite-without-brand .card-sheen, .ecosystem-flow-node) > img[src$="/priviot-key-icon.png"] { --oh-icon-crop: 1.263; }
:is(.oh-suite-without-brand .card-sheen, .ecosystem-flow-node) > img[src$="/priviot-browser-icon.png"] { --oh-icon-crop: 1.323; }
:is(.oh-suite-without-brand .card-sheen, .ecosystem-flow-node) > img[src$="/priviot-calendar-icon.png"] { --oh-icon-crop: 1.230; }
:is(.oh-suite-without-brand .card-sheen, .ecosystem-flow-node) > img[src$="/priviot-card-dark.png"] { --oh-icon-crop: 1.241; }

@media (max-width: 639px) {
  .oh-suite-without-brand .card-sheen:has(> img) {
    width: 46px;
    height: 46px;
  }

  .oh-suite-without-brand .oh-suite-browser-bridge__icon.card-sheen {
    width: 60px;
    height: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oh-suite-without-brand .suite-emerge {
    animation: none;
  }
}

.oh-changelog-card {
  --oh-card-accent: 139, 92, 246;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(var(--oh-card-accent), 0.3);
  background:
    radial-gradient(circle at 8% 0%, rgba(var(--oh-card-accent), 0.2), transparent 48%),
    linear-gradient(145deg, rgba(19, 16, 29, 0.88), rgba(10, 9, 15, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 18px 50px rgba(0, 0, 0, 0.18);
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  backdrop-filter: blur(16px);
  will-change: transform;
  transition:
    border-color 280ms ease,
    background 280ms ease,
    box-shadow 380ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.oh-changelog-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 82% 18%, rgba(var(--oh-card-accent), 0.14), transparent 40%);
  content: "";
  opacity: 0;
  transition: opacity 300ms ease;
}

.oh-changelog-card--pdf {
  --oh-card-accent: 124, 58, 237;
}

.oh-changelog-card--write {
  --oh-card-accent: 244, 244, 245;
}

.oh-changelog-card--paste {
  --oh-card-accent: 79, 70, 229;
}

.oh-changelog-card--proof {
  --oh-card-accent: 74, 222, 94;
}

.oh-changelog-card--notes {
  --oh-card-accent: 249, 115, 22;
}

.oh-changelog-card--ai {
  --oh-card-accent: 139, 92, 246;
}

.oh-changelog-card img {
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.26),
    0 10px 30px rgba(var(--oh-card-accent), 0.14);
  transition:
    filter 300ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.oh-changelog-card h2,
.oh-changelog-card p,
.oh-changelog-card > span {
  transition:
    color 240ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.oh-changelog-card:hover,
.oh-changelog-card:focus-visible {
  z-index: 2;
  border-color: rgba(var(--oh-card-accent), 0.72);
  background:
    radial-gradient(circle at 8% 0%, rgba(var(--oh-card-accent), 0.28), transparent 50%),
    linear-gradient(145deg, rgba(24, 20, 35, 0.94), rgba(12, 10, 18, 0.82));
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.36),
    0 18px 48px rgba(var(--oh-card-accent), 0.18),
    0 0 0 1px rgba(var(--oh-card-accent), 0.12);
  outline: none;
  transform: translateY(-10px) scale(1.008);
}

.oh-changelog-card:hover::before,
.oh-changelog-card:focus-visible::before {
  opacity: 1;
}

.oh-changelog-card:hover img,
.oh-changelog-card:focus-visible img {
  filter: drop-shadow(0 15px 22px rgba(var(--oh-card-accent), 0.22));
  transform: translateY(-4px) scale(1.055);
}

.oh-changelog-card:hover h2,
.oh-changelog-card:focus-visible h2 {
  color: #fff;
  transform: translateX(4px);
}

.oh-changelog-card:hover p,
.oh-changelog-card:focus-visible p {
  color: #c8c2d0;
}

.oh-changelog-card:hover > span,
.oh-changelog-card:focus-visible > span {
  color: rgb(var(--oh-card-accent));
}

@media (prefers-reduced-motion: reduce) {
  .oh-changelog-card,
  .oh-changelog-card img,
  .oh-changelog-card h2,
  .oh-changelog-card p,
  .oh-changelog-card > span {
    transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
  }

  .oh-changelog-card:hover,
  .oh-changelog-card:focus-visible,
  .oh-changelog-card:hover img,
  .oh-changelog-card:focus-visible img,
  .oh-changelog-card:hover h2,
  .oh-changelog-card:focus-visible h2 {
    transform: none;
  }
}

.oh-campaign-line {
  margin-top: 1.25rem;
  max-width: 38rem;
  color: var(--oh-ink);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.oh-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.oh-news-card {
  position: relative;
  display: flex;
  min-height: 22rem;
  flex-direction: column;
  padding: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(167, 139, 250, 0.22);
  border-radius: 1.5rem;
  color: var(--oh-ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(124, 58, 237, 0.2), transparent 42%),
    rgba(14, 12, 22, 0.68);
  box-shadow: 0 24px 70px -50px rgba(124, 58, 237, 0.9);
  backdrop-filter: blur(24px);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.oh-news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(167, 139, 250, 0.55);
  background:
    radial-gradient(circle at 16% 8%, rgba(124, 58, 237, 0.3), transparent 46%),
    rgba(19, 16, 30, 0.8);
}

.oh-news-card__meta {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  align-items: center;
  gap: 0.2rem 0.75rem;
  color: var(--oh-muted);
  font-size: 0.72rem;
}

.oh-news-card__meta img {
  grid-row: 1 / 3;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  object-fit: contain;
}

.oh-news-card__meta span {
  color: #a78bfa;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.oh-news-card__meta time {
  font-size: 0.76rem;
}

.oh-news-card h3 {
  margin: 2rem 0 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.oh-news-card > p {
  margin: 1rem 0 0;
  color: var(--oh-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.oh-news-card__arrow {
  margin-top: auto;
  align-self: flex-end;
  color: #8b5cf6;
  font-size: 1.5rem;
  transition: transform 220ms ease;
}

.oh-news-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.oh-news-card__links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(167, 139, 250, 0.3);
  border-radius: 0.75rem;
  color: #c4b5fd;
  font-size: 0.82rem;
  font-weight: 650;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.oh-news-card__links a:hover,
.oh-news-card__links a:focus-visible {
  border-color: #8b5cf6;
  color: #fff;
  background: rgba(124, 58, 237, 0.12);
}

.oh-news-card:hover .oh-news-card__arrow {
  transform: translate(3px, -3px);
}

@media (min-width: 1024px) {
  .priviot-footer-grid {
    grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .oh-news-grid {
    grid-template-columns: 1fr;
  }

  .oh-news-card {
    min-height: 18rem;
  }
}

#root footer {
  background:
    linear-gradient(rgba(8, 7, 13, 0.42), rgba(8, 7, 13, 0.62)),
    radial-gradient(ellipse 65% 100% at 50% 0%, rgba(76, 39, 128, 0.14), transparent 78%);
}

.priviot-wordmark {
  display: inline-flex !important;
  align-items: center;
}

.priviot-wordmark-image {
  display: block;
  width: auto;
  height: 1.85rem;
  object-fit: contain;
}

footer .priviot-wordmark-image {
  height: 3.25rem;
}

.priviot-related-guides { position: relative; padding: 5rem 1.25rem 6rem; }
.priviot-related-guides__inner { width: min(72rem, 100%); margin: 0 auto; padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid rgba(139, 92, 246, .24); border-radius: 1.5rem; background: linear-gradient(135deg, rgba(139, 92, 246, .08), rgba(12, 10, 20, .82) 48%); }
.priviot-related-guides__eyebrow { margin: 0; color: #a78bfa; font-size: .75rem; font-weight: 600; letter-spacing: .18em; }
.priviot-related-guides h2 { margin: .75rem 0 0; color: #f5f3ff; font-size: clamp(1.65rem, 3vw, 2.35rem); line-height: 1.15; }
.priviot-related-guides__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .875rem; margin-top: 2rem; }
.priviot-related-guides__grid a { position: relative; display: grid; min-height: 9rem; padding: 1.25rem 3rem 1.25rem 1.25rem; border: 1px solid rgba(255, 255, 255, .12); border-radius: 1rem; color: #f5f3ff; text-decoration: none; background: rgba(10, 9, 17, .58); transition: transform 180ms ease, border-color 180ms ease, background 180ms ease; }
.priviot-related-guides__grid a:hover, .priviot-related-guides__grid a:focus-visible { border-color: rgba(167, 139, 250, .62); background: rgba(139, 92, 246, .11); transform: translateY(-2px); }
.priviot-related-guides__grid strong { font-size: 1rem; }
.priviot-related-guides__grid span { align-self: end; margin-top: 1rem; color: #aaa5b5; font-size: .875rem; line-height: 1.55; }
.priviot-related-guides__grid b { position: absolute; right: 1.25rem; bottom: 1.25rem; color: #a78bfa; }

@media (max-width: 780px) {
  .priviot-related-guides__grid { grid-template-columns: 1fr; }
}

.oh-scroll-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease var(--oh-scroll-reveal-delay, 0ms),
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1) var(--oh-scroll-reveal-delay, 0ms);
}

.oh-scroll-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .oh-scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.priviot-social-links {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.priviot-social-link {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  background: transparent;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.priviot-social-link:hover,
.priviot-social-link:focus-visible {
  border-color: #7c3aed;
  background: rgba(124, 58, 237, 0.09);
  transform: translateY(-1px);
}

.priviot-social-link:focus-visible {
  outline: 2px solid #c4b5fd;
  outline-offset: 3px;
}

.priviot-social-brand {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
  object-fit: contain;
}

.priviot-social-brand--reddit {
  width: 1.45rem;
  height: 1.45rem;
}

@media (max-width: 1020px) {
  .oh-brand-principles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .oh-product-row {
    grid-template-columns: 78px 150px minmax(180px, 1fr) 48px;
  }

  .oh-product-row__details {
    display: none;
  }

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

}

@media (max-width: 820px) {
  .oh-header-shell,
  #root > div > header {
    top: 10px !important;
    width: calc(100% - 20px) !important;
    border-radius: 16px;
  }

  .oh-product-row {
    grid-template-columns: 64px minmax(0, 1fr) 44px;
    min-height: 140px;
  }

  .oh-product-row__task,
  .oh-product-row__details {
    display: none;
  }

}

@media (max-width: 620px) {
  .oh-shell {
    width: min(calc(100% - 32px), 72rem);
  }

  #oh-trust-strip {
    padding-bottom: 24px;
  }

  #oh-trust-strip ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #oh-trust-strip li {
    padding: 17px 10px;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }

  #oh-trust-strip li:nth-child(2)::after {
    display: none;
  }

  #oh-trust-strip li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--oh-line-soft);
  }

  #oh-product-overview,
  #oh-product-focus,
  #oh-brand-principles {
    padding-block: 82px;
  }

  .oh-split-heading h2,
  .oh-section-heading h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .oh-product-row {
    grid-template-columns: 52px minmax(0, 1fr) 40px;
    gap: 12px;
  }

  .oh-product-row__icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .oh-product-row h3 {
    font-size: 1.25rem;
  }

  .oh-brand-principles__grid {
    grid-template-columns: 1fr;
  }

  .oh-brand-principle {
    min-height: auto;
  }

  .oh-focus-card {
    min-width: 0;
    min-height: 420px;
    padding: 28px 24px;
  }

  .oh-focus-grid { grid-template-columns: 1fr; }

  .oh-focus-card__heading { margin-top: 44px; }
  .oh-focus-card ul { margin-top: 28px; }

}

@media (prefers-reduced-motion: reduce) {
  #desktop-products-menu .priviot-glass-card,
  #desktop-products-menu .priviot-glass-card [role="menuitem"],
  #desktop-products-menu .priviot-glass-card .grid > div {
    transition: none !important;
  }

  details[data-oh-faq-animation="true"] > summary {
    transition: none;
  }

  .oh-product-row::before,
  .oh-product-row__icon,
  .oh-product-row h3,
  .oh-product-row p,
  .oh-product-row__arrow {
    transition: none;
  }
}

.priviot-wordmark-image {
  display: block;
  width: auto;
  height: 1.85rem;
  object-fit: contain;
}

footer .priviot-wordmark-image {
  height: 3.25rem;
}
