/* Dommy marketing draft — Stitch main-site-role-neutral.
   Tokens follow apps/dommy-web/src/lib/app.css. No Tailwind. */

@font-face {
  font-family: "Hanken Grotesk";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/hanken-grotesk-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --bg: #faf9fe;
  --paper: #ffffff;
  --surface-low: #f4f3f8;
  --surface: #eeedf2;
  --surface-high: #e8e7ec;
  --line: #e9e6ee;
  --outline: #7b7487;
  --outline-variant: #cbc3d8;
  --ink: #17151f;
  --ink-brand: #1e1240;
  --ink-soft: #494455;
  --muted: #5c5866;
  --violet: #7b43f6;
  --violet-deep: #6428e8;
  --lilac: #eee8ff;
  --good: #19734d;
  --radius: 18px;
  --radius-sm: 11px;
  --shadow: 0 12px 36px rgba(28, 22, 43, 0.065);
  --shadow-lg: 0 24px 60px rgba(30, 18, 64, 0.14);
  --gutter: 16px;
  --max: 1080px;
  --font: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --chrome: 6.75rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
  max-width: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--violet); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip {
  position: absolute;
  left: 12px;
  top: 8px;
  z-index: 80;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink-brand);
  font-weight: 600;
  transform: translateY(-200%);
}
.skip:focus { transform: none; text-decoration: none; }

.wrap {
  width: min(var(--max), 100% - 2 * var(--gutter));
  margin-inline: auto;
}

/* Chrome */
.chrome {
  position: sticky;
  top: 0;
  z-index: 100;
  isolation: isolate;
  background: var(--paper);
}

.banner {
  background: var(--violet);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.01em;
  padding: 8px var(--gutter);
}

.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--outline-variant);
  box-shadow: 0 1px 0 rgba(28, 22, 43, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-height: 44px;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand .mark {
  height: 32px;
  width: auto;
}
.brand .wordmark {
  display: none;
  height: 24px;
  width: auto;
}

.nav-links { display: none; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-cta .btn-login { display: none; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn.primary {
  background: var(--violet);
  color: #fff;
  box-shadow: 0 6px 16px rgba(123, 67, 246, 0.28);
}
.btn.primary:hover { background: var(--violet-deep); }
.btn.primary:focus-visible {
  outline-color: var(--ink-brand);
}
.btn.outline {
  background: var(--paper);
  color: var(--violet);
  border: 1px solid var(--violet);
}
.btn.outline:hover { background: var(--lilac); }
.btn.link {
  background: none;
  color: var(--violet);
  font-weight: 600;
  padding-inline: 10px;
}
.btn.link:hover { color: var(--violet-deep); }

/* Hero */
.hero {
  padding: 48px 0 56px;
  text-align: center;
}
.hero h1 {
  margin: 0 auto 20px;
  max-width: 22ch;
  color: var(--ink-brand);
  font-size: clamp(1.75rem, 6.4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-wrap: balance;
}
.hero .lead {
  margin: 0 auto 32px;
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
  text-wrap: pretty;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin: 0 auto 12px;
  max-width: 22rem;
}
.hero-note {
  margin: 16px 0 40px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
}
.hero-frame {
  margin: 0 auto;
  max-width: 52rem;
}

.device {
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--outline-variant) 55%, transparent);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  text-align: left;
}
.device-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-low);
}
.device-bar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.device-bar-brand img {
  height: 22px;
  width: auto;
  flex-shrink: 0;
}
.switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-brand);
}
.switcher span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 32px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--lilac);
  color: #503494;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.chip svg { width: 16px; height: 16px; flex-shrink: 0; }

.device-body { padding: 14px; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}
.stat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
}
.stat b {
  display: block;
  color: var(--ink-brand);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.stat span {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.preview-grid {
  display: grid;
  gap: 10px;
}
.preview-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}
.preview-card.accent {
  background: #f7f3ff;
  border-color: #e4d8ff;
}
.preview-kicker {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}
.preview-card h3 {
  margin: 0 0 6px;
  color: var(--ink-brand);
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.preview-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}
.preview-action {
  display: inline-flex;
  margin-top: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--violet);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.side-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.timer {
  font-size: clamp(1.55rem, 5vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink-brand);
  font-variant-numeric: tabular-nums;
}
.meter {
  height: 8px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--surface);
  overflow: hidden;
}
.meter > span {
  display: block;
  width: 75%;
  height: 100%;
  background: var(--violet);
  border-radius: 999px;
}

/* Band / features */
.band {
  background: var(--surface-low);
  padding: 48px 0;
  text-align: center;
}
.band-label {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.band h2 {
  margin: 0 0 12px;
  color: var(--ink-brand);
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.2;
}
.band-copy {
  max-width: 52rem;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  text-wrap: balance;
}
.band-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  color: var(--ink-soft);
}
.band-icons svg { width: 32px; height: 32px; }

.section,
.roles,
.privacy-section {
  scroll-margin-top: 7.5rem;
}

.section {
  padding: 56px 0;
}
.section-head {
  max-width: 36rem;
  margin: 0 auto 36px;
  text-align: center;
}
.section-head h2,
.privacy h2,
.role-card h3 {
  color: var(--ink-brand);
  letter-spacing: -0.02em;
}
.section-head h2,
.privacy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
}
.section-head p,
.privacy > p,
.role-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
}

.features {
  display: grid;
  gap: 16px;
}
.feature,
.role-card,
.discreet {
  background: var(--paper);
  border: 1px solid color-mix(in srgb, var(--outline-variant) 45%, transparent);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature { padding: 22px; }
.feature .icon-wrap,
.role-card .icon-wrap,
.discreet .icon-wrap {
  color: var(--violet);
  margin-bottom: 14px;
}
.feature .icon-wrap svg,
.role-card .icon-wrap svg { width: 32px; height: 32px; }
.feature h3 {
  margin: 0 0 8px;
  color: var(--ink-brand);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
}
.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
}

.roles {
  background: var(--surface-low);
  border-block: 1px solid color-mix(in srgb, var(--outline-variant) 35%, transparent);
}
.role-grid {
  display: grid;
  gap: 16px;
}
.role-card {
  padding: 28px 22px;
  text-align: center;
}
.role-card .icon-wrap {
  display: flex;
  justify-content: center;
}
.role-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  font-weight: 600;
}
.role-card p { font-size: 1rem; }

.privacy-section {
  background: var(--surface);
  border-bottom: 1px solid color-mix(in srgb, var(--outline-variant) 35%, transparent);
}
.privacy-grid {
  display: grid;
  gap: 28px;
}
.privacy-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.privacy-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}
.privacy-list .mark-icon {
  color: var(--good);
  margin-top: 2px;
}
.privacy-list .mark-icon svg { width: 24px; height: 24px; }
.privacy-list h3 {
  margin: 0 0 4px;
  color: var(--ink-brand);
  font-size: 1.15rem;
  font-weight: 600;
}
.privacy-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.discreet {
  padding: 28px 22px;
  text-align: center;
}
.discreet .icon-wrap {
  display: flex;
  justify-content: center;
  color: var(--violet);
}
.discreet .icon-wrap svg { width: 56px; height: 56px; }
.discreet h3 {
  margin: 0 0 8px;
  color: var(--ink-brand);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.discreet p {
  margin: 0 auto 18px;
  max-width: 28rem;
  color: var(--ink-soft);
}
.discreet-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  margin: 0 auto;
  padding: 8px 18px;
  border: 1px solid color-mix(in srgb, var(--outline-variant) 70%, transparent);
  border-radius: 999px;
  background: var(--surface-high);
  color: var(--ink-brand);
  font-size: 14px;
  font-weight: 500;
}
.discreet-chip svg { width: 20px; height: 20px; }

/* Footer */
.site-footer {
  background: var(--surface-low);
  padding: 48px 0 28px;
  border-top: 1px solid color-mix(in srgb, var(--outline-variant) 30%, transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 16px;
  margin-bottom: 36px;
}
.footer-brand .wordmark {
  height: 22px;
  width: auto;
  margin-bottom: 10px;
}
.footer-brand p,
.site-footer li,
.legal-line p {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}
.footer-brand p { margin: 0; }
.site-footer h3 {
  margin: 0 0 12px;
  color: var(--ink-brand);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}
.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
}
.site-footer a:hover { color: var(--violet); }

.legal-line {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid color-mix(in srgb, var(--outline-variant) 30%, transparent);
}
.legal-line p { margin: 0; }

@media (min-width: 640px) {
  :root { --gutter: 24px; }
  .brand .wordmark { display: block; }
  .hero { padding: 64px 0 72px; }
  .hero-actions {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }
  .device-body { padding: 18px; }
  .preview-grid { grid-template-columns: 1.4fr 1fr; align-items: start; }
  .side-cards { grid-template-columns: 1fr; }
}

@media (min-width: 880px) {
  :root { --gutter: 32px; --max: 1080px; }
  .header-cta .btn-login { display: inline-flex; }
  .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px 22px;
    flex: 1;
  }
  .nav-links a {
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 500;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .nav-links a:hover { color: var(--violet); text-decoration: none; }
  .hero h1 { max-width: 18ch; font-size: 48px; line-height: 56px; }
  .hero .lead { font-size: 18px; line-height: 28px; }
  .features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .role-grid,
  .privacy-grid { grid-template-columns: 1fr 1fr; align-items: center; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .legal-line {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .section { padding: 80px 0; }
  .band { padding: 48px 0; }
}

@media (min-width: 1080px) {
  :root { --max: 1120px; }
  .features { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .hero { padding: 80px 0 96px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Security page — Stitch main-site-security, scoped extras only */
.page-security .nav-links a[aria-current="page"] {
  color: var(--violet);
  font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--violet);
}

.page-security .hero.sec-hero {
  padding-bottom: 16px;
}
.page-security .hero h1 { max-width: 18ch; }
.page-security .hero .lead {
  margin-bottom: 0;
  max-width: 34rem;
}

.sec-main { padding: 24px 0 56px; }
.sec-grid {
  display: grid;
  gap: 36px;
  min-width: 0;
}
.sec-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 28px;
  min-width: 0;
}
.sec-points li {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px 16px;
  align-items: start;
}
.sec-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lilac);
  color: var(--violet);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.sec-icon svg { width: 24px; height: 24px; }
.sec-cols {
  display: grid;
  gap: 48px;
  min-width: 0;
}
.sec-group > h2 {
  margin: 0 0 20px;
  color: var(--ink-brand);
  font-size: clamp(1.3rem, 2.6vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.sec-points h3 {
  margin: 2px 0 6px;
  color: var(--ink-brand);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.tag-soon {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--lilac);
  color: var(--violet);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  vertical-align: middle;
}
.sec-points p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
}
.sec-roadmap {
  margin: 14px 0 0;
  max-width: 100%;
  flex-wrap: wrap;
  white-space: normal;
  text-align: left;
}

.sec-visual {
  margin: 0;
  min-width: 0;
  max-width: 26rem;
  width: 100%;
  justify-self: center;
}
.sec-visual figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.perm-card {
  background: var(--paper);
  border: 1px solid var(--outline-variant);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(30, 18, 64, 0.08);
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}
.perm-card-head {
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--outline-variant);
  background: var(--surface-low);
}
.perm-card-title {
  margin: 0 0 4px;
  color: var(--ink-brand);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.perm-card-sub {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.perm-card-body {
  display: grid;
  gap: 22px;
  padding: 22px 24px 24px;
}
.perm-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.perm-copy { min-width: 0; overflow-wrap: break-word; }
.perm-label {
  margin: 0;
  color: var(--ink-brand);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}
.perm-hint {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.perm-toggle {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 24px;
  border-radius: 999px;
  background: var(--surface-high);
}
.perm-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 1px 2px rgba(30, 18, 64, 0.18);
}
.perm-toggle.on { background: var(--violet); }
.perm-toggle.on::after {
  left: auto;
  right: 2px;
}

.sec-disclose {
  padding: 48px 0 64px;
  border-top: 1px solid var(--outline-variant);
  text-align: center;
}
.sec-disclose h2 {
  margin: 0 0 12px;
  color: var(--ink-brand);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.sec-disclose p {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}
.sec-disclose p + p { margin-top: 14px; }

@media (min-width: 880px) {
  .page-security .hero.sec-hero { padding: 72px 0 28px; }
  .sec-main { padding: 20px 0 80px; }
  .sec-grid {
    grid-template-columns: minmax(0, 1fr) minmax(20rem, 26rem);
    gap: 56px 72px;
    align-items: start;
  }
  .sec-points { gap: 36px; }
  .sec-visual {
    position: sticky;
    top: calc(var(--chrome) + 1.25rem);
    justify-self: stretch;
    max-width: none;
  }
  .sec-disclose { padding: 56px 0 88px; }
}

/* Scroll-driven security storyboard (Stitch b9b4fe66): ONE sticky stage on
   the right; the four frames occupy the same grid cell and cross-fade as the
   matching copy section crosses mid-viewport (tiny hash-pinned inline
   observer script on the page; no-JS fallback = frame 1 stays). */
.frame-stage { display: grid; }
.frame-slide {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.frame-slide.active { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .frame-slide { transition: none; transform: none; }
}

.enc-hint { letter-spacing: 2px; color: var(--outline-variant); }
.enc-lock {
  width: 34px; height: 34px; border-radius: 50%; flex-shrink: 0;
  background: var(--lilac); color: var(--violet);
  display: grid; place-items: center;
}
.enc-lock svg { width: 18px; height: 18px; }
.enc-badge, .clear-badge {
  margin: 4px 0 0; padding: 10px 12px; border-radius: 10px;
  background: var(--lilac); color: var(--violet);
  font-size: 12.5px; font-weight: 700; text-align: center;
}
.clear-badge {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #e7f6ec; color: #1c7c3d;
}
.clear-badge svg { width: 18px; height: 18px; flex-shrink: 0; }
.sess-pill {
  flex-shrink: 0; padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
}
.sess-pill.good { background: #e7f6ec; color: #1c7c3d; }
.sess-pill.off { background: var(--surface-high); color: var(--muted); }
.sess-revoked .perm-label { text-decoration: line-through; }
.sess-revoked .perm-copy { opacity: 0.6; }
.ghost-row { opacity: 0.45; }
.ghost-row .perm-label { color: var(--muted); }

/* homepage link into the full security page */
.sec-more { margin-top: 1.4rem; font-weight: 700; }

/* Meet Dommy — visual vignette (Stitch main-site-meet-dommy) */
.meet { text-align: center; }
.meet h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin: 0.4rem 0 0.6rem; }
.meet-lead { max-width: 46ch; margin: 0 auto; color: var(--muted, #625e69); }
.meet-stage { position: relative; max-width: 460px; margin: 2.2rem auto 1.8rem; min-height: 210px; }
.meet-card {
  background: #fff; border: 1px solid #e9e6ee; border-radius: 16px;
  box-shadow: 0 12px 36px rgba(28, 22, 43, 0.08); text-align: left; padding: 1rem 1.1rem;
}
.meet-summary { position: absolute; top: 0; right: 0; width: 40%; }
.meet-card-title { margin: 0 0 0.4rem; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #625e69; }
.meet-summary-line { margin: 0.25rem 0 0; font-size: 0.88rem; font-weight: 600; color: #1e1240; }
.meet-chat { position: relative; margin-top: 3.4rem; margin-right: auto; width: 58%; }
.meet-chat-head { display: flex; align-items: center; gap: 8px; font-weight: 700; color: #1e1240; font-size: 0.85rem; }
.meet-chat-head img { width: 22px; height: auto; }
.meet-bubble {
  margin: 0.7rem 0 0.85rem; padding: 0.75rem 0.9rem;
  background: #f3ebff; border-radius: 12px; color: #1e1240; font-size: 0.92rem;
}
.meet-actions { display: flex; gap: 0.5rem; justify-content: flex-end; }
.meet-btn { font-size: 0.8rem; font-weight: 700; padding: 0.4rem 0.9rem; border-radius: 999px; }
.meet-btn.ghost { border: 1px solid #e9e6ee; color: #1e1240; background: #fff; }
.meet-btn.solid { background: #7b43f6; color: #fff; }
.meet-chips { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }
.meet-chip {
  font-size: 0.78rem; color: #494455; background: #fff;
  border: 1px solid #e9e6ee; border-radius: 999px; padding: 0.4rem 0.85rem;
}
.meet-note { margin: 0.9rem 0 0; font-size: 0.8rem; color: #625e69; }
@media (max-width: 560px) {
  .meet-summary { position: static; width: auto; margin-bottom: 0.8rem; }
  .meet-chat { width: auto; margin-top: 0; }
  .meet-stage { min-height: 0; }
}

/* security tile grid (replaces the discreet aside) */
.sec-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; align-content: center; }
.sec-tile {
  display: flex; flex-direction: column; align-items: center; gap: 0.55rem;
  padding: 1.1rem 0.8rem; text-align: center; text-decoration: none;
  background: #fff; border: 1px solid #e9e6ee; border-radius: 14px;
  color: #1e1240; font-size: 0.82rem; font-weight: 700;
  box-shadow: 0 8px 24px rgba(28, 22, 43, 0.05);
}
.sec-tile:hover { border-color: #cbc3d8; text-decoration: none; }
.tile-icon {
  width: 42px; height: 42px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; background: #f3ebff; color: #7b43f6;
}
.tile-icon svg { width: 22px; height: 22px; }
@media (max-width: 880px) { .sec-tiles { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .sec-tiles { grid-template-columns: 1fr 1fr; } }
