@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;600;700;800&family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;700&family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,500,0,0&display=swap");

:root {
  color-scheme: light;
  --background: #fafafa;
  --foreground: #0f172a;
  --card: #ffffff;
  --muted: #f8fafc;
  --muted-foreground: #64748b;
  --border: #e5e7eb;
  --primary: #f4511e;
  --primary-foreground: #ffffff;
  --primary-soft: #fff0ea;
  --primary-strong: #ff6b00;
  --surface: #fff8f6;
  --surface-low: #fff1eb;
  --surface-high: #fee3d8;
  --inverse-surface: #0f172a;
  --inverse-on-surface: #ffffff;
  --secondary: #64748b;
  --status-trusted: #10b981;
  --status-untrusted: #f59e0b;
  --status-invalid: #ef4444;
  --status-none: #94a3b8;
  --green: #10b981;
  --green-bg: #ecfdf5;
  --green-border: #a7f3d0;
  --red: #ef4444;
  --red-bg: #fff1f2;
  --red-border: #fecaca;
  --font-heading: "Hanken Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-label: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(244, 81, 30, 0.35);
  outline-offset: 3px;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
}

.container {
  width: min(72rem, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(229, 231, 235, 0.75);
  background: rgba(250, 250, 250, 0.82);
  backdrop-filter: blur(12px);
}

.nav {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 42px;
  border-radius: 0;
  background: transparent;
  color: var(--primary);
  box-shadow: none;
}

.brand-mark img {
  width: 32px;
  height: 42px;
  object-fit: contain;
}

.brand span {
  color: var(--foreground);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 26px;
  min-width: 0;
}

.nav-links a {
  color: var(--muted-foreground);
  font-size: 0.84rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.16s ease, background 0.16s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links .install-link,
.nav-links .install-link:hover,
.nav-links .install-link.active {
  color: var(--primary-foreground);
}

.button-primary,
.button-secondary,
.install-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 10px;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.button-primary,
.install-link {
  background: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}

.button-primary:hover,
.install-link:hover {
  background: #df4316;
}

.button-secondary {
  border: 1px solid var(--border);
  background: var(--background);
  color: var(--foreground);
}

.button-secondary:hover {
  background: #f1f5f9;
}

.button-primary,
.button-secondary {
  padding: 12px 20px;
}

.install-link {
  flex: 0 0 auto;
  margin-left: 32px;
  padding: 10px 16px;
}

.install-link::before {
  content: "download";
  display: inline-flex;
  width: 18px;
  flex: 0 0 18px;
  align-items: center;
  justify-content: center;
  font-family: "Material Symbols Rounded";
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
}

.language-switch button {
  min-width: 30px;
  min-height: 26px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted-foreground);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  background: var(--foreground);
  color: #ffffff;
}

.icon {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.section,
.page-hero {
  padding: 96px 0;
}

.section-muted {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--muted);
}

.section-head {
  max-width: 48rem;
  margin-bottom: 56px;
}

.kicker,
.eyebrow {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 12px;
}

.page-title,
.section-title {
  max-width: 52rem;
  color: var(--foreground);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.page-title {
  margin-top: 12px;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
}

.section-title {
  margin-top: 12px;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
}

.lead,
.section-lead {
  max-width: 48rem;
  margin-top: 20px;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  padding: 24px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.card.soft {
  background: var(--muted);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
}

.card-number {
  float: right;
  color: rgba(100, 116, 139, 0.28);
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 1;
}

.card h2,
.card h3 {
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 800;
}

.card p,
.card li {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
}

.card p {
  margin-top: 10px;
}

.card ul,
.list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.list li {
  display: flex;
  gap: 10px;
}

.list li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--primary);
  flex: 0 0 auto;
}

.scope-card {
  border-radius: 16px;
  padding: 24px;
}

.scope-card.good {
  border: 1px solid var(--green-border);
  background: rgba(236, 253, 245, 0.55);
}

.scope-card.bad {
  border: 1px solid var(--red-border);
  background: rgba(255, 241, 242, 0.65);
}

.scope-title,
.scope-card li {
  display: flex;
  gap: 10px;
}

.scope-title {
  align-items: center;
  margin-bottom: 16px;
}

.scope-title h3 {
  font-size: 1rem;
  font-weight: 800;
}

.scope-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.scope-card li {
  color: rgba(15, 23, 42, 0.9);
  font-size: 0.875rem;
}

.check {
  color: var(--green);
}

.x {
  color: var(--red);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 800;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.proof-strip span,
.mini-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--primary-soft);
  padding: 7px 11px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
}

.status-table {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
}

.status-row {
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: 18px 20px;
}

.status-row + .status-row {
  border-top: 1px solid var(--border);
}

.status-row strong {
  color: var(--foreground);
  font-size: 0.9rem;
}

.status-row p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
}

.seo-page .page-hero {
  padding: 72px 0 64px;
}

.seo-page .page-title {
  max-width: 48rem;
  font-size: clamp(2rem, 4.4vw, 3.25rem);
}

.seo-page .lead {
  max-width: 50rem;
}

.seo-card {
  min-height: 100%;
}

.guide-steps {
  counter-reset: guide-step;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-steps li {
  counter-increment: guide-step;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  padding: 16px;
  color: var(--muted-foreground);
  font-size: 0.9rem;
  line-height: 1.6;
}

.guide-steps li::before {
  content: counter(guide-step);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
}

.pricing-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.pricing-card h2 {
  font-size: 1.2rem;
}

.pricing-price {
  color: var(--foreground);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.work-page .page-hero,
.work-page .section {
  padding: 80px 0;
}

.work-page .page-title {
  max-width: 48rem;
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.08;
}

.work-page .lead,
.work-page .section-lead {
  max-width: 46rem;
  font-size: 1rem;
  line-height: 1.65;
}

.work-page .section-head {
  margin-bottom: 40px;
}

.work-page .section-title {
  max-width: 50rem;
  font-size: clamp(1.65rem, 3.4vw, 2.25rem);
}

.material-symbol {
  font-family: "Material Symbols Rounded";
  font-weight: 500;
  line-height: 1;
  font-style: normal;
  font-size: 1.25rem;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.work-v2 {
  --background: #fff8f6;
  --foreground: #261812;
  --muted: #fff1eb;
  --muted-foreground: #5a4136;
  --border: #e2bfb0;
  --primary: #a04100;
  --primary-strong: #ff6b00;
  --secondary: #565e74;
  --surface-container: #ffeae1;
  --surface-high: #fee3d8;
  background: var(--background);
}

.work-v2 .container {
  width: min(1200px, calc(100% - 128px));
}

.work-v2-hero {
  padding: 128px 0;
}

.work-v2-hero-copy {
  max-width: 48rem;
}

.work-v2 h1,
.work-v2 h2,
.work-v2 h3 {
  color: var(--foreground);
}

.work-v2 h1 {
  font-size: clamp(2.35rem, 4.6vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.work-v2 h1 span {
  color: var(--primary);
  font-style: italic;
}

.work-v2-hero-copy p {
  margin-top: 24px;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
}

.work-v2-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.work-v2-badges > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  background: var(--muted);
  padding: 9px 14px;
  color: var(--foreground);
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.work-v2-badges .material-symbol {
  color: var(--primary);
}

.work-v2-step,
.work-v2-scan {
  padding: 0 0 128px;
}

.work-v2-step-grid {
  display: grid;
  grid-template-columns: 70px minmax(0, 5fr) minmax(0, 6fr);
  align-items: center;
  gap: 24px;
}

.work-v2-step-grid.reverse {
  grid-template-columns: minmax(0, 6fr) 70px minmax(0, 5fr);
}

.work-step-number {
  justify-self: center;
  color: rgba(142, 113, 100, 0.6);
  font-family: var(--font-label);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-orientation: mixed;
  writing-mode: vertical-rl;
}

.work-step-kicker {
  display: inline-flex;
  border-left: 2px solid currentColor;
  margin-bottom: 16px;
  padding: 5px 10px;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.work-step-kicker.primary {
  background: rgba(160, 65, 0, 0.1);
  color: var(--primary);
}

.work-step-kicker.secondary {
  background: rgba(86, 94, 116, 0.1);
  color: var(--secondary);
}

.work-step-kicker.tertiary {
  background: rgba(80, 95, 118, 0.1);
  color: #505f76;
}

.work-step-copy h2,
.work-v2-center-head h2,
.work-v2-architecture h2 {
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.work-step-copy > p,
.work-v2-center-head p {
  margin-top: 16px;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.7;
}

.work-check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.work-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-foreground);
  font-size: 0.96rem;
}

.work-check-list .material-symbol {
  color: var(--primary);
  font-size: 1.05rem;
}

.work-sign-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.work-panel-watermark {
  position: absolute;
  top: 12px;
  right: 12px;
  color: rgba(160, 65, 0, 0.1);
}

.work-panel-watermark .material-symbol {
  font-size: 6rem;
}

.work-sign-panel dl {
  display: grid;
  gap: 14px;
  margin: 0;
  color: var(--muted-foreground);
  font-family: var(--font-label);
  font-size: 0.75rem;
}

.work-sign-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(226, 191, 176, 0.45);
  padding-bottom: 10px;
}

.work-sign-panel dt {
  text-transform: uppercase;
}

.work-sign-panel dd {
  margin: 0;
  color: var(--primary);
}

.work-manifest-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  height: 220px;
  margin-top: 32px;
  border: 1px dashed #8e7164;
  background: var(--muted);
}

.work-manifest-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.work-verify-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mechanical-card {
  position: relative;
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.mechanical-card::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.mechanical-card .material-symbol {
  margin-bottom: 14px;
  color: var(--primary);
}

.mechanical-card strong,
.mechanical-card small {
  display: block;
}

.mechanical-card strong {
  color: var(--foreground);
  font-family: var(--font-label);
  font-size: 0.85rem;
}

.mechanical-card small {
  margin-top: 4px;
  color: rgba(90, 65, 54, 0.65);
  font-size: 0.78rem;
}

.work-quote {
  margin-top: 24px;
  border: 1px solid var(--border);
  background: #f8ddd2;
  padding: 16px;
  color: var(--muted-foreground);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-style: italic;
  line-height: 1.55;
}

.work-v2-center-head {
  max-width: 42rem;
  margin: 0 auto 64px;
  text-align: center;
}

.work-scan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.scan-status {
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.scan-status:hover {
  transform: translateY(-2px);
}

.scan-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.scan-status-head span:first-child {
  border-left: 4px solid currentColor;
  padding: 5px 10px;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scan-status h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.scan-status p {
  margin-top: 12px;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.65;
}

.scan-status.trusted {
  color: var(--status-trusted);
}

.scan-status.untrusted {
  color: var(--status-untrusted);
}

.scan-status.invalid {
  color: var(--status-invalid);
}

.scan-status.none {
  color: var(--status-none);
}

.scan-status.trusted:hover {
  border-color: var(--status-trusted);
}

.scan-status.untrusted:hover {
  border-color: var(--status-untrusted);
}

.scan-status.invalid:hover {
  border-color: var(--status-invalid);
}

.scan-status.none:hover {
  border-color: var(--status-none);
}

.scan-status.trusted .scan-status-head span:first-child {
  background: rgba(16, 185, 129, 0.1);
}

.scan-status.untrusted .scan-status-head span:first-child {
  background: rgba(245, 158, 11, 0.1);
}

.scan-status.invalid .scan-status-head span:first-child {
  background: rgba(239, 68, 68, 0.1);
}

.scan-status.none .scan-status-head span:first-child {
  background: rgba(148, 163, 184, 0.12);
}

.scan-meter {
  height: 4px;
  margin-top: 24px;
  background: currentColor;
  opacity: 0.22;
}

.scan-meter i {
  display: block;
  height: 100%;
  background: currentColor;
  opacity: 1;
}

.trusted .scan-meter i {
  width: 100%;
}

.untrusted .scan-meter i {
  width: 50%;
}

.invalid .scan-meter i {
  width: 25%;
}

.none .scan-meter i {
  width: 12%;
}

.work-v2-architecture {
  padding: 96px 0;
}

.work-v2-architecture-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: start;
  border-radius: 28px;
  background: var(--surface-container);
  padding: 72px;
  box-shadow: 0 24px 70px rgba(38, 24, 18, 0.1);
}

.architecture-list {
  display: grid;
  gap: 32px;
  margin-top: 32px;
}

.architecture-list article {
  display: flex;
  gap: 18px;
}

.architecture-list > article > .material-symbol {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #ffffff;
}

.architecture-list h3 {
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.architecture-list p {
  margin-top: 10px;
  color: var(--muted-foreground);
  line-height: 1.65;
}

.manifest-code-card {
  border: 1px solid #8e7164;
  border-left: 8px solid var(--primary);
  background: #efd5ca;
  padding: 32px;
}

.manifest-code-card pre {
  overflow-x: auto;
  margin: 0;
  color: var(--foreground);
  font-family: var(--font-label);
  font-size: 0.75rem;
  line-height: 1.9;
  white-space: pre;
}

.manifest-code-card pre span {
  color: var(--primary);
  font-weight: 800;
}

.work-card-grid {
  gap: 24px;
}

.work-card {
  border-radius: 12px;
  padding: 20px;
}

.work-card .card-icon,
.work-use-card .card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 10px;
}

.work-card h2,
.work-use-card h2 {
  font-size: 0.875rem;
  font-weight: 800;
}

.work-card p,
.work-use-card p {
  margin-top: 8px;
  font-size: 0.8125rem;
  line-height: 1.6;
}

.work-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.work-note {
  margin-top: 24px;
  color: var(--muted-foreground);
  font-size: 0.8125rem;
}

.work-use-card {
  display: flex;
  gap: 16px;
  border-radius: 12px;
  padding: 20px;
}

.work-use-card .card-icon {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.work-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.work-card-top .card-icon {
  margin-bottom: 0;
}

.work-tag {
  border-radius: 6px;
  background: var(--muted);
  color: var(--muted-foreground);
  padding: 4px 8px;
  font-size: 0.6875rem;
  font-weight: 800;
}

.security-trust-page {
  --security-surface: #fff8f6;
  --security-subtle: #fafafa;
  --security-border: #e2bfb0;
  --security-brown: #261812;
  --security-muted: #5a4136;
  --security-body-size: 0.95rem;
  --security-label-size: 0.72rem;
  background: var(--security-surface);
}

.security-trust-page p,
.security-trust-page li,
.security-trust-page blockquote {
  font-family: var(--font-body);
  font-size: var(--security-body-size);
  line-height: 1.7;
}

.security-trust-page strong {
  font-weight: 700;
}

.security-hero {
  position: relative;
  display: flex;
  align-items: center;
  width: min(72rem, calc(100% - 32px));
  min-height: 500px;
  margin: 64px auto 0;
  overflow: hidden;
  border: 1px solid rgba(226, 191, 176, 0.65);
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.security-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 107, 0, 0.1), transparent 34%),
    linear-gradient(135deg, #fff8f6 0%, #ffffff 56%, #fff1eb 100%);
}

.security-hero-inner {
  position: relative;
  z-index: 1;
}

.security-hero-copy {
  max-width: 44rem;
}

.security-chip {
  display: inline-flex;
  margin-bottom: 24px;
  border-radius: 4px;
  background: var(--primary-strong);
  padding: 6px 12px;
  color: #ffffff;
  font-family: var(--font-label);
  font-size: var(--security-label-size);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.security-trust-page .page-title {
  color: var(--security-brown);
  font-size: clamp(2.45rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.security-trust-page .lead {
  max-width: 42rem;
  margin-top: 20px;
  color: var(--security-muted);
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.7;
}

.security-bento-section {
  padding: 64px 0 80px;
}

.security-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.security-bento-card,
.security-limited-card {
  border: 1px solid rgba(226, 191, 176, 0.8);
  border-radius: 8px;
  background: #ffffff;
  padding: 40px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.05);
}

.security-bento-card h2,
.security-limited-card h2,
.security-section-head h2 {
  color: var(--security-brown);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.security-bento-card p,
.security-limited-card p {
  margin-top: 16px;
  color: var(--security-muted);
}

.security-bento-card-wide {
  grid-column: span 8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--security-subtle);
}

.security-file-card {
  grid-column: span 4;
}

.security-key-card,
.security-test-card {
  grid-column: span 6;
}

.security-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--primary-strong);
  color: #ffffff;
}

.security-icon.small {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  background: var(--primary-soft);
  color: var(--primary);
}

.security-card-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.security-card-heading h2 {
  margin: 0;
}

.security-check-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.security-check-list li {
  position: relative;
  padding-left: 36px;
  color: var(--security-muted);
}

.security-check-list li::before {
  content: "";
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--primary-soft);
}

.security-check-list li::after {
  content: "";
  position: absolute;
  top: calc(0.45em + 4px);
  left: 5px;
  width: 8px;
  height: 5px;
  border-bottom: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  transform: rotate(-45deg);
}

.security-logic-line {
  margin-top: 32px;
  border-top: 1px solid rgba(226, 191, 176, 0.85);
  padding-top: 24px;
  color: var(--security-brown);
  font-family: var(--font-label);
  font-size: var(--security-label-size);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-transform: uppercase;
}

.security-file-card blockquote {
  margin: 24px 0 0;
  border-left: 4px solid var(--primary-strong);
  border-radius: 6px;
  background: var(--security-surface);
  padding: 16px;
  color: var(--security-brown);
  font-weight: 600;
}

.security-warning {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
  border: 1px solid rgba(226, 191, 176, 0.75);
  border-radius: 8px;
  background: var(--surface-low);
  padding: 16px;
  color: var(--status-untrusted);
}

.security-warning p {
  margin: 0;
  color: var(--security-brown);
}

.security-status-area {
  grid-column: 1 / -1;
  padding-top: 48px;
}

.security-section-head {
  max-width: 42rem;
  margin: 0 auto 40px;
  text-align: center;
}

.security-section-head p {
  margin-top: 12px;
  color: var(--security-muted);
}

.security-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.security-status-card {
  border: 1px solid rgba(226, 191, 176, 0.55);
  border-radius: 10px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.security-status-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.08);
}

.security-status-card span {
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--font-label);
  font-size: var(--security-label-size);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.security-status-card.trusted {
  border-color: rgba(16, 185, 129, 0.34);
  background: #f8fffc;
}

.security-status-card.trusted span {
  border-color: rgba(16, 185, 129, 0.34);
  background: rgba(16, 185, 129, 0.1);
  color: var(--status-trusted);
}

.security-status-card.untrusted {
  border-color: rgba(245, 158, 11, 0.34);
  background: #fffdf8;
}

.security-status-card.untrusted span {
  border-color: rgba(245, 158, 11, 0.34);
  background: rgba(245, 158, 11, 0.1);
  color: var(--status-untrusted);
}

.security-status-card.invalid {
  border-color: rgba(239, 68, 68, 0.3);
  background: #fffafa;
}

.security-status-card.invalid span {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
  color: var(--status-invalid);
}

.security-status-card.none {
  border-color: rgba(148, 163, 184, 0.38);
  background: #fafbfd;
}

.security-status-card.none span {
  border-color: rgba(148, 163, 184, 0.38);
  background: rgba(148, 163, 184, 0.13);
  color: var(--status-none);
}

.security-status-card.trusted,
.security-status-card.untrusted,
.security-status-card.invalid,
.security-status-card.none {
  color: var(--security-brown);
}

.security-status-card p {
  margin-top: 16px;
  color: var(--security-muted);
}

.security-permissions-card {
  grid-column: span 7;
  background: var(--security-surface);
}

.security-limited-card {
  grid-column: span 5;
  display: flex;
  flex-direction: column;
  background: var(--inverse-surface);
  color: #ffffff;
}

.security-limited-card h2 {
  color: var(--primary-fixed);
}

.security-limited-card p {
  color: rgba(255, 255, 255, 0.72);
}

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

.security-permission-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(226, 191, 176, 0.75);
  border-radius: 6px;
  background: #ffffff;
  padding: 12px;
  color: var(--security-brown);
  font-family: var(--font-label);
  font-size: var(--security-label-size);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.security-permission-grid .icon {
  color: var(--primary);
}

.security-muted-line {
  margin-top: 16px;
  color: var(--security-muted);
  font-style: italic;
}

.security-policy-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 24px;
  color: var(--primary-fixed);
  font-family: var(--font-label);
  font-size: var(--security-label-size);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.limitations-v2 {
  --limitations-surface: #fff8f6;
  --limitations-subtle: #fafafa;
  --limitations-border: #e2bfb0;
  --limitations-text: #261812;
  --limitations-muted: #5a4136;
  background: var(--limitations-surface);
  color: var(--limitations-text);
}

.limitations-hero {
  padding: 96px 0;
}

.limitations-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 64px;
  align-items: center;
}

.limitations-kicker {
  margin-bottom: 18px;
  color: var(--primary);
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.limitations-v2 .page-title {
  max-width: 44rem;
  color: var(--limitations-text);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.limitations-v2 .lead {
  max-width: 36rem;
  margin-top: 24px;
  color: var(--limitations-muted);
  font-size: 1.125rem;
  line-height: 1.7;
}

.limitations-report-preview {
  position: relative;
  min-height: 400px;
  border: 1px solid var(--limitations-border);
  background:
    linear-gradient(135deg, rgba(255, 234, 225, 0.9), rgba(255, 248, 246, 0.62)),
    radial-gradient(circle at 20% 20%, rgba(255, 107, 0, 0.14), transparent 34%),
    linear-gradient(90deg, rgba(226, 191, 176, 0.26) 1px, transparent 1px),
    linear-gradient(180deg, rgba(226, 191, 176, 0.26) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px, 34px 34px;
  overflow: hidden;
}

.limitations-report-preview::before,
.limitations-report-preview::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(226, 191, 176, 0.6);
  opacity: 0.55;
}

.limitations-report-preview::before {
  inset: 48px 72px;
}

.limitations-report-preview::after {
  inset: 92px 28px 74px 118px;
}

.limitations-report-card {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(340px, calc(100% - 48px));
  transform: translate(-50%, -50%);
  border: 1px solid var(--limitations-border);
  background: var(--limitations-surface);
  padding: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.limitations-report-head,
.limitations-report-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.limitations-report-head {
  color: var(--limitations-muted);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.limitations-report-head .icon {
  color: var(--primary);
}

.limitations-meter {
  height: 8px;
  margin: 22px 0 18px;
  background: rgba(226, 191, 176, 0.72);
}

.limitations-meter span {
  display: block;
  width: 66%;
  height: 100%;
  background: var(--primary-strong);
}

.limitations-report-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.limitations-report-list div {
  border-bottom: 1px solid rgba(226, 191, 176, 0.45);
  padding: 8px 0;
}

.limitations-report-list div:last-child {
  border-bottom: 0;
}

.limitations-report-list dt,
.limitations-report-list dd {
  margin: 0;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.limitations-report-list dt {
  color: var(--limitations-text);
}

.limitations-report-list dd.ok {
  color: var(--status-trusted);
}

.limitations-report-list dd.warn {
  color: var(--status-untrusted);
}

.limitations-report-list dd.none {
  background: transparent;
  color: var(--status-none);
}

.limitations-compare-section {
  border-top: 1px solid rgba(226, 191, 176, 0.5);
  border-bottom: 1px solid rgba(226, 191, 176, 0.5);
  background: var(--limitations-subtle);
  padding: 96px 0;
}

.limitations-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 72px;
}

.limitations-scope-panel {
  min-width: 0;
}

.limitations-panel-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.limitations-panel-heading h2 {
  color: var(--limitations-text);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.limitations-panel-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-left: 3px solid currentColor;
}

.limitations-scope-panel.good .limitations-panel-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--status-trusted);
}

.limitations-scope-panel.bad .limitations-panel-icon {
  background: rgba(239, 68, 68, 0.1);
  color: var(--status-invalid);
}

.limitations-signal-list {
  display: grid;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.limitations-signal-list li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 16px;
  align-items: flex-start;
}

.limitations-scope-panel.good .limitations-signal-list > li > .icon {
  color: var(--status-trusted);
}

.limitations-scope-panel.bad .limitations-signal-list > li > .icon {
  color: var(--status-invalid);
}

.limitations-signal-list strong {
  display: block;
  color: var(--limitations-text);
  font-size: 1rem;
  font-weight: 800;
}

.limitations-signal-list span {
  display: block;
  margin-top: 4px;
  color: var(--limitations-muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.limitations-responsible-section {
  padding: 96px 0 72px;
}

.limitations-section-head {
  max-width: 46rem;
  margin-bottom: 48px;
}

.limitations-section-head h2 {
  color: var(--limitations-text);
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.limitations-responsible-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(260px, 0.9fr);
  gap: 24px;
}

.limitations-evidence-card,
.limitations-analysis-card {
  border: 1px solid var(--limitations-border);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
}

.limitations-evidence-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--limitations-surface);
  padding: 40px;
}

.limitations-evidence-card p {
  max-width: 47rem;
  color: var(--limitations-muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.limitations-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.limitations-analysis-card {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  background: var(--surface-high);
  padding: 32px;
  text-align: center;
}

.limitations-analysis-card .icon {
  width: 56px;
  height: 56px;
  color: var(--primary);
}

.limitations-analysis-card p {
  color: var(--limitations-text);
  font-family: var(--font-label);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.limitations-analysis-card span {
  color: var(--limitations-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.limitations-image-section {
  padding: 0 0 72px;
}

.limitations-architecture-image {
  min-height: 300px;
  border: 1px solid var(--limitations-border);
  background:
    linear-gradient(90deg, rgba(255, 248, 246, 0.16), rgba(255, 248, 246, 0.44)),
    url("https://lh3.googleusercontent.com/aida-public/AB6AXuC0tUeHd96H7yFgG3KzwOvgGpExZ1G4ljdJeNoKvHS_oMrAfnYIZlQ1xJbevRPppTcBZ_I3UcJhmE01yzpU0VdTU6A_AsF1vPoocVfgvyffpMO_fpqODiVvEQb-gOA8l_WVTeWoSKVPrxXLVAX4fMb5NsSa4XYL1C5zVsHezoLDPwjicSFQPqtXmDtI1yZ1-0FaUMGtzoznezLrZaDPHwvac05SIyh_fcISt-113zqgNemngpHvEDhCKCBgd5pAmU7rOHcGuz4C1dY") center / cover no-repeat;
}

.privacy-v2 {
  --privacy-surface: #fff8f6;
  --privacy-subtle: #fafafa;
  --privacy-border: #e2bfb0;
  --privacy-text: #261812;
  --privacy-muted: #5a4136;
  background: var(--privacy-surface);
  color: var(--privacy-text);
}

.privacy-v2-hero {
  padding: 64px 0 48px;
}

.privacy-v2-hero-panel {
  position: relative;
  min-height: 384px;
  overflow: hidden;
  border: 1px solid var(--privacy-border);
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.privacy-v2-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 248, 246, 0.98) 0%, rgba(255, 248, 246, 0.82) 48%, rgba(255, 248, 246, 0.18) 100%),
    url("https://lh3.googleusercontent.com/aida-public/AB6AXuDvshU_3JPotasVfAo02H3Eyeg-k32oOREv_y8ed-Z2ES-y9GUTSjhb3nh21oQNFkwBwHiYCzwQpCWOSVNyuWPlCqQ-b4-7HsEjjvdTNX8j3PE0bSgMRWerGwrQz6qJnoomkoTmbzWuY57zTAduvYtu5o2qCAhWVytvedtkwTNlLVQe5-vW0W8D8Nq47IOlIetWGdbLVIniGVU3qd0A855u20bI3q_0L0qSIg9S8GXKXVsWrUFuRYuNk2KYtZpgBh9YM5IttIGEE9I") center / cover no-repeat;
  opacity: 0.98;
}

.privacy-v2-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 43rem;
  padding: 72px 56px;
}

.privacy-v2-kicker {
  margin-bottom: 18px;
  color: var(--primary);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-v2 .page-title {
  max-width: 40rem;
  color: var(--privacy-text);
  font-size: clamp(2.45rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.privacy-v2 .lead {
  max-width: 36rem;
  margin-top: 22px;
  color: var(--privacy-muted);
  font-size: 1.125rem;
  line-height: 1.7;
}

.privacy-v2-content {
  padding: 32px 0 80px;
}

.privacy-v2-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.95fr);
  gap: 32px;
  align-items: start;
}

.privacy-v2-main-stack,
.privacy-v2-side-stack {
  display: grid;
  gap: 32px;
}

.privacy-v2-card,
.privacy-v2-side-card,
.privacy-v2-limited-card,
.privacy-v2-support-card {
  border: 1px solid var(--privacy-border);
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.055);
}

.privacy-v2-card {
  background: #ffffff;
  padding: 40px;
}

.privacy-v2-card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.privacy-v2-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
}

.privacy-v2-card h2,
.privacy-v2-side-card h2,
.privacy-v2-limited-card h2,
.privacy-v2-support-card h2 {
  color: var(--privacy-text);
  font-size: clamp(1.35rem, 2.3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.privacy-v2-card p,
.privacy-v2-side-card p,
.privacy-v2-support-card p {
  color: var(--privacy-muted);
  font-size: 0.96rem;
  line-height: 1.72;
}

.privacy-v2-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.privacy-v2-badges span {
  border-left: 3px solid var(--status-trusted);
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.1);
  padding: 7px 10px;
  color: var(--status-trusted);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.privacy-v2-permission-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-v2-permission-list li {
  position: relative;
  border: 1px solid var(--privacy-border);
  border-radius: 6px;
  background: var(--privacy-subtle);
  padding: 14px 14px 14px 42px;
  color: var(--privacy-text);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
}

.privacy-v2-permission-list li::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 16px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--primary-soft);
}

.privacy-v2-permission-list li::after {
  content: "";
  position: absolute;
  top: 19px;
  left: 20px;
  width: 6px;
  height: 4px;
  border-bottom: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  transform: rotate(-45deg);
}

.privacy-v2-side-card {
  background: var(--surface-low);
  padding: 32px;
}

.privacy-v2-side-card p {
  margin-top: 14px;
}

.privacy-v2-warning {
  display: inline-flex;
  margin-top: 22px;
  border: 1px solid var(--privacy-border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.55);
  padding: 10px 12px;
  color: var(--status-untrusted);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.privacy-v2-analytics {
  background: #ffffff;
}

.privacy-v2-never {
  margin-top: 24px;
  border-top: 1px solid var(--privacy-border);
  padding-top: 18px;
}

.privacy-v2-never p {
  margin: 0 0 10px;
  color: var(--primary);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.privacy-v2-never div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.privacy-v2-never span {
  border-radius: 4px;
  background: var(--privacy-subtle);
  padding: 6px 8px;
  color: var(--privacy-text);
  font-family: var(--font-label);
  font-size: 0.72rem;
}

.privacy-v2-demo-card {
  background: #ffffff;
}

.privacy-v2-limited-card {
  background: var(--inverse-surface);
  padding: 32px;
}

.privacy-v2-limited-card h2 {
  color: var(--primary-strong);
}

.privacy-v2-limited-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.75;
}

.privacy-v2-support {
  padding: 0 0 88px;
}

.privacy-v2-support-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--surface-high);
  padding: 40px;
}

.privacy-v2-support-card p {
  max-width: 43rem;
  margin-top: 10px;
  font-size: 1rem;
}

.privacy-v2-support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.legal-v2 {
  --legal-surface: #fff8f6;
  --legal-subtle: #fafafa;
  --legal-border: #e2bfb0;
  --legal-text: #261812;
  --legal-muted: #5a4136;
  background: var(--legal-surface);
  color: var(--legal-text);
}

.legal-v2-hero {
  position: relative;
  width: min(72rem, calc(100% - 32px));
  min-height: 320px;
  margin: 64px auto 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--inverse-surface);
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.legal-v2-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 23, 42, 0.74) 46%, rgba(15, 23, 42, 0.32) 100%),
    url("https://lh3.googleusercontent.com/aida-public/AB6AXuDkNNu4DUeNVqr0CEc1NHNU5bAj-cSz_h3UGFHilHgWjEQ44PvBoEERDGav7ysDI2ZmPvtv8hEi8BVOiGFCV5KwueFtJs01VyeuUaCGKr1dgUWwNMX5a2SbTosOxfFAGS0JLv5zMJSBuV3gpyEzs78f2ijjNRyvTikltC6MSFF0CQi15tu2RNRIM0kX3WAJWPb-MQZCpkks7iR_xm83Tllz0hjzgAyY6xVIRvh9CUL9vsLV637rsN1nssb5zfVQ7sjVAtPBXDZ9b4I") center / cover no-repeat;
  opacity: 0.92;
}

.legal-v2-hero-inner {
  position: relative;
  z-index: 1;
}

.legal-v2-verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  border-left: 4px solid var(--status-trusted);
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.12);
  padding: 7px 12px;
  color: var(--status-trusted);
  font-family: var(--font-label);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-v2 .page-title {
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.legal-v2 .lead {
  margin-top: 12px;
  color: rgba(255, 248, 246, 0.78);
  font-size: 1rem;
}

.legal-v2-content {
  padding: 64px 0 80px;
}

.legal-v2-stack {
  display: grid;
  gap: 56px;
  max-width: 58rem;
}

.legal-v2-section {
  scroll-margin-top: 96px;
}

.legal-v2-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.legal-v2-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--surface-low);
  color: var(--primary);
}

.legal-v2-section h2 {
  border-left: 4px solid var(--primary-strong);
  padding-left: 16px;
  color: var(--legal-text);
  font-size: clamp(1.35rem, 2.3vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.legal-v2-heading h2 {
  border-left: 0;
  padding-left: 0;
}

.legal-v2-heading-lined h2 {
  border-left: 4px solid var(--primary-strong);
  padding-left: 16px;
}

.legal-v2-section p,
.legal-v2-reference p {
  color: var(--legal-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-v2-section a,
.legal-v2-reference a {
  color: var(--primary);
  font-weight: 800;
}

.legal-v2-publisher-card {
  border: 1px solid var(--legal-border);
  border-radius: 12px;
  background: var(--legal-subtle);
  padding: 32px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.055);
}

.legal-v2-publisher-card dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin: 0;
}

.legal-v2-publisher-card dt,
.legal-v2-contact-line span {
  margin-bottom: 6px;
  color: var(--secondary);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legal-v2-publisher-card dd {
  margin: 0;
  color: var(--legal-text);
  font-weight: 800;
}

.legal-v2-contact-line {
  display: grid;
  gap: 6px;
  margin-top: 32px;
  border-top: 1px solid var(--legal-border);
  padding-top: 28px;
}

.legal-v2-contact-line a {
  width: fit-content;
  color: var(--primary);
  font-weight: 800;
}

.legal-v2-contact-section p {
  margin: 12px 0 18px;
}

.legal-v2-mail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  background: var(--primary);
  padding: 14px 20px;
  color: #ffffff !important;
  font-family: var(--font-label);
  font-size: 0.84rem;
  font-weight: 700;
}

.legal-v2-reference {
  border-top: 1px solid var(--legal-border);
  padding-top: 40px;
}

.contact-v2 {
  --contact-surface: #fff8f6;
  --contact-subtle: #fafafa;
  --contact-border: #e2bfb0;
  --contact-text: #261812;
  --contact-muted: #5a4136;
  background: #ffffff;
  color: var(--contact-text);
}

.contact-v2-hero {
  position: relative;
  width: min(72rem, calc(100% - 32px));
  min-height: 440px;
  display: flex;
  align-items: center;
  margin: 64px auto 0;
  overflow: hidden;
  border: 1px solid rgba(226, 191, 176, 0.65);
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.contact-v2-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.82) 50%, rgba(255, 255, 255, 0.18) 100%),
    url("https://lh3.googleusercontent.com/aida-public/AB6AXuAQfhBr08vNHosy6OMBvApMEQxcSDVY8F1LkH-k1sjLs54lRMkMJ9tuPt9CZrMzCAZZmW_TQzJ_zKtE6ldjbpue7DTBlpBEF3uLP_tAZ3AlimppaE2mlEEsCpsu_h6iTXUaJRYo5306dBEHIMgQwA2ZcTae8eKgdlfIY72rYWNtrixArTim4aykPxFOGmDJGZ8St7M7Ok2vCLHnb1sRYVnSacYK48EUortVAdFLfa-WqkUhnt-sNx70nWPr3kgEURV0Uyb7YOI3Ayc") center / cover no-repeat;
}

.contact-v2-hero-inner {
  position: relative;
  z-index: 1;
}

.contact-v2-hero-copy {
  max-width: 42rem;
}

.contact-v2-kicker {
  margin-bottom: 18px;
  color: var(--primary);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-v2 .page-title {
  max-width: 44rem;
  color: var(--contact-text);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.contact-v2 .lead {
  max-width: 38rem;
  margin-top: 22px;
  color: var(--contact-muted);
  font-size: 1.125rem;
  line-height: 1.7;
}

.contact-v2-section {
  padding: 72px 0 40px;
}

.contact-v2-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
}

.contact-v2-card,
.contact-v2-channel-card {
  border: 1px solid var(--contact-border);
  border-radius: 12px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.055);
}

.contact-v2-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}

.contact-v2-support-card {
  grid-column: span 7;
  background: var(--contact-subtle);
}

.contact-v2-enterprise-card {
  position: relative;
  grid-column: span 5;
  overflow: hidden;
  background: var(--inverse-surface);
  color: #ffffff;
}

.contact-v2-card-watermark {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255, 255, 255, 0.08);
}

.contact-v2-card-watermark .icon {
  width: 110px;
  height: 110px;
}

.contact-v2-card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.contact-v2-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
}

.contact-v2-icon.dark {
  background: rgba(255, 107, 0, 0.16);
  color: var(--primary-fixed);
}

.contact-v2-card h2,
.contact-v2-channel-card h2 {
  color: var(--contact-text);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.contact-v2-enterprise-card h2 {
  color: #ffffff;
}

.contact-v2-card p,
.contact-v2-channel-card p {
  color: var(--contact-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.contact-v2-enterprise-card p,
.contact-v2-enterprise-card li {
  color: rgba(255, 255, 255, 0.92);
}

.contact-v2-check-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 36px;
  padding: 0;
  list-style: none;
}

.contact-v2-check-list li {
  position: relative;
  padding-left: 34px;
  color: var(--contact-text);
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-v2-enterprise-card .contact-v2-check-list li {
  color: rgba(255, 255, 255, 0.92);
}

.contact-v2-check-list li::before {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.1);
}

.contact-v2-check-list li::after {
  content: "";
  position: absolute;
  top: calc(0.3em + 4px);
  left: 5px;
  width: 8px;
  height: 5px;
  border-bottom: 2px solid var(--status-trusted);
  border-left: 2px solid var(--status-trusted);
  transform: rotate(-45deg);
}

.contact-v2-enterprise-card .contact-v2-check-list li::before {
  background: rgba(255, 255, 255, 0.16);
}

.contact-v2-enterprise-card .contact-v2-check-list li::after {
  border-color: #ffffff;
}

.contact-v2-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
}

.contact-v2-inline-link:hover,
.contact-v2-dark-link:hover {
  text-decoration: underline;
}

.contact-v2-enterprise-actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.contact-v2-enterprise-actions .button {
  width: 100%;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-v2-dark-link {
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.contact-v2-channel-card {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 8px;
  border-left: 4px solid var(--primary-strong);
  background: rgba(255, 255, 255, 0.72);
  padding: 36px;
  backdrop-filter: blur(10px);
}

.contact-v2-channel-card p {
  max-width: 34rem;
  margin-top: 8px;
}

.contact-v2-channel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-v2-channel-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  padding: 12px 16px;
  color: var(--contact-text);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.contact-v2-channel-actions a:hover {
  border-color: var(--primary);
  background: var(--surface-low);
  color: var(--primary);
}

.contact-v2-divider {
  padding: 24px 0 64px;
}

.contact-v2-divider span {
  display: block;
  height: 1px;
  background: var(--contact-border);
}

.install-page .install-hero {
  padding: 64px 0 56px;
}

.install-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.55fr);
  gap: 48px;
  align-items: center;
}

.install-trust-line {
  display: inline-flex;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--primary-soft);
  padding: 8px 12px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.install-proof-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  padding: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.install-status-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.install-proof-card > p:last-child {
  margin-top: 16px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
}

.install-demo-section {
  padding: 72px 0;
}

.install-demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.install-demo-grid h2 {
  margin-top: 10px;
  color: var(--foreground);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.install-demo-grid p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted-foreground);
  font-size: 0.98rem;
  line-height: 1.65;
}

.install-embed-frame {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #020617;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

.install-embed-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.install-screenshots {
  padding: 72px 0;
}

.install-shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.install-shot-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  padding: 18px;
}

.install-shot-preview {
  display: grid;
  gap: 10px;
  min-height: 150px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 18px;
}

.install-shot-preview strong {
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 800;
}

.install-shot-preview p,
.install-shot-card p,
.install-limit-card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.install-shot-card h3,
.install-limit-card h2 {
  margin-top: 16px;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 800;
}

.install-shot-card > p {
  margin-top: 8px;
}

.install-limit-card {
  border-radius: 12px;
}

.install-limit-card p:not(.eyebrow) {
  margin-top: 10px;
}

.install-final-cta {
  padding: 72px 0;
}

.install-v2 {
  --install-bg: #fff8f6;
  --install-surface-low: #fff1eb;
  --install-surface: #ffffff;
  --install-surface-high: #fee3d8;
  --install-surface-highest: #f8ddd2;
  --install-on: #261812;
  --install-muted: #5a4136;
  --install-outline: #e2bfb0;
  --install-primary: #a04100;
  --install-primary-container: #ff6b00;
  background: var(--install-bg);
  color: var(--install-on);
}

.install-v2 .container {
  width: min(1200px, calc(100% - 48px));
}

.install-v2 .material-symbol {
  font-family: "Material Symbols Rounded";
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.install-v2-hero {
  padding: 64px 0;
}

.install-v2-hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 48px;
}

.install-v2-hero-copy {
  display: grid;
  gap: 32px;
}

.install-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  background: var(--install-surface-low);
  padding: 5px 12px;
  color: var(--install-primary);
}

.install-v2-badge span:last-child {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.install-v2-hero h1 {
  max-width: 620px;
  color: var(--install-on);
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.install-v2-hero-copy > p {
  max-width: 640px;
  color: var(--install-muted);
  font-size: 1.125rem;
  line-height: 1.6;
}

.install-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 8px;
}

.install-v2-actions .button-primary,
.install-v2-actions .button-secondary,
.install-v2-demo-card .button-primary,
.install-v2-enterprise-card .button-secondary,
.install-v2-final .button-primary,
.install-v2-final .button-secondary {
  border-radius: 8px;
  padding: 16px 32px;
  font-weight: 800;
}

.install-v2-actions .button-primary,
.install-v2-demo-card .button-primary,
.install-v2-final .button-primary {
  background: var(--install-primary-container);
  color: #ffffff;
}

.install-v2-actions .button-secondary,
.install-v2-final .button-secondary {
  border: 2px solid var(--install-on);
  background: transparent;
  color: var(--install-on);
}

.install-v2-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(90, 65, 54, 0.72);
  font-family: var(--font-label);
  font-size: 0.875rem;
  line-height: 1.4;
}

.install-v2-trust-line span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.install-v2-trust-line .material-symbol {
  font-size: 1rem;
}

.install-v2-preview {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--install-outline);
  border-radius: 12px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 107, 0, 0.16), transparent 14rem),
    #ffffff;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.install-v2-preview::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255, 107, 0, 0.08) 42% 43%, transparent 43% 100%),
    linear-gradient(65deg, transparent 0 52%, rgba(160, 65, 0, 0.08) 52% 53%, transparent 53% 100%);
}

.install-v2-preview-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  border: 1px solid var(--install-outline);
  border-radius: 8px;
  background: var(--install-surface-low);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.install-v2-preview-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--install-outline);
  padding-bottom: 16px;
}

.install-v2-preview-head span {
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.install-v2-preview-head div {
  display: flex;
  gap: 4px;
}

.install-v2-preview-head i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--status-none);
  opacity: 0.3;
}

.install-v2-preview-head i:first-child {
  background: var(--red);
}

.install-v2-preview-head i:nth-child(2) {
  background: var(--status-untrusted);
}

.install-v2-preview-head i:nth-child(3) {
  background: var(--status-trusted);
}

.install-v2-preview-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--install-outline);
  border-radius: 4px;
  background: #ffffff;
  padding: 16px;
}

.install-v2-preview-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: var(--install-surface-highest);
  color: var(--install-primary);
}

.install-v2-preview-row div {
  display: grid;
  gap: 8px;
}

.install-v2-preview-row b {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: var(--install-surface-highest);
}

.install-v2-preview-row b:first-child {
  width: 96px;
  background: var(--install-surface-highest);
}

.install-v2-preview-row b:last-child {
  width: min(190px, 100%);
  background: var(--install-surface-high);
}

.install-v2-status-section,
.install-v2-honesty {
  border-block: 1px solid var(--install-outline);
  background: var(--install-surface-low);
  padding: 64px 0;
}

.install-v2-section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.install-v2-section-head h2,
.install-v2-centered-head h2,
.install-v2-demo-card h2,
.install-v2-honesty h2,
.install-v2-enterprise-card h2,
.install-v2-final h2 {
  color: var(--install-on);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.install-v2-section-head p,
.install-v2-centered-head p {
  margin-top: 16px;
  color: var(--install-muted);
  font-size: 1rem;
  line-height: 1.5;
}

.install-v2-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.install-v2-status-grid article,
.install-v2-phase-grid article > div,
.install-v2-honesty article {
  border: 1px solid var(--install-outline);
  border-radius: 8px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.install-v2-status-grid article:hover,
.install-v2-phase-grid article > div:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.install-v2-status {
  display: inline-flex;
  border-left: 2px solid currentColor;
  border-radius: 2px;
  padding: 4px 10px;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
  text-transform: uppercase;
}

.install-v2-status.trusted {
  background: rgba(16, 185, 129, 0.1);
  color: var(--status-trusted);
}

.install-v2-status.untrusted {
  background: rgba(245, 158, 11, 0.1);
  color: var(--status-untrusted);
}

.install-v2-status.invalid {
  background: rgba(239, 68, 68, 0.1);
  color: var(--status-invalid);
}

.install-v2-status.none {
  background: rgba(148, 163, 184, 0.1);
  color: var(--status-none);
}

.install-v2-status-grid h3 {
  margin-top: 16px;
  color: var(--install-on);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.install-v2-status-grid p {
  margin-top: 8px;
  color: rgba(90, 65, 54, 0.82);
  font-size: 1rem;
  line-height: 1.5;
}

.install-v2-demo-section,
.install-v2-workflow,
.install-v2-enterprise,
.install-v2-final {
  padding: 64px 0;
}

.install-v2-demo-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(280px, 2fr);
  gap: 48px;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: #261812;
  padding: 48px;
  color: #ffffff;
}

.install-v2-demo-card::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 10% 20%, rgba(255, 107, 0, 0.28), transparent 22rem);
}

.install-v2-demo-card > * {
  position: relative;
  z-index: 1;
}

.install-v2-demo-card h2 {
  color: #ffffff;
}

.install-v2-demo-card p {
  margin: 16px 0 32px;
  color: rgba(248, 221, 210, 0.88);
  font-size: 1.125rem;
  line-height: 1.6;
}

.install-v2-video {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.install-v2-video iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.install-v2-centered-head {
  max-width: 680px;
  margin: 0 auto 64px;
  text-align: center;
}

.install-v2-phase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}

.install-v2-phase-grid article > p {
  margin: 0 0 8px;
  color: rgba(160, 65, 0, 0.5);
  font-family: var(--font-label);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.install-v2-phase-grid .material-symbol {
  margin-bottom: 16px;
  color: var(--install-primary);
  font-size: 40px;
}

.install-v2-phase-grid h3 {
  color: var(--install-on);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.install-v2-phase-grid div p {
  margin-top: 16px;
  color: rgba(90, 65, 54, 0.82);
  font-size: 1rem;
  line-height: 1.5;
}

.install-v2-honesty-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.install-v2-honesty article {
  border-left: 4px solid var(--install-primary);
  background: #fafafa;
  padding: 40px;
}

.install-v2-honesty article:nth-child(2) {
  border-left-color: var(--status-untrusted);
}

.install-v2-honesty h2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.install-v2-honesty h2 .material-symbol {
  color: var(--install-primary);
}

.install-v2-honesty article:nth-child(2) h2 .material-symbol {
  color: var(--status-untrusted);
}

.install-v2-honesty p {
  margin-top: 16px;
  color: var(--install-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.install-v2-honesty p:first-of-type {
  font-size: 1.125rem;
}

.install-v2-enterprise-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid var(--install-outline);
  border-radius: 12px;
  background: var(--install-surface-high);
  padding: 48px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
}

.install-v2-enterprise-card p {
  max-width: 720px;
  margin-top: 16px;
  color: rgba(38, 24, 18, 0.8);
  font-size: 1.125rem;
  line-height: 1.6;
}

.install-v2-enterprise-card .button-secondary {
  flex: 0 0 auto;
  border: 2px solid var(--install-primary);
  background: transparent;
  color: var(--install-primary);
}

.install-v2-final {
  text-align: center;
}

.install-v2-final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}

main.install-v2 .install-v2-hero-grid,
main.install-v2 .install-v2-status-grid,
main.install-v2 .install-v2-demo-card,
main.install-v2 .install-v2-phase-grid,
main.install-v2 .install-v2-honesty-grid {
  display: grid;
}

main.install-v2 .install-v2-preview,
main.install-v2 .install-v2-status-grid article,
main.install-v2 .install-v2-phase-grid article > div,
main.install-v2 .install-v2-honesty article,
main.install-v2 .install-v2-enterprise-card {
  border: 1px solid var(--install-outline);
}

.demo-page .demo-hero {
  padding: 64px 0 48px;
}

.demo-page .page-title {
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.demo-page .lead {
  font-size: 1rem;
}

.demo-step-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 56px;
}

.demo-step {
  border-radius: 12px;
  padding: 20px;
}

.demo-step .card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  border-radius: 10px;
}

.demo-step p {
  margin: 0;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
}

.demo-step h2 {
  margin-top: 4px;
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.25;
}

.demo-step span {
  display: block;
  margin-top: 8px;
  color: var(--muted-foreground);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.demo-table-wrap {
  margin-top: 40px;
  overflow-x: auto;
}

.demo-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  background: var(--card);
  font-size: 0.875rem;
}

.demo-table th,
.demo-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.demo-table th {
  background: var(--muted);
  color: var(--foreground);
  font-weight: 800;
}

.demo-table td {
  color: var(--muted-foreground);
}

.demo-table td:first-child {
  color: var(--foreground);
}

.demo-table tbody tr:last-child td {
  border-bottom: 0;
}

.demo-samples {
  margin-top: 44px;
}

.demo-samples-head {
  max-width: 720px;
}

.demo-samples-head h2 {
  margin-top: 8px;
  color: var(--foreground);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.demo-samples-head p:last-child {
  margin-top: 12px;
  color: var(--muted-foreground);
  font-size: 0.98rem;
  line-height: 1.65;
}

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

.demo-sample-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.demo-sample-card figure {
  margin: 0;
  border-bottom: 1px solid var(--border);
  background: var(--muted);
}

.demo-sample-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.demo-sample-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--foreground);
  object-fit: cover;
}

.demo-sample-copy {
  padding: 18px;
}

.demo-sample-copy h3 {
  margin-top: 12px;
  color: var(--foreground);
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.25;
}

.demo-sample-copy p {
  margin-top: 8px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.demo-invalid-note {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 18px;
  border: 1px dashed rgba(239, 68, 68, 0.38);
  border-radius: 14px;
  background: rgba(239, 68, 68, 0.04);
  padding: 18px;
}

.demo-invalid-note h3 {
  margin: 0;
  color: var(--foreground);
  font-size: 0.98rem;
  font-weight: 800;
}

.demo-invalid-note p {
  margin-top: 6px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.demo-doc-link {
  padding-bottom: 64px;
}

.faq-v2 {
  background: #fff8f6;
}

.faq-v2-container {
  width: min(860px, calc(100% - 32px));
}

.faq-v2-hero {
  padding: 96px 0 56px;
  text-align: center;
}

.faq-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(226, 191, 176, 0.45);
  border-radius: 999px;
  background: #ffeae1;
  padding: 7px 12px;
  color: #a04100;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.faq-v2-badge .material-symbol {
  font-size: 1rem;
}

.faq-v2 .page-title {
  max-width: 760px;
  margin: 18px auto 0;
  color: #261812;
  font-size: clamp(2.35rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.faq-v2 .lead {
  max-width: 620px;
  margin: 18px auto 0;
  color: #5a4136;
  font-size: 1.05rem;
  line-height: 1.7;
}

.faq-v2-section {
  padding: 0 0 96px;
}

.faq-accordion {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid #e2bfb0;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.faq-item[open] {
  border-color: rgba(255, 107, 0, 0.38);
  background: #fffdfb;
  box-shadow: 0 14px 32px rgba(255, 107, 0, 0.1);
}

.faq-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: #261812;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:focus-visible {
  outline: 3px solid rgba(255, 107, 0, 0.35);
  outline-offset: 4px;
}

.faq-item summary .material-symbol {
  flex: 0 0 auto;
  color: #5a4136;
  transition: transform 0.2s ease;
}

.faq-item[open] summary .material-symbol {
  transform: rotate(180deg);
}

.faq-item p {
  margin: -4px 24px 22px;
  color: #5a4136;
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-support-card {
  position: relative;
  overflow: hidden;
  margin-top: 72px;
  border: 1px solid rgba(226, 191, 176, 0.55);
  border-radius: 12px;
  background: #ffffff;
  padding: 48px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.faq-support-mark {
  position: absolute;
  top: -16px;
  right: -6px;
  color: rgba(160, 65, 0, 0.055);
  font-size: 8rem;
  pointer-events: none;
}

.faq-support-card h2 {
  color: #261812;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.faq-support-card p {
  max-width: 520px;
  margin: 14px auto 0;
  color: #5a4136;
  font-size: 0.98rem;
  line-height: 1.65;
}

.faq-support-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.pricing-v2 {
  background: #fff8f6;
}

.pricing-v2-hero {
  padding: 96px 0 56px;
  text-align: center;
}

.pricing-v2-hero .page-title {
  max-width: 860px;
  margin: 10px auto 0;
  color: #261812;
  font-size: clamp(2.35rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.pricing-v2-hero .lead {
  max-width: 700px;
  margin: 18px auto 0;
  color: #5a4136;
  font-size: 1.05rem;
  line-height: 1.7;
}

.pricing-v2-section {
  padding: 32px 0 96px;
}

.pricing-v2-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 920px;
}

.pricing-v2-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid #e2bfb0;
  border-radius: 12px;
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.pricing-v2-card:hover {
  border-color: #ff6b00;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}

.pricing-v2-card.featured {
  border-color: rgba(255, 107, 0, 0.65);
  background: linear-gradient(180deg, #ffffff 0%, #fff8f6 100%);
}

.pricing-v2-tag {
  align-self: flex-start;
  border-radius: 4px;
  background: #fff1eb;
  padding: 5px 8px;
  color: #5a4136;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-v2-card h2 {
  margin-top: 20px;
  color: #261812;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
}

.pricing-v2-price {
  margin-top: 8px;
  color: #a04100;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.1;
}

.pricing-v2-summary {
  margin-top: 12px;
  color: #5a4136;
  font-size: 0.95rem;
  line-height: 1.65;
}

.pricing-v2-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.pricing-v2-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #261812;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pricing-v2-list .material-symbol {
  color: #10b981;
  font-size: 1.15rem;
}

.pricing-v2-card .button-primary,
.pricing-v2-card .button-secondary {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.pricing-v2-compare-section {
  padding-top: 0;
}

.pricing-v2-section-title {
  margin-bottom: 32px;
  color: #261812;
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

.pricing-v2-table-wrap {
  overflow-x: auto;
  border: 1px solid #e2bfb0;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.pricing-v2-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.pricing-v2-table th,
.pricing-v2-table td {
  border-bottom: 1px solid rgba(226, 191, 176, 0.55);
  padding: 20px 24px;
  text-align: left;
  vertical-align: middle;
}

.pricing-v2-table th {
  background: #fafafa;
  color: #261812;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
}

.pricing-v2-table th:not(:first-child),
.pricing-v2-table td:not(:first-child) {
  width: 150px;
  text-align: center;
}

.pricing-v2-table tbody tr:nth-child(even) {
  background: #fafafa;
}

.pricing-v2-table tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-v2-table strong,
.pricing-v2-table span {
  display: block;
}

.pricing-v2-table strong {
  color: #261812;
  font-weight: 800;
}

.pricing-v2-table td > span:not(.material-symbol) {
  margin-top: 4px;
  color: #5a4136;
  font-size: 0.82rem;
  line-height: 1.45;
}

.pricing-v2-table .material-symbol {
  font-size: 1.35rem;
}

.pricing-v2-table .ok {
  color: #10b981;
}

.pricing-v2-table .muted {
  color: #94a3b8;
}

.pricing-v2-cta {
  background: #0f172a;
  padding: 86px 0;
  text-align: center;
}

.pricing-v2-cta h2 {
  color: #ffffff;
  font-size: clamp(1.85rem, 3.4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.15;
}

.pricing-v2-cta p {
  max-width: 680px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.pricing-v2-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.docs-v2 {
  background: #fff8f6;
  color: #261812;
}

.docs-v2-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) 180px;
  gap: 40px;
  align-items: start;
  padding-top: 48px;
  padding-bottom: 96px;
}

.docs-sidebar,
.docs-toc {
  position: sticky;
  top: 104px;
}

.docs-sidebar {
  border-right: 1px solid rgba(226, 191, 176, 0.55);
  padding-right: 22px;
}

.docs-sidebar-block + .docs-sidebar-block {
  margin-top: 34px;
}

.docs-sidebar-block p,
.docs-toc p {
  margin-bottom: 12px;
  color: #8e7164;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.docs-sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  padding: 9px 10px;
  color: #5a4136;
  font-size: 0.9rem;
  font-weight: 600;
}

.docs-sidebar a:hover,
.docs-sidebar a.active {
  background: #ffeae1;
  color: #a04100;
}

.docs-sidebar .material-symbol {
  font-size: 1.05rem;
}

.docs-article {
  min-width: 0;
}

.docs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: #5a4136;
  font-family: var(--font-label);
  font-size: 0.76rem;
}

.docs-breadcrumb strong {
  color: #a04100;
}

.docs-breadcrumb .material-symbol {
  font-size: 0.95rem;
}

.docs-v2-hero {
  max-width: 820px;
  margin-bottom: 36px;
}

.docs-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(226, 191, 176, 0.45);
  border-radius: 999px;
  background: #ffeae1;
  padding: 7px 12px;
  color: #a04100;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.docs-badge .material-symbol {
  font-size: 1rem;
}

.docs-v2-hero h1 {
  margin-top: 18px;
  color: #261812;
  font-size: clamp(2.35rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.docs-v2-hero p {
  margin-top: 18px;
  color: #5a4136;
  font-size: 1.08rem;
  line-height: 1.7;
}

.docs-section {
  margin-top: 72px;
}

.docs-section-head {
  margin-bottom: 28px;
}

.docs-section-head h2 {
  margin-top: 8px;
  color: #261812;
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
}

.docs-workflow-grid {
  display: grid;
  gap: 18px;
}

.docs-workflow-card {
  position: relative;
  border: 1px solid #e2bfb0;
  border-left: 4px solid #a04100;
  border-radius: 10px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
}

.docs-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(90, 65, 54, 0.22);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.docs-workflow-card h3 {
  max-width: calc(100% - 52px);
  color: #261812;
  font-size: 1.2rem;
  font-weight: 800;
}

.docs-workflow-card p {
  margin-top: 10px;
  color: #5a4136;
  font-size: 0.95rem;
  line-height: 1.65;
}

.docs-workflow-card ol {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: #5a4136;
  font-size: 0.92rem;
  line-height: 1.55;
}

.docs-workflow-card li::marker {
  color: #a04100;
  font-weight: 800;
}

.docs-callout {
  border-radius: 10px;
  padding: 22px 24px;
}

.docs-callout div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.docs-callout p {
  margin-top: 10px;
  color: #261812;
  font-size: 0.95rem;
  line-height: 1.65;
}

.docs-callout.success {
  border-left: 4px solid #10b981;
  background: rgba(16, 185, 129, 0.06);
}

.docs-callout.success div {
  color: #059669;
}

.docs-callout.warning {
  border-left: 4px solid #ba1a1a;
  background: rgba(186, 26, 26, 0.06);
}

.docs-callout.warning div {
  color: #ba1a1a;
}

.docs-status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.docs-status-grid article {
  border: 1px solid #e2bfb0;
  border-left: 4px solid currentColor;
  border-radius: 10px;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.045);
}

.docs-status-grid strong {
  display: block;
  color: #261812;
  font-weight: 800;
}

.docs-status-grid p {
  margin-top: 8px;
  color: #5a4136;
  font-size: 0.92rem;
  line-height: 1.6;
}

.docs-status-grid .trusted {
  color: #10b981;
}

.docs-status-grid .untrusted {
  color: #f59e0b;
}

.docs-status-grid .invalid {
  color: #ef4444;
}

.docs-status-grid .none {
  color: #94a3b8;
}

.docs-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.docs-split > div,
.docs-chain article {
  border: 1px solid #e2bfb0;
  border-radius: 10px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.045);
}

.docs-split h3,
.docs-chain strong {
  color: #261812;
  font-size: 1rem;
  font-weight: 800;
}

.docs-split p,
.docs-chain p {
  margin-top: 10px;
  color: #5a4136;
  font-size: 0.92rem;
  line-height: 1.65;
}

.docs-chain {
  display: grid;
  gap: 16px;
}

.docs-chain article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 6px 16px;
  align-items: start;
}

.docs-chain span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: #ff6b00;
  color: #ffffff;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 800;
}

.docs-next {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: 72px;
  border-top: 1px solid rgba(226, 191, 176, 0.7);
  padding-top: 28px;
}

.docs-next > span {
  color: #261812;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
}

.docs-next > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.docs-toc {
  padding-left: 12px;
}

.docs-toc a {
  display: block;
  border-left: 2px solid transparent;
  padding: 7px 0 7px 12px;
  color: #5a4136;
  font-size: 0.86rem;
}

.docs-toc a:hover {
  border-left-color: #a04100;
  color: #a04100;
}

.docs-mini-grid,
.docs-authority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.docs-mini-card,
.docs-authority-card {
  border: 1px solid #e2bfb0;
  border-radius: 10px;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.045);
}

.docs-mini-card .material-symbol,
.docs-authority-card .material-symbol {
  color: #a04100;
  font-size: 1.6rem;
}

.docs-mini-card h3,
.docs-authority-card h3 {
  margin-top: 14px;
  color: #261812;
  font-size: 1rem;
  font-weight: 800;
}

.docs-mini-card p,
.docs-authority-card p {
  margin-top: 8px;
  color: #5a4136;
  font-size: 0.92rem;
  line-height: 1.6;
}

.docs-table-wrap {
  overflow-x: auto;
  border: 1px solid #e2bfb0;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.045);
}

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

.docs-table th,
.docs-table td {
  border-bottom: 1px solid rgba(226, 191, 176, 0.55);
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
}

.docs-table th {
  background: #fafafa;
  color: #261812;
  font-family: var(--font-heading);
  font-weight: 800;
}

.docs-table tr:last-child td {
  border-bottom: 0;
}

.docs-table td {
  color: #5a4136;
  font-size: 0.9rem;
  line-height: 1.55;
}

.docs-table strong {
  color: #261812;
}

.docs-code-card {
  overflow: hidden;
  border: 1px solid #8e7164;
  border-radius: 10px;
  background: #261812;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
}

.docs-code-card header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  background: #fee3d8;
  padding: 10px 14px;
  color: #5a4136;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.docs-code-card pre {
  overflow-x: auto;
  margin: 0;
  padding: 20px;
  color: #ffdbcc;
  font-family: var(--font-label);
  font-size: 0.8rem;
  line-height: 1.75;
}

.docs-authority-card {
  border-top: 4px solid #10b981;
}

.docs-authority-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.docs-authority-meta span {
  border-radius: 4px;
  background: #fff1eb;
  padding: 4px 7px;
  color: #5a4136;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 800;
}

.button-secondary.dark {
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
  color: #ffffff;
}

.button-secondary.dark:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.demo-v2 {
  background: #fff8f6;
}

.demo-v2-hero {
  padding: 96px 0 48px;
}

.demo-v2-hero .page-title {
  max-width: 760px;
  color: #261812;
  font-size: clamp(2.35rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.demo-v2-hero .lead {
  max-width: 760px;
  margin-top: 18px;
  color: #5a4136;
  font-size: 1.05rem;
  line-height: 1.7;
}

.demo-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.demo-v2-section {
  padding: 80px 0;
}

.demo-download-section {
  background: transparent;
}

.demo-v2-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

.demo-v2-head.center {
  display: grid;
  justify-items: center;
  text-align: center;
}

.demo-v2-head h2 {
  margin-top: 8px;
  color: #261812;
  font-size: clamp(1.65rem, 3.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.demo-v2-head > p,
.demo-v2-head.center p {
  max-width: 440px;
  color: #5a4136;
  font-size: 0.95rem;
  line-height: 1.65;
}

.demo-v2-head.center p {
  max-width: 680px;
}

.demo-gallery-grid,
.demo-download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

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

.demo-media-card,
.demo-file-card {
  overflow: hidden;
  border: 1px solid rgba(226, 191, 176, 0.55);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055);
}

.demo-media-card figure,
.demo-file-card figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #fff1eb;
}

.demo-media-card img,
.demo-file-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.demo-file-card img {
  aspect-ratio: 1;
  filter: grayscale(1);
}

.demo-file-card video {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.demo-file-card:hover img,
.demo-file-card:hover video {
  filter: grayscale(0);
  transform: scale(1.02);
}

.demo-media-card h3,
.demo-file-card h3 {
  margin: 18px 18px 0;
  color: #261812;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.demo-media-card p,
.demo-file-card p {
  margin: 8px 18px 18px;
  color: #5a4136;
  font-size: 0.875rem;
  line-height: 1.6;
}

.demo-overlay-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 7px 10px;
  color: #ffffff;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.demo-overlay-badge .material-symbol {
  font-size: 0.95rem;
}

.demo-overlay-badge.trusted {
  background: var(--status-trusted);
}

.demo-overlay-badge.untrusted {
  background: var(--status-untrusted);
}

.demo-overlay-badge.none {
  background: var(--status-none);
}

.demo-c2pa-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  grid-template-columns: 22px auto;
  gap: 6px 8px;
  max-width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.86);
  padding: 7px 10px 7px 7px;
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.demo-c2pa-badge .material-symbol {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #ff6b00;
  font-size: 0.82rem;
}

.demo-c2pa-badge span:not(.material-symbol) {
  align-self: center;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 800;
}

.demo-c2pa-badge small {
  grid-column: 1 / -1;
  display: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  line-height: 1.35;
}

.demo-media-card figure:hover .demo-c2pa-badge {
  border-radius: 8px;
}

.demo-media-card figure:hover .demo-c2pa-badge small {
  display: block;
}

.demo-file-card .status-pill {
  position: absolute;
  top: 12px;
  right: 12px;
}

.demo-file-card .button-secondary {
  width: calc(100% - 36px);
  margin: 0 18px 20px;
  border-color: #8e7164;
  border-radius: 4px;
  background: #ffffff;
  padding: 10px 12px;
}

.demo-file-placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}

.demo-file-placeholder > .material-symbol {
  color: rgba(142, 113, 100, 0.42);
  font-size: 4rem;
}

.demo-video-preview {
  position: relative;
}

.demo-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
}

.demo-play .material-symbol {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(8px);
  font-size: 2rem;
}

.demo-browser-mock {
  overflow: hidden;
  border: 1px solid #8e7164;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
}

.demo-scan-mock {
  max-width: 1080px;
  margin: 0 auto;
}

.demo-browser-bar {
  display: grid;
  grid-template-columns: repeat(3, 12px) minmax(0, 1fr) 34px;
  gap: 9px;
  align-items: center;
  border-bottom: 1px solid rgba(226, 191, 176, 0.7);
  background: #fee3d8;
  padding: 10px 14px;
}

.demo-browser-bar > span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #ba1a1a;
}

.demo-browser-bar > span:nth-child(2) {
  background: var(--status-untrusted);
}

.demo-browser-bar > span:nth-child(3) {
  background: var(--status-trusted);
}

.demo-address {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  border: 1px solid rgba(226, 191, 176, 0.65);
  border-radius: 4px;
  background: #ffffff;
  padding: 6px 10px;
  color: #5a4136;
  font-family: var(--font-label);
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demo-address .material-symbol {
  color: var(--status-trusted);
  font-size: 0.95rem;
}

.demo-extension-chip {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: #ff6b00;
  color: #ffffff;
}

.demo-article-mock {
  max-width: 840px;
  margin: 0 auto;
  padding: 48px;
}

.demo-article-mock h2 {
  color: #261812;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.08;
}

.demo-article-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0;
}

.demo-article-byline > span {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #efd5ca;
}

.demo-article-byline strong,
.demo-article-byline small {
  display: block;
}

.demo-article-byline small {
  color: #5a4136;
  font-family: var(--font-label);
  font-size: 0.72rem;
}

.demo-article-mock figure {
  position: relative;
  margin: 0 0 28px;
}

.demo-article-mock figure img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.5;
  border-radius: 8px;
  object-fit: cover;
}

.demo-review-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  padding: 6px 12px 6px 6px;
  color: #ffffff;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-review-badge .material-symbol {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--status-trusted);
  font-size: 0.9rem;
}

.demo-article-mock figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 6px;
  width: min(280px, calc(100% - 36px));
  border: 1px solid rgba(226, 191, 176, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px;
  color: #5a4136;
  font-size: 0.78rem;
  opacity: 0;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.demo-article-mock figure:hover figcaption,
.demo-article-mock figure:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

.demo-article-mock figcaption strong {
  color: #261812;
  font-family: var(--font-label);
}

.demo-article-mock figcaption span {
  display: block;
}

.demo-article-mock > p {
  color: #5a4136;
  font-size: 1rem;
  line-height: 1.75;
}

.docs-page .docs-hero {
  padding: 64px 0 40px;
}

.docs-page .page-title {
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.docs-page .lead {
  font-size: 1rem;
}

.docs-content {
  padding-top: 0;
}

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

.docs-card {
  border-radius: 12px;
  padding: 24px;
}

.docs-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.docs-card-head .card-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  border-radius: 10px;
}

.docs-card-head h2 {
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.docs-card-body {
  display: grid;
  gap: 16px;
}

.docs-card-body .docs-label {
  margin: 0 0 4px;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.docs-card-body p,
.docs-card-body li {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.docs-steps,
.docs-error-list {
  display: grid;
  gap: 6px;
  margin: 0;
}

.docs-steps {
  list-style: decimal;
  padding-left: 1.25rem;
}

.docs-error-list {
  list-style: none;
  padding: 0;
}

.docs-steps li {
  padding-left: 0.45rem;
}

.docs-steps li p {
  min-width: 0;
  margin: 0;
}

.docs-error-list li,
.docs-icon-line {
  display: grid;
  grid-template-columns: 1rem minmax(0, 1fr);
  align-items: start;
  column-gap: 8px;
}

.docs-steps li::marker {
  color: rgba(15, 23, 42, 0.7);
  font-weight: 800;
}

.docs-icon-line .icon,
.docs-error-list .icon {
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

.docs-icon-line .check {
  color: var(--green);
}

.docs-error-list .icon {
  color: #d97706;
}

.changelog-page .changelog-hero {
  padding: 64px 0 40px;
}

.changelog-page .page-title {
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.changelog-page .lead {
  font-size: 1rem;
}

.changelog-content {
  padding-top: 0;
}

.changelog-stack {
  display: grid;
  gap: 24px;
  max-width: 48rem;
}

.changelog-card {
  border-radius: 12px;
  padding: 24px;
}

.changelog-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.changelog-card-head .card-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  border-radius: 10px;
}

.changelog-card-head p {
  margin: 0;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.changelog-card-head h2 {
  margin-top: 2px;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
}

.changelog-list {
  display: grid;
  gap: 10px;
  list-style: disc;
  margin: 0;
  padding-left: 1.2rem;
}

.changelog-list li {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.changelog-list li::marker {
  color: var(--primary);
  font-weight: 800;
}

.changelog-v2 {
  --changelog-bg: #fff8f6;
  --changelog-text: #261812;
  --changelog-muted: #5a4136;
  --changelog-border: #e2bfb0;
  --changelog-card: #ffffff;
  background: var(--changelog-bg);
  color: var(--changelog-text);
}

.changelog-v2-hero {
  position: relative;
  padding: 72px 0 48px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.changelog-v2-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--changelog-bg);
}

.changelog-v2-hero-inner {
  position: relative;
  z-index: 1;
}

.changelog-v2-hero-copy {
  max-width: 42rem;
}

.changelog-v2-kicker {
  margin-bottom: 18px;
  color: var(--primary);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.changelog-v2 .page-title {
  max-width: 44rem;
  color: var(--changelog-text);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.changelog-v2 .lead {
  max-width: 42rem;
  margin-top: 22px;
  color: var(--changelog-muted);
  font-size: 1.125rem;
  line-height: 1.7;
}

.changelog-v2-section {
  padding: 96px 0;
}

.changelog-v2-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 0.72fr);
  gap: 56px;
  align-items: start;
}

.changelog-v2-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 24px;
}

.changelog-v2-latest-card {
  border: 1px solid var(--changelog-border);
  border-radius: 8px;
  background: var(--surface-subtle);
  padding: 24px;
}

.changelog-v2-latest-card h2 {
  margin-bottom: 18px;
  color: var(--changelog-text);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.changelog-v2-latest-card p,
.changelog-v2-meta p,
.changelog-v2-card > p,
.changelog-v2-feature-list p {
  color: var(--changelog-muted);
}

.changelog-v2-latest-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.changelog-v2-latest-line strong {
  font-family: var(--font-label);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.changelog-v2-status-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--status-trusted);
}

.changelog-v2-branch {
  border-left: 2px solid var(--primary);
  padding: 12px 0 12px 18px;
}

.changelog-v2-branch p {
  color: var(--primary);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.changelog-v2-timeline {
  position: relative;
  display: grid;
  gap: 80px;
}

.changelog-v2-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 96px;
  left: 15px;
  width: 2px;
  background: var(--changelog-border);
}

.changelog-v2-entry {
  position: relative;
  padding-left: 52px;
}

.changelog-v2-dot {
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 4px solid var(--changelog-bg);
  border-radius: 999px;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
}

.changelog-v2-dot.primary {
  background: var(--primary-strong);
}

.changelog-v2-dot.muted {
  background: #5a4136;
}

.changelog-v2-dot .icon {
  width: 15px;
  height: 15px;
}

.changelog-v2-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.changelog-v2-meta span {
  border-radius: 4px;
  background: rgba(255, 107, 0, 0.12);
  padding: 5px 10px;
  color: var(--primary);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.changelog-v2-entry:nth-of-type(2) .changelog-v2-meta span {
  background: var(--surface-high);
  color: var(--changelog-muted);
}

.changelog-v2-card {
  border: 1px solid var(--changelog-border);
  border-radius: 8px;
  background: var(--changelog-card);
  padding: 32px;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.07);
}

.changelog-v2-card h2 {
  color: var(--changelog-text);
  font-size: clamp(1.7rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.changelog-v2-card > p {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.65;
}

.changelog-v2-feature-list {
  display: grid;
  gap: 22px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.changelog-v2-feature-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.changelog-v2-feature-icon {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--primary);
}

.changelog-v2-feature-icon.muted {
  color: var(--changelog-muted);
}

.changelog-v2-feature-list h3 {
  color: var(--changelog-text);
  font-family: var(--font-label);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.changelog-v2-feature-list p {
  margin-top: 6px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.changelog-v2-end {
  position: relative;
  padding: 8px 0 0 52px;
}

.changelog-v2-end .button {
  border-color: var(--changelog-border);
  background: transparent;
  color: var(--changelog-text);
}

.contact-hero {
  padding: 96px 0 72px;
}

.contact-page .contact-page-hero {
  padding: 64px 0 40px;
}

.contact-page .page-title {
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.contact-page .lead {
  font-size: 1rem;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 48px;
  align-items: end;
}

.contact-panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  padding: 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.contact-panel-label {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-panel strong {
  display: block;
  margin-top: 10px;
  color: var(--foreground);
  font-size: 1.125rem;
}

.contact-panel p {
  margin-top: 12px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
}

.contact-methods {
  padding-top: 0;
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  padding: 24px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.contact-card .contact-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 10px;
}

.contact-card h2 {
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.contact-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-card-title {
  margin-top: 36px;
  color: var(--foreground);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.16;
}

.contact-card p {
  margin-top: 8px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
}

.contact-detail-list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.contact-detail-list li {
  display: grid;
  grid-template-columns: 0.7rem minmax(0, 1fr);
  align-items: start;
  gap: 8px;
  color: rgba(15, 23, 42, 0.82);
  font-size: 0.875rem;
  line-height: 1.6;
}

.contact-detail-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--primary);
  flex: 0 0 auto;
}

.contact-card .link-row {
  margin-top: auto;
  padding-top: 24px;
}

.contact-card .button-primary,
.contact-card .button-secondary {
  min-width: 180px;
}

.linkedin-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f8fafc;
  padding: 24px;
}

.linkedin-title {
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.linkedin-copy {
  margin-top: 4px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.linkedin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.disclosure-card {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  border: 2px solid rgba(244, 81, 30, 0.2);
  border-radius: 16px;
  background: rgba(244, 81, 30, 0.05);
  padding: 32px;
}

.privacy-page .privacy-hero {
  padding: 64px 0 40px;
}

.privacy-page .page-title {
  font-size: clamp(2rem, 4.2vw, 3rem);
}

.privacy-page .lead {
  font-size: 1rem;
}

.privacy-content {
  padding-top: 0;
}

.disclosure-card .card-icon {
  margin-bottom: 0;
  background: var(--primary);
  color: var(--primary-foreground);
}

.disclosure-card h2 {
  color: var(--foreground);
  font-size: 1.125rem;
  font-weight: 800;
}

.disclosure-card p {
  margin-top: 10px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
}

.privacy-question {
  margin-top: 32px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
}

.privacy-question a {
  color: var(--primary);
  font-weight: 800;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 800;
}

.trusted {
  background: var(--green-bg);
  color: var(--green);
}

.signed {
  background: var(--primary-soft);
  color: var(--primary);
}

.invalid {
  background: var(--red-bg);
  color: var(--red);
}

.empty {
  background: #f1f5f9;
  color: #475569;
}

.use-cases-page .page-hero {
  padding: 64px 0 32px;
}

.use-cases-section {
  padding: 48px 0 72px;
  background: var(--background);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.use-case-card {
  min-height: 286px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  padding: 24px;
}

.use-case-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
}

.use-case-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 16px;
  border-radius: 999px;
  background: var(--primary-soft);
  padding: 5px 11px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
}

.use-case-card h2 {
  margin-top: 14px;
  color: var(--foreground);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.use-case-card p {
  margin-top: 12px;
  color: var(--muted-foreground);
  font-size: 0.78rem;
  line-height: 1.6;
}

.use-case-card ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.use-case-card li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  color: var(--muted-foreground);
  font-size: 0.76rem;
  line-height: 1.35;
}

.use-case-card li .icon {
  margin-top: 2px;
  color: var(--primary);
}

.use-case-cta {
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  padding: 34px 24px;
  text-align: center;
}

.use-case-cta h2 {
  color: var(--foreground);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.use-case-cta p {
  max-width: 34rem;
  margin: 10px auto 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.55;
}

.use-cases-v2 {
  --use-surface: #fff8f6;
  --use-surface-low: #fff1eb;
  --use-surface-card: #ffffff;
  --use-border: #e2bfb0;
  --use-text: #261812;
  --use-muted: #5a4136;
  background: var(--use-surface);
  color: var(--use-text);
}

.use-cases-v2 .container {
  width: min(1200px, calc(100% - 48px));
}

.use-cases-v2-hero {
  position: relative;
  overflow: hidden;
  padding: 128px 0 76px;
}

.use-cases-v2-hero .container {
  position: relative;
}

.use-cases-v2-hero-pattern {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  opacity: 0.18;
  background:
    linear-gradient(90deg, rgba(160, 65, 0, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(160, 65, 0, 0.18) 1px, transparent 1px);
  background-size: 24px 24px;
  transform: rotate(12deg);
}

.use-cases-v2-hero-copy {
  max-width: 48rem;
}

.use-cases-v2-kicker {
  display: inline-flex;
  align-items: center;
  border-left: 4px solid var(--primary);
  background: var(--surface-high);
  padding: 7px 12px;
  color: var(--primary);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.use-cases-v2 .page-title {
  max-width: 44rem;
  margin-top: 24px;
  color: var(--use-text);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.use-cases-v2 .lead {
  max-width: 44rem;
  margin-top: 22px;
  color: var(--use-muted);
  font-size: 1.125rem;
  line-height: 1.7;
}

.use-cases-v2-grid-section {
  padding: 0 0 128px;
}

.use-cases-v2-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.use-cases-v2-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  border: 1px solid var(--use-border);
  border-radius: 8px;
  background: var(--use-surface-card);
  padding: 32px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.045);
}

.use-cases-v2-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--use-border);
  border-radius: 6px;
  background: var(--surface-high);
  color: var(--primary);
}

.use-cases-v2-icon .icon {
  width: 22px;
  height: 22px;
}

.use-cases-v2-card > span {
  margin-top: 22px;
  color: var(--use-muted);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.use-cases-v2-card h2 {
  margin-top: 8px;
  color: var(--use-text);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.use-cases-v2-card p {
  margin-top: 14px;
  color: var(--use-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.use-cases-v2-card ul {
  display: grid;
  gap: 13px;
  margin: auto 0 0;
  padding: 28px 0 0;
  list-style: none;
}

.use-cases-v2-card li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--use-text);
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
}

.use-cases-v2-card li .icon {
  width: 17px;
  height: 17px;
  color: var(--status-trusted);
}

.use-cases-v2-workflows {
  border-top: 1px solid var(--use-border);
  border-bottom: 1px solid var(--use-border);
  background: var(--use-surface-low);
  padding: 80px 0;
}

.use-cases-v2-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.use-cases-v2-section-head h2 {
  max-width: 38rem;
  color: var(--use-text);
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.use-cases-v2-section-head p {
  max-width: 42rem;
  margin-top: 14px;
  color: var(--use-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.use-cases-v2-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.use-cases-v2-link-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--use-border);
  border-radius: 4px;
  background: var(--use-surface);
  padding: 24px;
  color: var(--use-text);
  font-family: var(--font-label);
  font-size: 0.84rem;
  font-weight: 800;
  transition: border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.use-cases-v2-link-grid a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.use-cases-v2-link-grid .icon {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.use-cases-v2-enterprise {
  padding: 128px 0;
}

.use-cases-v2-enterprise-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  overflow: hidden;
  border-radius: 4px;
  background: var(--use-text);
  color: #ffffff;
}

.use-cases-v2-enterprise-card > div:first-child {
  padding: 56px 64px;
}

.use-cases-v2-dark-kicker {
  display: inline-flex;
  border: 1px solid var(--primary);
  padding: 7px 12px;
  color: var(--primary-fixed);
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.use-cases-v2-enterprise-card h2 {
  margin-top: 32px;
  color: #ffffff;
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.use-cases-v2-enterprise-card p:not(.use-cases-v2-dark-kicker) {
  max-width: 39rem;
  margin-top: 18px;
  color: rgba(255, 248, 246, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.use-cases-v2-enterprise-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  color: var(--primary-fixed);
  font-family: var(--font-label);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.use-cases-v2-enterprise-card a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.use-cases-v2-terminal {
  display: grid;
  place-items: center;
  min-height: 300px;
  background: var(--surface-high);
  color: rgba(38, 24, 18, 0.28);
}

.use-cases-v2-terminal .icon {
  width: 74px;
  height: 74px;
}

.use-cases-v2-trial {
  padding: 0 0 88px;
}

.use-cases-v2-trial-card {
  max-width: 48rem;
  margin: 0 auto;
  border-right: 4px solid var(--primary);
  border-left: 4px solid var(--primary);
  background: var(--surface-high);
  padding: 56px 32px;
  text-align: center;
}

.use-cases-v2-trial-card h2 {
  color: var(--use-text);
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.use-cases-v2-trial-card p {
  max-width: 39rem;
  margin: 16px auto 0;
  color: var(--use-muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.use-cases-v2-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 34px;
}

.use-cases-v2-actions a {
  min-width: 170px;
  justify-content: center;
}

.use-cases-v2-security-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 28px;
  color: var(--primary);
  font-family: var(--font-label);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.use-cases-v2-security-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.scope-card p {
  margin-top: 10px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
}

.team-page .page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
}

.team-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 60% at 14% 0%, #fdefea, transparent 72%);
  pointer-events: none;
}

.team-page .page-hero .container {
  position: relative;
}

.team-page .page-title {
  max-width: 44rem;
  font-size: clamp(2.15rem, 4.2vw, 3.25rem);
}

.team-page .lead,
.team-page .section-lead {
  max-width: 48rem;
  font-size: 1rem;
  line-height: 1.65;
}

.team-section {
  padding: 80px 0;
}

.team-section .section-head {
  margin-bottom: 44px;
}

.team-section .section-title {
  max-width: 50rem;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
}

.team-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.team-summary-card,
.team-workflow-card,
.team-detail-card {
  border-radius: 12px;
  padding: 20px;
}

.team-summary-card .card-icon,
.team-workflow-card .card-icon,
.team-detail-card .card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 10px;
}

.team-detail-stack {
  display: grid;
  gap: 20px;
}

.team-why-stack {
  display: grid;
  gap: 18px;
  max-width: 58rem;
}

.team-why-stack p {
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.75;
}

.team-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
}

.team-detail-card .card-icon {
  margin-bottom: 14px;
}

.team-detail-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.team-detail-card li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 8px;
  color: var(--foreground);
  font-size: 0.82rem;
  line-height: 1.55;
}

.team-detail-card li::before {
  content: "->";
  color: var(--primary);
  font-weight: 800;
}

.team-workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.team-workflow-card {
  position: relative;
  min-height: 190px;
}

.team-workflow-card .card-number {
  float: none;
  position: absolute;
  top: 28px;
  right: 24px;
}

.team-warning {
  border-color: var(--red-border);
  background: rgba(255, 241, 242, 0.65);
}

.team-warning ul {
  display: grid;
  gap: 12px;
}

.team-warning li {
  align-items: flex-start;
}

.team-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.team-final-cta {
  border-top: 1px solid var(--border);
  background: var(--foreground);
  color: #ffffff;
  text-align: center;
}

.team-final-cta .section-title,
.team-final-cta .section-lead {
  margin-left: auto;
  margin-right: auto;
  color: #ffffff;
}

.team-final-cta .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.team-final-cta .link-row {
  justify-content: center;
}

.team-final-cta .button-secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #ffffff;
}

.solution-page {
  background: #fff8f6;
}

.solution-page .section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.solution-page .section-title {
  color: #0f172a;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.solution-page .lead,
.solution-page .section-lead {
  color: #5c647a;
  font-size: 1rem;
  line-height: 1.65;
}

.solution-hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid rgba(226, 191, 176, 0.5);
}

.solution-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 64px;
  align-items: center;
}

.solution-hero-copy {
  display: grid;
  gap: 26px;
}

.solution-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border: 1px solid rgba(226, 191, 176, 0.5);
  border-radius: 999px;
  background: #fee3d8;
  padding: 6px 12px;
  color: #a04100;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-badge .material-symbol {
  font-size: 18px;
}

.solution-hero-media {
  position: relative;
  margin: 0;
}

.solution-hero-media::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 22px;
  background: rgba(255, 107, 0, 0.07);
  filter: blur(22px);
}

.solution-hero-media img {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid #e2bfb0;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.solution-status-section {
  padding: 80px 0;
  border-block: 1px solid rgba(226, 191, 176, 0.35);
  background: #fafafa;
}

.solution-status-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.solution-status-card {
  min-height: 172px;
  border: 1px solid rgba(226, 191, 176, 0.55);
  border-radius: 10px;
  background: #ffffff;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.solution-status-card strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.solution-status-card p {
  color: #3a4658;
  font-size: 0.92rem;
  line-height: 1.65;
}

.solution-status-card.trusted {
  border-color: rgba(16, 185, 129, 0.34);
  background: #f8fffc;
}

.solution-status-card.trusted strong {
  color: #059669;
}

.solution-status-card.untrusted {
  border-color: rgba(245, 158, 11, 0.34);
  background: #fffdf8;
}

.solution-status-card.untrusted strong {
  color: #b45309;
}

.solution-status-card.invalid {
  border-color: rgba(239, 68, 68, 0.3);
  background: #fffafa;
}

.solution-status-card.invalid strong {
  color: #dc2626;
}

.solution-status-card.none {
  border-color: rgba(148, 163, 184, 0.42);
  background: #fafbfd;
}

.solution-status-card.none strong {
  color: #52607a;
}

.solution-section {
  padding: 96px 0;
}

.solution-workflow-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.solution-sticky-copy {
  position: sticky;
  top: 96px;
}

.solution-privacy-card {
  margin-top: 32px;
  border: 1px solid rgba(226, 191, 176, 0.5);
  border-radius: 16px;
  background: #ffeae1;
  padding: 28px;
}

.solution-privacy-card .material-symbol {
  color: #a04100;
  font-size: 34px;
}

.solution-privacy-card h3 {
  margin-top: 12px;
  color: #0f172a;
  font-size: 1.18rem;
  font-weight: 900;
}

.solution-privacy-card p {
  margin-top: 12px;
  color: #5c647a;
  font-size: 0.88rem;
  line-height: 1.65;
}

.solution-step-list {
  display: grid;
  gap: 38px;
}

.solution-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 28px;
}

.solution-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px;
  bottom: -28px;
  left: 20px;
  width: 1px;
  background: #e2bfb0;
}

.solution-step > span {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #ff6b00;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
}

.solution-step h3 {
  color: #0f172a;
  font-size: 1.22rem;
  font-weight: 900;
}

.solution-step p {
  margin-top: 8px;
  color: #5c647a;
  font-size: 0.95rem;
  line-height: 1.65;
}

.solution-evidence-section {
  padding: 96px 0;
  color: #ffffff;
}

.solution-evidence-section > .container {
  border-radius: 28px;
  background: #0f172a;
  padding: 72px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.solution-evidence-section .section-title {
  color: #ffffff;
}

.solution-evidence-section .section-lead {
  color: rgba(255, 255, 255, 0.68);
}

.solution-evidence-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}

.solution-chip {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 219, 204, 0.25);
  border-radius: 8px;
  background: #a04100;
  padding: 12px 18px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-evidence-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.solution-evidence-grid article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 28px;
  transition: background 160ms ease, border-color 160ms ease;
}

.solution-evidence-grid article:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.solution-evidence-grid span {
  display: block;
  margin-bottom: 24px;
  color: #ffb693;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-evidence-grid h3 {
  font-size: 1.16rem;
  font-weight: 900;
}

.solution-evidence-grid p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
  line-height: 1.65;
}

.solution-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.solution-scenario-grid article {
  border: 1px solid #e2bfb0;
  border-radius: 12px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.solution-scenario-grid .material-symbol {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 10px;
  background: #ffeae1;
  color: #ff6b00;
  transition: transform 160ms ease;
}

.solution-scenario-grid article:hover .material-symbol {
  transform: scale(1.06);
}

.solution-scenario-grid h3 {
  color: #0f172a;
  font-size: 1.04rem;
  font-weight: 900;
}

.solution-scenario-grid p,
.solution-faq-grid p {
  margin-top: 10px;
  color: #5c647a;
  font-size: 0.88rem;
  line-height: 1.65;
}

.solution-scope-section {
  padding: 96px 0;
}

.solution-scope-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(226, 191, 176, 0.5);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
}

.solution-scope-card > div {
  padding: 44px;
}

.solution-scope-card .good {
  border-right: 1px solid rgba(226, 191, 176, 0.5);
  background: rgba(16, 185, 129, 0.06);
}

.solution-scope-card .bad {
  background: rgba(239, 68, 68, 0.06);
}

.solution-scope-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 900;
}

.solution-scope-card .good h3 {
  color: #059669;
}

.solution-scope-card .bad h3 {
  color: #dc2626;
}

.solution-scope-card ul {
  display: grid;
  gap: 14px;
  margin-top: 22px;
  padding: 0;
  list-style: none;
}

.solution-scope-card li {
  position: relative;
  padding-left: 24px;
  color: #5c647a;
  font-size: 0.9rem;
  line-height: 1.55;
}

.solution-scope-card li::before {
  position: absolute;
  left: 0;
  font-weight: 900;
}

.solution-scope-card .good li::before {
  content: "✓";
  color: #059669;
}

.solution-scope-card .bad li::before {
  content: "×";
  color: #dc2626;
}

.solution-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 64px;
}

.solution-faq-grid h3 {
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 900;
}

.solution-final-cta {
  padding: 96px 0;
  color: #ffffff;
  text-align: center;
}

.solution-final-cta > .container {
  border-radius: 28px;
  background: #a04100;
  padding: 72px;
  box-shadow: 0 24px 70px rgba(160, 65, 0, 0.16);
}

.solution-final-cta h2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.solution-final-cta p {
  max-width: 560px;
  margin: 20px auto 0;
  color: #ffdbcc;
  font-size: 1rem;
  line-height: 1.65;
}

.solution-final-cta .link-row {
  justify-content: center;
  margin-top: 34px;
}

.solution-final-cta .button-primary {
  background: #ffffff;
  color: #a04100;
}

.solution-final-cta .button-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #ffffff;
}

.solution-dark-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 680px;
  overflow: hidden;
  background: #0f172a;
  color: #ffffff;
  padding: 120px 0 96px;
}

.solution-dark-media {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuDZZmjUWn4zH_roAnKG3gtjm63uW0JSv-6e7N7dbwqeOOxWOPyLl3aQuV4u1Gg4zMBwaM7QvihZ3p1Xh__xpYkG5vwWv5k2bopJtVTMym-_G9JKvfmU2h5yjJtck-0LUZTOEB9QDUmgkdpyjm4Mis38MJIzNGhhscL4n3W7VKOdv-OjPKz3nSrEe_L5pLbg06ddnmpcxZPRcHHl2WIM8sPUqbm6fhOTqKoeN_K753fGC_u4M1jBeNg8oCtfQrTuyqeK5VT0uvLpTNg");
  background-position: center;
  background-size: cover;
  mix-blend-mode: overlay;
}

.solution-dark-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0f172a 0%, rgba(15, 23, 42, 0.86) 48%, rgba(15, 23, 42, 0.24) 100%);
}

.solution-dark-hero .container {
  position: relative;
  z-index: 1;
}

.solution-dark-copy {
  display: grid;
  gap: 26px;
  max-width: 780px;
}

.solution-dark-copy .page-title {
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.solution-dark-copy .lead {
  max-width: 680px;
  color: rgba(255, 248, 246, 0.86);
}

.solution-dark-badge {
  width: fit-content;
  border-left: 2px solid #ff6b00;
  border-radius: 4px;
  background: rgba(255, 107, 0, 0.16);
  padding: 7px 12px;
  color: #ffb693;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-dark-hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  color: #ffffff;
}

.solution-horizontal-workflow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.solution-horizontal-workflow::before {
  content: "";
  position: absolute;
  top: 31px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: #e2bfb0;
}

.solution-horizontal-workflow article {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.solution-horizontal-workflow .material-symbol {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  border: 2px solid #ff6b00;
  border-radius: 999px;
  background: #fee3d8;
  color: #a04100;
  font-size: 30px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.solution-horizontal-workflow article:hover .material-symbol {
  transform: translateY(-2px);
  background: #ff6b00;
  color: #ffffff;
}

.solution-horizontal-workflow h3 {
  color: #0f172a;
  font-size: 1.06rem;
  font-weight: 900;
}

.solution-horizontal-workflow p {
  margin-top: 8px;
  color: #5c647a;
  font-size: 0.88rem;
  line-height: 1.6;
}

.solution-report-section {
  padding: 96px 0;
  background: #fafafa;
}

.solution-report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.solution-report-grid article {
  border: 1px solid #e2bfb0;
  border-radius: 14px;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.solution-report-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.solution-report-grid .material-symbol {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 10px;
  background: #fff1eb;
  color: #a04100;
  transition: background 160ms ease, color 160ms ease;
}

.solution-report-grid article:hover .material-symbol {
  background: #ff6b00;
  color: #ffffff;
}

.solution-report-grid h3 {
  color: #0f172a;
  font-size: 1.08rem;
  font-weight: 900;
}

.solution-report-grid p {
  margin-top: 10px;
  color: #5c647a;
  font-size: 0.9rem;
  line-height: 1.65;
}

.solution-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.solution-bento-grid article {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid #e2bfb0;
  border-radius: 18px;
  padding: 30px;
  background: #ffeae1;
}

.solution-bento-grid article:nth-child(2) {
  background: #dae2fd;
}

.solution-bento-grid article:nth-child(3) {
  background: #eaf2ff;
}

.solution-bento-grid article:nth-child(4) {
  background: #f8ddd2;
}

.solution-bento-grid strong {
  display: inline-flex;
  border-radius: 4px;
  background: #ff6b00;
  padding: 5px 9px;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 900;
}

.solution-bento-grid h3 {
  margin-top: 18px;
  color: #0f172a;
  font-size: 1.16rem;
  font-weight: 900;
}

.solution-bento-grid p {
  max-width: 19rem;
  margin-top: 10px;
  color: #5c647a;
  font-size: 0.9rem;
  line-height: 1.6;
}

.solution-bento-grid .material-symbol {
  position: absolute;
  right: -18px;
  bottom: -24px;
  color: rgba(15, 23, 42, 0.11);
  font-size: 150px;
  transition: transform 220ms ease;
}

.solution-bento-grid article:hover .material-symbol {
  transform: scale(1.08);
}

.solution-dark-scope {
  padding: 96px 0;
  background: #0f172a;
  color: #ffffff;
}

.solution-dark-scope-inner {
  max-width: 900px;
}

.solution-dark-scope h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.solution-dark-scope-inner > p {
  max-width: 720px;
  margin-top: 22px;
  border-left: 2px solid #ff6b00;
  padding-left: 24px;
  color: rgba(255, 248, 246, 0.7);
  line-height: 1.65;
}

.solution-limit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 52px;
}

.solution-limit-grid article {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 16px;
}

.solution-limit-grid .material-symbol {
  color: #ef4444;
}

.solution-limit-grid h3 {
  font-size: 1rem;
  font-weight: 900;
}

.solution-limit-grid p {
  margin-top: 6px;
  color: rgba(255, 248, 246, 0.62);
  font-size: 0.88rem;
  line-height: 1.6;
}

.solution-faq-narrow {
  max-width: 860px;
}

.solution-accordion {
  display: grid;
  gap: 14px;
}

.solution-accordion details {
  border: 1px solid #e2bfb0;
  border-radius: 12px;
  background: #fff1eb;
}

.solution-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  padding: 22px 24px;
  color: #0f172a;
  font-weight: 900;
  list-style: none;
}

.solution-accordion summary::-webkit-details-marker {
  display: none;
}

.solution-accordion summary .material-symbol {
  flex: 0 0 auto;
  transition: transform 160ms ease;
}

.solution-accordion details[open] summary .material-symbol {
  transform: rotate(180deg);
}

.solution-accordion p {
  margin: -2px 24px 22px;
  color: #5c647a;
  font-size: 0.92rem;
  line-height: 1.65;
}

.solution-card-cta {
  padding: 96px 0;
  background: #fff8f6;
}

.solution-card-cta-inner {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #a04100;
  padding: 72px;
  color: #ffffff;
  text-align: center;
}

.solution-card-cta-inner > .material-symbol {
  position: absolute;
  top: 0;
  right: 24px;
  color: rgba(255, 255, 255, 0.1);
  font-size: 220px;
}

.solution-card-cta h2 {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.solution-card-cta p {
  position: relative;
  max-width: 560px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.solution-card-cta .link-row {
  position: relative;
  justify-content: center;
  margin-top: 34px;
}

.solution-card-cta .button-primary {
  background: #ffffff;
  color: #a04100;
}

.solution-card-cta .button-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #ffffff;
}

.brand-solution-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 104px;
  border-bottom: 1px solid rgba(226, 191, 176, 0.42);
  text-align: center;
}

.brand-solution-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #fff8f6 0%, #fff8f6 58%, #ffffff 100%);
}

.brand-solution-hero .container {
  position: relative;
  z-index: 1;
}

.brand-solution-kicker {
  display: inline-flex;
  margin-bottom: 28px;
  border-radius: 999px;
  background: rgba(160, 65, 0, 0.1);
  padding: 6px 14px;
  color: #a04100;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-solution-hero .page-title {
  max-width: 860px;
  margin: 0 auto;
  color: #261812;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.brand-solution-hero .lead {
  max-width: 720px;
  margin: 24px auto 0;
}

.brand-solution-hero .link-row,
.brand-final-cta .link-row {
  justify-content: center;
}

.brand-status-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 34px 0 38px;
}

.brand-status-strip span {
  border-left: 3px solid currentColor;
  border-radius: 4px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-status-strip .trusted {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.brand-status-strip .untrusted {
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
}

.brand-status-strip .invalid {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.brand-status-strip .none {
  background: rgba(148, 163, 184, 0.16);
  color: #64748b;
}

.brand-value-section {
  padding: 96px 0;
  background: #fafafa;
}

.brand-value-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.76fr);
  gap: 72px;
  align-items: center;
}

.brand-value-grid .section-title {
  max-width: 560px;
  color: #261812;
}

.brand-value-grid .section-lead {
  max-width: 680px;
  margin-top: 18px;
}

.brand-value-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brand-value-cards article {
  border: 1px solid #e2bfb0;
  border-radius: 12px;
  background: #ffffff;
  padding: 28px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.brand-value-cards article:nth-child(2) {
  transform: translateY(32px);
}

.brand-value-cards .material-symbol {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: #fee3d8;
  color: #a04100;
  font-size: 26px;
}

.brand-value-cards h3 {
  color: #261812;
  font-size: 1.12rem;
  font-weight: 900;
}

.brand-value-cards p {
  margin-top: 8px;
  color: #5c647a;
  font-size: 0.88rem;
  line-height: 1.6;
}

.brand-section-rule {
  display: block;
  width: 92px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: #ff6b00;
}

.brand-workflow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.brand-workflow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  border: 1px solid rgba(226, 191, 176, 0.55);
  border-radius: 12px;
  background: #ffffff;
  padding: 20px 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.brand-workflow-step:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 0, 0.38);
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.brand-workflow-step:not(:last-child)::after {
  display: none;
}

.brand-workflow-step > span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.12);
  padding: 5px 10px;
  color: #a04100;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-workflow-step h3 {
  color: #261812;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.brand-workflow-step p {
  margin-top: 10px;
  color: #3a4658;
  font-size: 0.9rem;
  line-height: 1.65;
}

.brand-report-section {
  padding: 96px 0;
  background: #fff1eb;
}

.brand-report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(244px, auto);
  gap: 24px;
}

.brand-report-grid article {
  position: relative;
  display: flex;
  min-height: 244px;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  border: 1px solid #e2bfb0;
  border-radius: 16px;
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition: border-color 160ms ease;
}

.brand-report-grid article:hover {
  border-color: #a04100;
}

.brand-report-grid .tall {
  grid-row: span 2;
}

.brand-report-grid strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: rgba(255, 107, 0, 0.1);
  color: #a04100;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 900;
}

.brand-report-grid h3 {
  color: #261812;
  font-size: 1.16rem;
  font-weight: 900;
}

.brand-report-grid p {
  margin-top: 10px;
  color: #5c647a;
  font-size: 0.9rem;
  line-height: 1.62;
}

.brand-report-grid .material-symbol {
  margin-top: auto;
  align-self: flex-end;
  color: #e2bfb0;
  font-size: 54px;
}

.brand-meter {
  height: 8px;
  margin-top: 26px;
  overflow: hidden;
  border-radius: 999px;
  background: #ffeae1;
}

.brand-meter span {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: #a04100;
}

.brand-meter.short span {
  width: 52%;
}

.brand-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.brand-scenario-grid article {
  display: grid;
  gap: 14px;
}

.brand-scenario-grid strong {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid #a04100;
  color: #a04100;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 900;
}

.brand-scenario-grid h3 {
  color: #261812;
  font-size: 1rem;
  font-weight: 900;
}

.brand-scenario-grid p {
  color: #5c647a;
  font-size: 0.9rem;
  line-height: 1.62;
}

.brand-honest-section {
  padding: 96px 0;
  background: rgba(248, 221, 210, 0.3);
}

.brand-honest-card {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #e2bfb0;
  border-radius: 10px;
  background: #ffffff;
  padding: 48px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.brand-honest-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: #ef4444;
}

.brand-honest-card ul {
  display: grid;
  gap: 24px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.brand-honest-card li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 14px;
  color: #261812;
  font-size: 0.94rem;
  line-height: 1.6;
}

.brand-honest-card .material-symbol {
  color: #ef4444;
  font-size: 22px;
}

.brand-final-cta {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background: #ff6b00;
  color: #ffffff;
  text-align: center;
}

.brand-final-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 107, 0, 0.9), rgba(255, 107, 0, 0.9)),
    url("https://lh3.googleusercontent.com/aida-public/AB6AXuAwrPIGBhSq-t7z6Recz7ENFjxVym9pnXgPTTao9R2RHsBybruGfzzZ6WaWDfoMQGs4EnLQbB38NloFFf986BMz62AkmKUA3wLQ3ZHTUfRdXU74DCv350SVDQWOSCOb_Ee6Kfxhu69vjrgTCk0WYve_CnqL4iDdV_vUhnPguhJpBy3gW1SuzTBTxaDJB5MtujX7C59hZjtPOf3ruOE5dPG4usEz0T9MBEVN8lkOKFW3Kr9c7PWGvY3zOWmui3HuqX9x4WFlOPRUX8");
  background-position: center;
  background-size: cover;
  opacity: 0.18;
}

.brand-final-cta .container {
  position: relative;
  z-index: 1;
}

.brand-final-cta h2 {
  max-width: 860px;
  margin: 0 auto;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.brand-final-cta p {
  max-width: 660px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.65;
}

.brand-final-cta .link-row {
  margin-top: 36px;
}

.brand-final-cta .button-primary {
  background: #ffffff;
  color: #a04100;
}

.brand-final-cta .button-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #ffffff;
}

@media (min-width: 768px) {
  .brands-solution-page .brand-value-section,
  .brands-solution-page .brand-report-section,
  .brands-solution-page .brand-honest-section,
  .brands-solution-page .brand-final-cta,
  .ai-platform-page .ai-platform-hero,
  .ai-platform-page .ai-report-section,
  .ai-platform-page .ai-scope-section {
    width: min(72rem, calc(100% - 32px));
    margin-top: 32px;
    margin-right: auto;
    margin-left: auto;
    border-radius: 12px;
  }

  .brands-solution-page .brand-value-section > .container,
  .brands-solution-page .brand-report-section > .container,
  .brands-solution-page .brand-honest-section > .container,
  .brands-solution-page .brand-final-cta > .container,
  .ai-platform-page .ai-platform-hero > .container,
  .ai-platform-page .ai-report-section > .container,
  .ai-platform-page .ai-scope-section > .container {
    width: min(100%, calc(100% - 64px));
  }
}

.ai-platform-page {
  background: #fff8f6;
  color: #261812;
}

.ai-platform-page .section-title {
  color: #261812;
}

.ai-platform-page .section-lead,
.ai-platform-page .lead {
  color: #5a4136;
}

.ai-platform-page .button-primary {
  background: #ff6b00;
  color: #ffffff;
}

.ai-platform-page .button-secondary {
  border-color: #261812;
  color: #261812;
}

.ai-platform-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 460px;
  overflow: hidden;
  margin-top: 24px;
  padding: 72px 0 56px;
  border-radius: 12px;
  background: #3d2d26;
  color: #ffffff;
}

.ai-platform-hero-media {
  position: absolute;
  inset: 0;
  background-image: url("https://lh3.googleusercontent.com/aida-public/AB6AXuDZZmjUWn4zH_roAnKG3gtjm63uW0JSv-6e7N7dbwqeOOxWOPyLl3aQuV4u1Gg4zMBwaM7QvihZ3p1Xh__xpYkG5vwWv5k2bopJtVTMym-_G9JKvfmU2h5yjJtck-0LUZTOEB9QDUmgkdpyjm4Mis38MJIzNGhhscL4n3W7VKOdv-OjPKz3nSrEe_L5pLbg06ddnmpcxZPRcHHl2WIM8sPUqbm6fhOTqKoeN_K753fGC_u4M1jBeNg8oCtfQrTuyqeK5VT0uvLpTNg");
  background-position: center;
  background-size: cover;
  opacity: 0.4;
  mix-blend-mode: overlay;
}

.ai-platform-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #3d2d26 0%, rgba(61, 45, 38, 0.84) 48%, rgba(61, 45, 38, 0.18) 100%);
}

.ai-platform-hero .container {
  position: relative;
  z-index: 1;
}

.ai-platform-hero-copy {
  max-width: 780px;
}

.ai-platform-badge {
  display: inline-flex;
  margin-bottom: 18px;
  border-left: 2px solid #ff6b00;
  border-radius: 4px;
  background: rgba(255, 107, 0, 0.18);
  padding: 7px 12px;
  color: #ffb693;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-platform-hero .page-title {
  max-width: 820px;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.ai-platform-hero .lead {
  max-width: 680px;
  margin-top: 18px;
  color: rgba(255, 237, 230, 0.9);
}

.ai-platform-hero .link-row {
  margin-top: 28px;
}

.ai-platform-hero .button-secondary {
  border-color: rgba(226, 191, 176, 0.72);
  background: transparent;
  color: #ffffff;
}

.ai-workflow-section,
.ai-scenario-section,
.ai-faq-section {
  padding: 96px 0;
  background: #fff8f6;
}

.ai-section-rule {
  display: block;
  width: 92px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 999px;
  background: #ff6b00;
}

.ai-workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin-top: 58px;
}

.ai-workflow-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: #e2bfb0;
}

.ai-workflow-grid article {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.ai-workflow-grid .material-symbol {
  z-index: 1;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  border: 2px solid #ff6b00;
  border-radius: 999px;
  background: #fee3d8;
  color: #a04100;
  font-size: 30px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.ai-workflow-grid article:hover .material-symbol {
  transform: translateY(-2px);
  background: #ff6b00;
  color: #ffffff;
}

.ai-workflow-grid h3 {
  color: #261812;
  font-size: 1.08rem;
  font-weight: 900;
}

.ai-workflow-grid p {
  margin-top: 8px;
  color: #5a4136;
  font-size: 0.9rem;
  line-height: 1.6;
}

.ai-report-section {
  padding: 96px 0;
  background: #fafafa;
}

.ai-report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.ai-report-grid article {
  border: 1px solid #e2bfb0;
  border-radius: 14px;
  background: #ffffff;
  padding: 32px;
  box-shadow: 0 14px 32px rgba(61, 45, 38, 0.08);
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.ai-report-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(61, 45, 38, 0.12);
}

.ai-report-grid .material-symbol {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 10px;
  background: #fff1eb;
  color: #a04100;
  font-size: 26px;
  transition: background 160ms ease, color 160ms ease;
}

.ai-report-grid article:hover .material-symbol {
  background: #ff6b00;
  color: #ffffff;
}

.ai-report-grid h3 {
  color: #261812;
  font-size: 1.15rem;
  font-weight: 900;
}

.ai-report-grid p {
  margin-top: 10px;
  color: #5a4136;
  font-size: 0.92rem;
  line-height: 1.65;
}

.ai-bento-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(260px, auto);
  gap: 24px;
}

.ai-bento-grid article {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid #e2bfb0;
  border-radius: 18px;
  background: #ffeae1;
  padding: 32px;
}

.ai-bento-grid article:nth-child(1),
.ai-bento-grid article:nth-child(2),
.ai-bento-grid article:nth-child(3),
.ai-bento-grid article:nth-child(4) {
  grid-column: span 2;
}

.ai-bento-grid article:nth-child(2) {
  background: #dae2fd;
}

.ai-bento-grid article:nth-child(3) {
  background: rgba(138, 154, 178, 0.18);
}

.ai-bento-grid article:nth-child(4) {
  background: #f8ddd2;
}

.ai-bento-grid strong {
  display: inline-flex;
  width: fit-content;
  border-radius: 4px;
  background: #ff6b00;
  padding: 5px 10px;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 900;
}

.ai-bento-grid article:nth-child(2) strong {
  background: #565e74;
}

.ai-bento-grid article:nth-child(3) strong {
  background: #505f76;
}

.ai-bento-grid article:nth-child(4) strong {
  background: #261812;
}

.ai-bento-grid h3 {
  margin-top: 18px;
  color: #261812;
  font-size: 1.24rem;
  font-weight: 900;
}

.ai-bento-grid p {
  max-width: 22rem;
  margin-top: 10px;
  color: #5a4136;
  font-size: 0.92rem;
  line-height: 1.6;
}

.ai-bento-grid .material-symbol {
  position: absolute;
  right: -28px;
  bottom: -42px;
  color: rgba(38, 24, 18, 0.12);
  font-size: 170px;
  transition: transform 220ms ease;
}

.ai-bento-grid article:hover .material-symbol {
  transform: scale(1.08);
}

.ai-scope-section {
  padding: 96px 0;
  background: #3d2d26;
  color: #ffffff;
}

.ai-scope-inner {
  max-width: 860px;
}

.ai-scope-inner h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.ai-scope-inner > p {
  max-width: 720px;
  margin-top: 24px;
  border-left: 2px solid #ff6b00;
  padding-left: 24px;
  color: rgba(255, 237, 230, 0.7);
  line-height: 1.65;
}

.ai-limit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 52px;
}

.ai-limit-grid article {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 16px;
}

.ai-limit-grid .material-symbol {
  color: #ef4444;
}

.ai-limit-grid h3 {
  font-size: 1rem;
  font-weight: 900;
}

.ai-limit-grid p {
  margin-top: 6px;
  color: rgba(255, 237, 230, 0.64);
  font-size: 0.88rem;
  line-height: 1.6;
}

.ai-faq-section .solution-accordion details {
  border-color: #e2bfb0;
  background: #fff1eb;
}

.ai-final-section {
  padding: 96px 0;
  background: #fff8f6;
}

.ai-final-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #a04100;
  padding: 76px;
  color: #ffffff;
  text-align: center;
}

.ai-final-card > .material-symbol {
  position: absolute;
  top: 0;
  right: 24px;
  color: rgba(255, 255, 255, 0.1);
  font-size: 230px;
}

.ai-final-card h2 {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.ai-final-card p {
  position: relative;
  max-width: 600px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.ai-final-card .link-row {
  position: relative;
  justify-content: center;
  margin-top: 38px;
}

.ai-final-card .button-primary {
  background: #ffffff;
  color: #a04100;
}

.ai-final-card .button-secondary {
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #ffffff;
}

.compliance-page {
  background: #fff8f6;
  color: #261812;
}

.compliance-page .button-primary {
  background: #ff6b00;
  color: #ffffff;
}

.compliance-page .button-secondary {
  border-color: #261812;
  color: #261812;
}

.compliance-hero {
  padding: 104px 0 96px;
  background: #fff8f6;
}

.compliance-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 64px;
  align-items: center;
}

.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 26px;
  border-left: 4px solid #a04100;
  background: rgba(160, 65, 0, 0.1);
  padding: 7px 12px;
  color: #a04100;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.compliance-badge .material-symbol {
  font-size: 18px;
}

.compliance-hero .page-title {
  max-width: 760px;
  color: #261812;
  font-size: clamp(2.25rem, 4.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.compliance-hero .lead {
  max-width: 620px;
  margin-top: 24px;
  color: #565e74;
}

.compliance-status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 34px;
}

.compliance-status-strip span {
  display: inline-flex;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.compliance-status-strip .trusted {
  border-color: rgba(16, 185, 129, 0.34);
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.compliance-status-strip .untrusted {
  border-color: rgba(245, 158, 11, 0.34);
  background: rgba(245, 158, 11, 0.12);
  color: #b45309;
}

.compliance-status-strip .invalid {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

.compliance-status-strip .none {
  border-color: rgba(148, 163, 184, 0.38);
  background: rgba(148, 163, 184, 0.16);
  color: #64748b;
}

.compliance-hero-media {
  position: relative;
  margin: 0;
}

.compliance-hero-media::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -22px;
  z-index: -1;
  width: 128px;
  height: 128px;
  border-right: 8px solid rgba(160, 65, 0, 0.16);
  border-bottom: 8px solid rgba(160, 65, 0, 0.16);
}

.compliance-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
}

.compliance-value-section {
  padding: 96px 0;
  background: #fafafa;
}

.compliance-value-copy {
  max-width: 920px;
}

.compliance-value-copy h2 {
  max-width: 560px;
  border-left: 4px solid #a04100;
  padding-left: 22px;
  color: #a04100;
  font-size: clamp(1.45rem, 2.6vw, 1.75rem);
}

.compliance-value-copy > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 40px;
  margin-top: 34px;
}

.compliance-value-copy p {
  color: #565e74;
  font-size: 0.98rem;
  line-height: 1.72;
}

.compliance-value-copy p:first-child {
  color: #261812;
  font-size: 1.08rem;
}

.compliance-workflow-section,
.compliance-scenario-section,
.compliance-faq-section,
.compliance-final-section {
  padding: 96px 0;
  background: #fff8f6;
}

.compliance-workflow-section .section-title {
  margin-bottom: 56px;
  color: #261812;
  text-align: center;
}

.compliance-workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.compliance-workflow-grid article {
  display: flex;
  min-height: 256px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  transition: transform 160ms ease, border-color 160ms ease;
}

.compliance-workflow-grid article:hover {
  transform: translateY(-2px);
  border-color: #ff6b00;
}

.compliance-workflow-grid .accent {
  border-top: 4px solid #ff6b00;
}

.compliance-workflow-grid span {
  color: rgba(38, 24, 18, 0.18);
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.compliance-workflow-grid h3 {
  margin-top: 16px;
  color: #261812;
  font-size: 1.18rem;
  font-weight: 900;
}

.compliance-workflow-grid p {
  color: #565e74;
  font-size: 0.84rem;
  line-height: 1.55;
}

.compliance-report-section {
  padding: 96px 0;
  color: #fff8f6;
}

.compliance-report-section > .container {
  border-radius: 28px;
  background: #261812;
  padding: 72px;
  box-shadow: 0 24px 70px rgba(38, 24, 18, 0.16);
}

.compliance-report-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 56px;
}

.compliance-report-head h2 {
  max-width: 620px;
  color: #fff8f6;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.compliance-report-head p {
  max-width: 620px;
  margin-top: 14px;
  color: #efd5ca;
}

.compliance-format-card {
  flex: 0 0 auto;
  border: 1px solid rgba(255, 107, 0, 0.5);
  border-radius: 10px;
  background: rgba(255, 107, 0, 0.16);
  padding: 16px;
  color: #ffb693;
}

.compliance-format-card .material-symbol {
  display: block;
  margin-bottom: 8px;
  font-size: 28px;
}

.compliance-format-card p {
  margin: 0;
  color: #fff8f6;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.compliance-report-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.compliance-report-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  transition: background 160ms ease;
}

.compliance-report-grid article:hover {
  background: rgba(255, 255, 255, 0.1);
}

.compliance-report-grid strong {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  background: #a04100;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 0.74rem;
}

.compliance-report-grid h3 {
  color: #ffffff;
  font-size: 1.16rem;
  font-weight: 900;
}

.compliance-report-grid p {
  margin-top: 12px;
  color: #efd5ca;
  font-size: 0.9rem;
  line-height: 1.62;
}

.compliance-scenario-section h2 {
  margin-bottom: 42px;
  border-bottom: 1px solid #ffdbcc;
  padding-bottom: 16px;
  color: #a04100;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compliance-scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.compliance-scenario-grid article {
  display: grid;
  gap: 16px;
  border: 1px solid #e2bfb0;
  background: #fff8f6;
  padding: 30px;
}

.compliance-scenario-grid span {
  width: fit-content;
  background: rgba(160, 65, 0, 0.1);
  padding: 5px 9px;
  color: #a04100;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 900;
}

.compliance-scenario-grid h3 {
  color: #261812;
  font-size: 1.08rem;
  font-weight: 900;
}

.compliance-scenario-grid p {
  color: #565e74;
  font-size: 0.9rem;
  line-height: 1.62;
}

.compliance-scope-section {
  padding: 96px 0;
  background: #fafafa;
}

.compliance-scope-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 64px;
  align-items: center;
}

.compliance-scope-grid h2 {
  color: #261812;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.compliance-scope-grid ul {
  display: grid;
  gap: 20px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.compliance-scope-grid li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #261812;
  font-size: 1rem;
  line-height: 1.55;
}

.compliance-scope-grid li .material-symbol {
  color: #ef4444;
  font-size: 22px;
}

.compliance-principle-card {
  border: 1px solid #e2bfb0;
  border-radius: 16px;
  background: #ffffff;
  padding: 44px;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

.compliance-principle-card > div {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.compliance-principle-card .material-symbol {
  color: #a04100;
  font-size: 40px;
}

.compliance-principle-card h3 {
  color: #261812;
  font-size: 1.2rem;
  font-weight: 900;
}

.compliance-principle-card p {
  border-bottom: 1px solid #e2bfb0;
  padding-bottom: 24px;
  color: #565e74;
  line-height: 1.7;
}

.compliance-principle-card small {
  display: block;
  margin-top: 22px;
  color: #a04100;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.compliance-faq-section {
  padding: 96px 0;
  background: #fff8f6;
}

.compliance-faq-section .section-head {
  margin-bottom: 40px;
}

.compliance-faq-section .section-title {
  color: #261812;
}

.compliance-final-card {
  border-radius: 24px;
  background: #ff6b00;
  padding: 72px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}

.compliance-final-card h2 {
  max-width: 800px;
  margin: 0 auto;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.compliance-final-card p {
  max-width: 640px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.compliance-final-card .link-row {
  justify-content: center;
  margin-top: 34px;
}

.compliance-final-card .button-primary {
  background: #ffffff;
  color: #ff6b00;
}

.compliance-final-card .button-secondary {
  border-color: #ffffff;
  background: #ffffff;
  color: #ff6b00;
}

.compliance-final-card .button-secondary:hover {
  background: #fff8f6;
  color: #a04100;
}

@media (max-width: 1024px) {
  .solution-hero-grid,
  .solution-workflow-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .solution-sticky-copy {
    position: static;
  }

  .solution-status-grid,
  .solution-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-evidence-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .solution-horizontal-workflow,
  .solution-report-grid,
  .solution-bento-grid,
  .brand-value-grid,
  .brand-report-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-horizontal-workflow::before {
    display: none;
  }

  .brand-solution-hero {
    padding: 104px 0 72px;
  }

  .brand-value-grid {
    gap: 42px;
  }

  .brand-workflow,
  .brand-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-workflow-step:not(:last-child)::after {
    display: none;
  }

  .ai-workflow-grid,
  .ai-report-grid,
  .ai-bento-grid,
  .ai-limit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ai-workflow-grid::before {
    display: none;
  }

  .ai-platform-hero {
    min-height: auto;
  }

  .compliance-hero-grid,
  .compliance-value-copy > div,
  .compliance-scope-grid {
    grid-template-columns: 1fr;
  }

  .compliance-workflow-grid,
  .compliance-report-grid,
  .compliance-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compliance-hero-media {
    display: none;
  }
}

@media (max-width: 620px) {
  .solution-hero,
  .solution-section,
  .solution-status-section,
  .solution-evidence-section,
  .solution-scope-section,
  .solution-final-cta,
  .solution-dark-hero,
  .solution-report-section,
  .solution-dark-scope,
  .solution-card-cta {
    padding: 56px 0;
  }

  .solution-page .section-title,
  .solution-final-cta h2 {
    font-size: 2rem;
  }

  .solution-hero .link-row,
  .solution-final-cta .link-row,
  .solution-dark-hero .link-row,
  .solution-card-cta .link-row {
    align-items: stretch;
    flex-direction: column;
  }

  .solution-hero-media img {
    aspect-ratio: 4 / 3;
  }

  .solution-evidence-section > .container {
    border-radius: 22px;
    padding: 28px;
  }

  .solution-final-cta > .container {
    border-radius: 22px;
    padding: 44px 22px;
  }

  .solution-status-grid,
  .solution-evidence-grid,
  .solution-scenario-grid,
  .solution-scope-card,
  .solution-faq-grid,
  .solution-horizontal-workflow,
  .solution-report-grid,
  .solution-bento-grid,
  .solution-limit-grid {
    grid-template-columns: 1fr;
  }

  .solution-dark-hero {
    min-height: auto;
  }

  .solution-dark-copy .page-title {
    font-size: 2.3rem;
  }

  .solution-card-cta-inner {
    padding: 44px 22px;
  }

  .solution-scope-card .good {
    border-right: 0;
    border-bottom: 1px solid rgba(226, 191, 176, 0.5);
  }

  .solution-scope-card > div {
    padding: 28px;
  }

  .solution-step {
    gap: 18px;
  }

  .brand-solution-hero {
    padding: 104px 0 72px;
  }

  .brand-value-grid {
    gap: 42px;
  }

  .brand-workflow,
  .brand-scenario-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-workflow-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 620px) {
  .brand-solution-hero,
  .brand-value-section,
  .brand-report-section,
  .brand-honest-section,
  .brand-final-cta {
    padding: 56px 0;
  }

  .brand-solution-hero .page-title,
  .brand-final-cta h2 {
    font-size: 2.15rem;
  }

  .brand-value-grid,
  .brand-value-cards,
  .brand-workflow,
  .brand-report-grid,
  .brand-scenario-grid {
    grid-template-columns: 1fr;
  }

  .brand-value-cards article:nth-child(2) {
    transform: none;
  }

  .brand-report-grid .tall {
    grid-row: auto;
  }

  .brand-honest-card {
    padding: 34px 24px;
  }

  .ai-platform-hero,
  .ai-workflow-section,
  .ai-report-section,
  .ai-scenario-section,
  .ai-scope-section,
  .ai-faq-section,
  .ai-final-section {
    padding: 56px 0;
  }

  .ai-platform-hero .page-title,
  .ai-final-card h2 {
    font-size: 2.15rem;
  }

  .ai-workflow-grid,
  .ai-report-grid,
  .ai-bento-grid,
  .ai-limit-grid {
    grid-template-columns: 1fr;
  }

  .ai-bento-grid article:nth-child(1),
  .ai-bento-grid article:nth-child(2),
  .ai-bento-grid article:nth-child(3),
  .ai-bento-grid article:nth-child(4) {
    grid-column: auto;
  }

  .ai-final-card {
    padding: 44px 22px;
  }

  .compliance-hero,
  .compliance-value-section,
  .compliance-workflow-section,
  .compliance-report-section,
  .compliance-scenario-section,
  .compliance-scope-section,
  .compliance-faq-section,
  .compliance-final-section {
    padding: 56px 0;
  }

  .compliance-hero .page-title,
  .compliance-final-card h2 {
    font-size: 2.15rem;
  }

  .compliance-workflow-grid,
  .compliance-report-grid,
  .compliance-scenario-grid {
    grid-template-columns: 1fr;
  }

  .compliance-report-section > .container {
    border-radius: 22px;
    padding: 28px;
  }

  .compliance-report-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .compliance-final-card,
  .compliance-principle-card {
    padding: 34px 24px;
  }
}

.enterprise-page .page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  padding-bottom: 72px;
}

.enterprise-page .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 15% 0%, #fdefea, transparent 70%);
  pointer-events: none;
}

.enterprise-page .page-hero .container {
  position: relative;
}

.enterprise-badge {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: var(--primary-soft);
  padding: 5px 12px;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.enterprise-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.enterprise-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.enterprise-card {
  min-height: 210px;
  padding: 20px;
}

.enterprise-card strong {
  color: var(--foreground);
}

.enterprise-deliverable-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.enterprise-deliverable-list li {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  padding: 16px;
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.45;
}

.enterprise-process {
  display: grid;
  gap: 16px;
  counter-reset: enterprise-step;
}

.enterprise-process li {
  position: relative;
  display: grid;
  gap: 4px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  padding: 20px 20px 20px 58px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
  counter-increment: enterprise-step;
}

.enterprise-process li::before {
  content: counter(enterprise-step);
  position: absolute;
  top: 20px;
  left: 20px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
}

.enterprise-custom-block {
  margin-top: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  padding: 30px;
}

.enterprise-custom-block h2 {
  color: var(--foreground);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.enterprise-custom-block p {
  max-width: 48rem;
  margin-top: 10px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
}

.enterprise-detail-stack {
  display: grid;
  gap: 24px;
}

.enterprise-detail-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  padding: 24px;
}

.enterprise-detail-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.enterprise-detail-head .card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  border-radius: 10px;
}

.enterprise-detail-card h2 {
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.enterprise-detail-card p {
  margin-top: 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
}

.enterprise-detail-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 28px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.enterprise-detail-card li {
  position: relative;
  padding-left: 22px;
  color: var(--foreground);
  font-size: 0.84rem;
  line-height: 1.45;
}

.enterprise-detail-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 800;
}

.enterprise-step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.enterprise-step-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  padding: 24px;
}

.enterprise-step-card .step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.enterprise-step-card .step-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
}

.enterprise-step-card .step-number {
  color: rgba(100, 116, 139, 0.3);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.enterprise-step-card h3 {
  color: var(--foreground);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.enterprise-step-card p {
  margin-top: 10px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.enterprise-not-card {
  border: 1px solid rgba(239, 68, 68, 0.32);
  border-radius: 12px;
  background: rgba(254, 242, 242, 0.45);
  padding: 24px;
}

.enterprise-not-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.enterprise-not-card li {
  position: relative;
  padding-left: 28px;
  color: var(--foreground);
  font-size: 0.875rem;
  line-height: 1.5;
}

.enterprise-not-card li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #ef4444;
  font-size: 1.1rem;
  line-height: 1;
}

.install-enterprise-block {
  margin-top: 0;
  text-align: left;
}

.install-enterprise-block .link-row {
  margin-top: 18px;
}

.enterprise-v2 {
  overflow: hidden;
  background: #fff8f6;
  color: #2a160f;
}

.enterprise-v2 .container {
  width: min(78rem, calc(100% - 48px));
}

.enterprise-v2-hero {
  position: relative;
  isolation: isolate;
  min-height: 660px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(226, 191, 176, 0.55);
  overflow: hidden;
}

.enterprise-v2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 248, 246, 0.98) 0%, rgba(255, 248, 246, 0.92) 42%, rgba(255, 248, 246, 0.18) 100%),
    url("https://lh3.googleusercontent.com/aida-public/AB6AXuBK4P6yEPw_qQjhA07ZkbdjRbq_DU4yv5jS3jDwWzLFVfV7Hh4im1Mu0c5vYK-Qj3mtol43ntV2JnKAUxbd0VZUZ6C0fRWQ485NIyTLT8WuwXwZVlnjOi0mHm3wy0fP6VvO5sGpqwxzZUVLiOPZi66b3bMkknshx9-JNkRXaCzH7nbQFLSpajw5ijVmNy8X9mTQ3bsR4rHiU3UOUQ7tZCH4AoLsupc0m2q5WpOoMK3nRmmf8XEY8x9UTJvf52D_ODPGWtoBR6BQeE") center right / cover no-repeat;
  opacity: 0.88;
}

.enterprise-v2-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 24% 32%, rgba(255, 107, 0, 0.16), transparent 28rem);
}

.enterprise-v2-hero-copy {
  max-width: 710px;
  padding: 96px 0;
}

.enterprise-v2-kicker,
.enterprise-v2-dark-kicker {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.12);
  padding: 7px 14px;
  color: #b54312;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.enterprise-v2-hero h1 {
  max-width: 680px;
  margin-top: 22px;
  color: #2a160f;
  font-size: clamp(2.7rem, 6vw, 5.75rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.enterprise-v2-hero-copy > p:not(.enterprise-v2-kicker) {
  max-width: 600px;
  margin-top: 26px;
  color: #5d4036;
  font-size: 1.08rem;
  line-height: 1.75;
}

.enterprise-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.enterprise-v2-extend,
.enterprise-v2-technical,
.enterprise-v2-details,
.enterprise-v2-collaboration,
.enterprise-v2-scope {
  padding: 104px 0;
  border-bottom: 1px solid rgba(226, 191, 176, 0.45);
}

.enterprise-v2-technical,
.enterprise-v2-collaboration {
  background: #fafafa;
}

.enterprise-v2-heading {
  display: grid;
  gap: 16px;
  max-width: 680px;
}

.enterprise-v2-heading h2,
.enterprise-v2-technical h2,
.enterprise-v2-centered h2,
.enterprise-v2-scope-card h2,
.enterprise-v2-final h2 {
  color: #2a160f;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.enterprise-v2-heading > span {
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: #ff6b00;
}

.enterprise-v2-heading p,
.enterprise-v2-centered p,
.enterprise-v2-final p {
  max-width: 620px;
  color: #5d4036;
  font-size: 1rem;
  line-height: 1.7;
}

.enterprise-v2-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 54px;
}

.enterprise-v2-feature-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  border: 1px solid rgba(226, 191, 176, 0.78);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  padding: 24px;
  box-shadow: 0 18px 42px rgba(42, 22, 15, 0.04);
}

.enterprise-v2-feature-icon,
.enterprise-v2-scope-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #ffeadf;
  color: #ff5a1f;
}

.enterprise-v2-feature-card h3 {
  margin-top: 26px;
  color: #2a160f;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.enterprise-v2-feature-card p {
  margin-top: 12px;
  color: #5d4036;
  font-size: 0.92rem;
  line-height: 1.65;
}

.enterprise-v2-feature-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: auto;
  padding-top: 28px;
  color: #f4511e;
  font-size: 0.88rem;
  font-weight: 800;
}

.enterprise-v2-technical-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 56px;
}

.enterprise-v2-check-list {
  display: grid;
  gap: 24px;
  margin-top: 38px;
}

.enterprise-v2-check-list article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
}

.enterprise-v2-check-list article > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #ffeadf;
  color: #f4511e;
  font-weight: 900;
}

.enterprise-v2-check-list h3 {
  color: #2a160f;
  font-size: 1.02rem;
  font-weight: 800;
}

.enterprise-v2-check-list p {
  margin-top: 8px;
  color: #5d4036;
  font-size: 0.94rem;
  line-height: 1.65;
}

.enterprise-v2-diagram {
  overflow: hidden;
  border: 1px solid rgba(226, 191, 176, 0.9);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(42, 22, 15, 0.08);
}

.enterprise-v2-diagram img {
  display: block;
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.enterprise-v2-details .enterprise-detail-stack {
  margin-top: 52px;
}

.enterprise-v2-details .enterprise-detail-card {
  border-color: rgba(226, 191, 176, 0.78);
  border-radius: 8px;
  padding: 30px;
}

.enterprise-v2-details .enterprise-detail-card h2 {
  color: #2a160f;
}

.enterprise-v2-details .enterprise-detail-card p,
.enterprise-v2-details .enterprise-detail-card li {
  color: #5d4036;
}

.enterprise-v2-centered {
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.enterprise-v2-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.enterprise-v2-path-grid article {
  position: relative;
  min-height: 230px;
  border: 1px solid rgba(226, 191, 176, 0.78);
  border-radius: 8px;
  background: #ffffff;
  padding: 28px 24px;
  box-shadow: 0 18px 42px rgba(42, 22, 15, 0.04);
}

.enterprise-v2-path-grid article::before {
  content: "";
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 10px;
  background: #ffeadf;
  color: #ff5a1f;
  font-family: "Material Symbols Rounded";
  font-size: 1.35rem;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.enterprise-v2-path-grid article:nth-child(1)::before {
  content: "search";
}

.enterprise-v2-path-grid article:nth-child(2)::before {
  content: "draw";
}

.enterprise-v2-path-grid article:nth-child(3)::before {
  content: "science";
}

.enterprise-v2-path-grid article:nth-child(4)::before {
  content: "rocket_launch";
}

.enterprise-v2-path-grid article > span {
  position: absolute;
  top: 28px;
  right: 24px;
  color: rgba(100, 116, 139, 0.28);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1;
}

.enterprise-v2-path-grid h3 {
  color: #2a160f;
  font-size: 1.04rem;
  font-weight: 800;
}

.enterprise-v2-path-grid p {
  margin-top: 12px;
  color: #5d4036;
  font-size: 0.92rem;
  line-height: 1.65;
}

.enterprise-v2-scope {
  background: #fff8f6;
}

.enterprise-v2-scope-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #2a160f;
  padding: 56px;
  color: #ffffff;
  box-shadow: 0 30px 90px rgba(42, 22, 15, 0.18);
}

.enterprise-v2-scope-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -45% auto;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.26), transparent 70%);
}

.enterprise-v2-scope-icon {
  margin-bottom: 26px;
  font-size: 1.4rem;
  font-weight: 900;
}

.enterprise-v2-scope-card h2 {
  margin-top: 20px;
  color: #ffffff;
}

.enterprise-v2-scope-card > p:not(.enterprise-v2-dark-kicker) {
  max-width: 640px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.7;
}

.enterprise-v2-scope-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.enterprise-v2-scope-grid span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
}

.enterprise-v2-final {
  background: #0f172a;
  padding: 96px 0;
  text-align: center;
}

.enterprise-v2-final h2 {
  color: #ffffff;
}

.enterprise-v2-final p {
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.72);
}

.enterprise-v2-final .button-primary {
  margin-top: 30px;
}

.enterprise-v2 {
  --enterprise-bg: #fff8f6;
  --enterprise-surface: #fff8f6;
  --enterprise-surface-lowest: #ffffff;
  --enterprise-surface-low: #fff1eb;
  --enterprise-surface-container: #ffeae1;
  --enterprise-surface-variant: #f8ddd2;
  --enterprise-on-surface: #261812;
  --enterprise-on-variant: #5a4136;
  --enterprise-outline: #8e7164;
  --enterprise-outline-variant: #e2bfb0;
  --enterprise-primary: #a04100;
  --enterprise-primary-container: #ff6b00;
  --enterprise-inverse: #3d2d26;
  --enterprise-inverse-on: #ffede6;
  overflow: hidden;
  background: var(--enterprise-bg);
  color: var(--enterprise-on-surface);
}

.enterprise-v2 .container {
  width: min(1200px, calc(100% - 48px));
}

.enterprise-v2 .material-symbol {
  font-family: "Material Symbols Rounded";
  font-size: 1.25rem;
  font-variation-settings: "FILL" 1, "wght" 500, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.enterprise-v2-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  width: min(1200px, calc(100% - 48px));
  min-height: 520px;
  align-items: center;
  margin: 64px auto 0;
  overflow: hidden;
  border: 1px solid var(--enterprise-outline-variant);
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.08);
}

.enterprise-v2-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to right, rgba(255, 248, 246, 0.95) 30%, rgba(255, 248, 246, 0.4) 100%),
    url("https://lh3.googleusercontent.com/aida-public/AB6AXuCjc4YyeR1IJ0Jw-P99PLu2nMF-gXnaOKT1QGwl5yHjyj0YqWW23Y6Pnj49MGYzE0GdBQXYa33TeiCROyzE94UN95dIqH99PjyJgPI6pI8A76jOJp1_nLNGuppejZdpqYgWDU3M9bps6rHiVnVomuYxP9gQ1T-t6IXItMCaZuAbui5PDlvuFcBJ-xAVt3Qyio-UO9R_Uj7xkh37VooWM-QOPw7r6Pf0PCV9g-ahxsmvlCDBhCvi3c_OqKlcLhUHrdRjlOhz75ukn0I") center / cover no-repeat;
  opacity: 1;
}

.enterprise-v2-hero-bg::after {
  content: none;
}

.enterprise-v2-hero-copy {
  max-width: 672px;
  padding: 72px 0;
}

.enterprise-v2-kicker {
  display: inline-flex;
  width: fit-content;
  border-radius: 2px;
  background: var(--enterprise-primary-container);
  padding: 4px 12px;
  color: #ffffff;
  font-family: var(--font-label);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.enterprise-v2-hero h1 {
  max-width: 672px;
  margin-top: 24px;
  color: var(--enterprise-on-surface);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.enterprise-v2-hero-copy > p:not(.enterprise-v2-kicker) {
  max-width: 640px;
  margin-top: 24px;
  color: var(--enterprise-on-variant);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.enterprise-v2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.enterprise-v2-actions .button-primary,
.enterprise-v2-actions .button-secondary,
.enterprise-v2-final .button-primary {
  border-radius: 4px;
  padding: 16px 32px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: none;
}

.enterprise-v2-actions .button-primary {
  background: var(--enterprise-primary-container);
  color: #ffffff;
}

.enterprise-v2-actions .button-secondary {
  border-color: var(--enterprise-on-surface);
  background: transparent;
  color: var(--enterprise-on-surface);
}

.enterprise-v2-extend,
.enterprise-v2-technical,
.enterprise-v2-collaboration,
.enterprise-v2-scope,
.enterprise-v2-final {
  padding: 96px 0;
  border-bottom: 0;
}

.enterprise-v2-extend,
.enterprise-v2-collaboration {
  background: var(--enterprise-surface);
}

.enterprise-v2-technical {
  border-top: 1px solid var(--enterprise-outline-variant);
  border-bottom: 1px solid var(--enterprise-outline-variant);
  background: var(--enterprise-surface-low);
}

.enterprise-v2-heading {
  display: block;
  max-width: 100%;
  margin-bottom: 64px;
}

.enterprise-v2-heading h2 {
  margin-bottom: 16px;
  color: var(--enterprise-primary);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

.enterprise-v2-heading > span {
  display: block;
  width: 80px;
  height: 4px;
  border-radius: 0;
  background: var(--enterprise-primary-container);
}

.enterprise-v2-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 0;
}

.enterprise-v2-feature-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--enterprise-outline-variant);
  border-radius: 0;
  background: var(--enterprise-surface-lowest);
  padding: 32px;
  box-shadow: none;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.enterprise-v2-feature-card:hover {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  transform: translateY(-2px);
}

.enterprise-v2-feature-card > .material-symbol {
  margin-bottom: 24px;
  color: var(--enterprise-primary);
  font-size: 40px;
  transition: transform 0.18s ease;
}

.enterprise-v2-feature-card:hover > .material-symbol {
  transform: scale(1.1);
}

.enterprise-v2-feature-card h3 {
  margin: 0 0 16px;
  color: var(--enterprise-on-surface);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}

.enterprise-v2-feature-card p {
  flex-grow: 1;
  margin: 0 0 24px;
  color: var(--enterprise-on-variant);
  font-size: 16px;
  line-height: 1.5;
}

.enterprise-v2-feature-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  padding-top: 0;
  color: var(--enterprise-primary);
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.enterprise-v2-feature-card a .material-symbol {
  font-size: 16px;
}

.enterprise-v2-technical-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 64px;
}

.enterprise-v2-technical h2,
.enterprise-v2-centered h2,
.enterprise-v2-scope-card h2 {
  color: var(--enterprise-on-surface);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
}

.enterprise-v2-check-list {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.enterprise-v2-check-list article {
  display: flex;
  gap: 16px;
}

.enterprise-v2-check-list article > .material-symbol {
  flex: 0 0 auto;
  color: var(--status-trusted);
  font-size: 24px;
}

.enterprise-v2-check-list h3 {
  margin: 0 0 4px;
  color: var(--enterprise-on-surface);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.enterprise-v2-check-list p {
  margin: 0;
  color: var(--enterprise-on-variant);
  font-size: 16px;
  line-height: 1.5;
}

.enterprise-v2-diagram {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.enterprise-v2-diagram::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 12px;
  background: rgba(255, 107, 0, 0.1);
  filter: blur(24px);
  transition: background 0.18s ease;
}

.enterprise-v2-diagram > img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border: 1px solid var(--enterprise-outline-variant);
  border-radius: 12px;
  background: #ffffff;
  object-fit: contain;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.enterprise-v2-centered {
  max-width: 1200px;
  margin: 0 auto 64px;
  text-align: center;
}

.enterprise-v2-centered p {
  max-width: 576px;
  margin: 16px auto 0;
  color: var(--enterprise-on-variant);
  font-size: 16px;
  line-height: 1.5;
}

.enterprise-v2-path-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  margin-top: 0;
}

.enterprise-v2-path-grid::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  border-top: 2px dashed var(--enterprise-outline-variant);
}

.enterprise-v2-path-grid article {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: auto;
  flex-direction: column;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  text-align: center;
  box-shadow: none;
}

.enterprise-v2-path-grid article::before {
  content: none;
}

.enterprise-v2-path-grid article > span {
  position: static;
  display: flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--enterprise-primary-container);
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.enterprise-v2-path-grid h3 {
  margin: 0 0 8px;
  color: var(--enterprise-on-surface);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.enterprise-v2-path-grid p {
  margin: 0;
  padding: 0 16px;
  color: var(--enterprise-on-variant);
  font-size: 14px;
  line-height: 1.5;
}

.enterprise-v2-scope {
  background: var(--enterprise-bg);
}

.enterprise-v2-scope-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: var(--enterprise-inverse);
  padding: 48px;
  color: var(--enterprise-inverse-on);
  box-shadow: none;
}

.enterprise-v2-scope-card::after {
  content: "info";
  position: absolute;
  top: 32px;
  right: 32px;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 237, 230, 0.1);
  font-family: "Material Symbols Rounded";
  font-size: 120px;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.enterprise-v2-dark-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: var(--enterprise-primary-container);
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.enterprise-v2-scope-card h2 {
  max-width: 672px;
  margin-top: 24px;
  color: var(--enterprise-bg);
}

.enterprise-v2-scope-card > p:not(.enterprise-v2-dark-kicker) {
  max-width: 672px;
  margin-top: 24px;
  color: rgba(248, 221, 210, 0.8);
  font-size: 18px;
  line-height: 1.6;
}

.enterprise-v2-scope-grid {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 672px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.enterprise-v2-scope-grid span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: var(--enterprise-surface-variant);
  font-family: var(--font-label);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.enterprise-v2-scope-grid span .material-symbol {
  color: var(--status-invalid);
  font-size: 16px;
}

.enterprise-v2-final {
  background: var(--enterprise-bg);
  padding: 96px 0;
  color: #ffffff;
  text-align: center;
}

.enterprise-v2-final > .container {
  border-radius: 28px;
  background: var(--enterprise-primary-container);
  padding: 72px;
  box-shadow: 0 24px 70px rgba(160, 65, 0, 0.16);
}

.enterprise-v2-final h2 {
  max-width: 850px;
  margin: 0 auto;
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.enterprise-v2-final p {
  max-width: 672px;
  margin: 32px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.6;
}

.enterprise-v2-final .button-primary {
  margin-top: 48px;
  background: #ffffff;
  color: var(--enterprise-primary);
}

.home-v2 {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 107, 0, 0.11), transparent 30rem),
    linear-gradient(180deg, #fff8f6 0%, #ffffff 34rem);
}

.home-topbar {
  border-bottom-color: rgba(226, 191, 176, 0.72);
  background: rgba(255, 248, 246, 0.9);
}

.home-nav {
  height: 78px;
}

.home-nav .brand span:last-child {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: -0.03em;
}

.home-nav-links {
  gap: 22px;
}

.nav-group {
  position: relative;
}

.nav-group::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -14px;
  right: -14px;
  height: 18px;
}

.nav-group-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: var(--muted-foreground);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.nav-group-trigger:hover,
.nav-group:focus-within .nav-group-trigger,
.nav-group:hover .nav-group-trigger {
  color: var(--primary);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 60;
  display: grid;
  min-width: 190px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 45px rgba(38, 24, 18, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.14s ease, transform 0.14s ease;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-menu a {
  border-radius: 10px;
  padding: 9px 10px;
  color: var(--foreground);
}

.nav-menu a:hover {
  background: var(--muted);
}

.home-hero {
  padding: 92px 0 74px;
}

.home-hero-grid,
.home-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 64px;
}

.home-hero-copy {
  max-width: 660px;
}

.home-badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--primary-soft);
  padding: 8px 14px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.home-hero h1 {
  margin-top: 28px;
  color: var(--foreground);
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.home-lead {
  max-width: 620px;
  margin-top: 32px;
  color: var(--secondary);
  font-size: clamp(1.1rem, 1.7vw, 1.42rem);
  line-height: 1.72;
}

.home-disclaimer {
  max-width: 610px;
  margin-top: 22px;
  color: var(--foreground);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.55;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.home-product-card {
  border: 1px solid rgba(226, 191, 176, 0.85);
  border-radius: 32px;
  background: linear-gradient(145deg, #fffaf7, #ffffff);
  padding: 24px;
  box-shadow: 0 30px 80px rgba(38, 24, 18, 0.14);
  transform: perspective(1100px) rotateY(-7deg);
  transform-origin: center;
}

.home-popup {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(226, 191, 176, 0.65);
  border-radius: 24px;
  background: #ffffff;
  padding: 22px;
}

.home-popup-head,
.popup-brand,
.popup-panel-head {
  display: flex;
  align-items: center;
}

.home-popup-head {
  justify-content: space-between;
  gap: 16px;
}

.popup-brand {
  gap: 12px;
}

.popup-logo,
.popup-settings,
.popup-panel-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
}

.popup-logo,
.popup-panel-icon {
  width: 42px;
  height: 42px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 900;
}

.popup-settings {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--secondary);
}

.popup-title,
.popup-panel-title {
  color: var(--foreground);
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.popup-title {
  font-size: 1rem;
}

.popup-sub,
.popup-panel-sub,
.popup-privacy,
.dropzone span {
  color: var(--secondary);
  font-size: 0.78rem;
  font-weight: 700;
}

.popup-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  padding: 5px;
}

.popup-tab {
  border-radius: 12px;
  padding: 10px;
  color: var(--secondary);
  text-align: center;
  font-weight: 800;
}

.popup-tab.active {
  background: #ffffff;
  color: var(--primary);
}

.popup-panel {
  display: grid;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
  padding: 16px;
}

.popup-panel-head {
  gap: 12px;
}

.popup-panel-icon.blue {
  background: #eef6ff;
  color: #2563eb;
}

.popup-orange-btn {
  border-radius: 10px;
  background: linear-gradient(180deg, var(--primary-strong), #f4511e);
  padding: 11px 12px;
  color: #ffffff;
  text-align: center;
  font-weight: 900;
}

.dropzone {
  display: grid;
  gap: 4px;
  justify-items: center;
  border: 1px dashed #b8d0ff;
  border-radius: 16px;
  background: #f8fbff;
  padding: 20px 12px;
  text-align: center;
}

.dropzone strong {
  color: var(--foreground);
  font-size: 0.82rem;
}

.dropzone .file-types {
  margin-top: 4px;
  border-radius: 999px;
  background: #edf3fb;
  padding: 4px 10px;
  font-size: 0.68rem;
}

.home-section,
.home-proof-section {
  padding: 76px 0;
}

.home-proof-section {
  border-top: 1px solid rgba(226, 191, 176, 0.45);
  background: rgba(255, 255, 255, 0.72);
}

.home-muted {
  border-top: 1px solid rgba(226, 191, 176, 0.45);
  border-bottom: 1px solid rgba(226, 191, 176, 0.45);
  background: var(--surface);
}

.home-section-title {
  color: var(--foreground);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.home-section-title.center,
.home-section-lead.center {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.home-section-lead {
  margin-top: 18px;
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.7;
}

.home-card-grid,
.home-action-grid,
.home-flow-grid,
.home-scope-grid,
.home-enterprise-grid {
  display: grid;
  gap: 20px;
  margin-top: 42px;
}

.home-card-grid.four,
.home-action-grid,
.home-enterprise-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.home-card,
.home-team-card,
.status-card,
.home-action-grid article,
.home-flow-grid article,
.home-enterprise-grid div {
  min-height: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(38, 24, 18, 0.04);
}

.home-card-icon,
.home-action-grid article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  font-family: "Material Symbols Rounded";
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.home-card h3,
.home-team-card h3,
.status-card h3,
.home-action-grid h3,
.home-flow-grid h3,
.home-enterprise-grid h3 {
  color: var(--foreground);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.home-card p,
.home-team-card p,
.status-card p,
.home-action-grid p,
.home-flow-grid p,
.home-enterprise-grid p {
  margin-top: 10px;
  color: var(--muted-foreground);
}

.home-team-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 800;
}

.home-split {
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1fr);
}

.home-capture-stage {
  position: relative;
  z-index: 0;
  width: min(100%, 390px);
  overflow: visible;
}

.home-capture {
  position: relative;
  border: 1px solid rgba(226, 191, 176, 0.45);
  border-radius: 12px;
  background: #ffffff;
  padding: 20px 16px 16px;
  box-shadow: 0 18px 48px rgba(38, 24, 18, 0.08);
}

.home-capture-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(226, 191, 176, 0.55);
  border-radius: 999px;
  background: #ffffff;
  padding: 7px 13px;
  color: #a04100;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.home-capture-badge .material-symbol {
  font-size: 1rem;
}

.home-capture-inner {
  display: block;
}

.home-capture img {
  width: min(78%, 360px);
  height: auto;
}

.home-capture .home-popup {
  border: 0;
  box-shadow: none;
  padding: 0;
  gap: 12px;
}

.home-capture .popup-logo,
.home-capture .popup-panel-icon {
  width: 36px;
  height: 36px;
}

.home-capture .popup-settings {
  width: 34px;
  height: 34px;
}

.home-capture .popup-title {
  font-size: 0.92rem;
}

.home-capture .popup-panel {
  gap: 10px;
  padding: 12px;
}

.home-capture .popup-orange-btn {
  padding: 9px 10px;
  font-size: 0.8rem;
}

.home-capture .dropzone {
  padding: 14px 10px;
}

.product-section-popup {
  width: min(100%, 330px);
  margin: 0 auto;
}

@keyframes home-capture-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.home-capture-float {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 10px;
  max-width: 210px;
  border: 1px solid rgba(226, 191, 176, 0.55);
  border-radius: 16px;
  background: #ffffff;
  padding: 10px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  color: #5a4136;
  font-size: 0.8rem;
  line-height: 1.45;
  animation: home-capture-float 5s ease-in-out infinite;
  will-change: transform;
}

.home-capture-float-visual {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(145deg, #fff8f6, #fff1eb);
}

.home-capture-float-visual.trusted {
  display: grid;
  place-items: center;
  padding: 16px 12px;
}

.home-capture-float-visual.trusted img {
  width: 72px;
  height: 72px;
  border: 3px solid #ffffff;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
}

.home-capture-float-status-dot {
  position: absolute;
  right: 14px;
  bottom: 10px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--status-trusted);
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(16, 185, 129, 0.35);
}

.home-capture-float-status-dot .material-symbol {
  font-size: 1rem;
}

.home-capture-float-browser {
  padding: 10px 10px 12px;
}

.home-capture-float-browser-chrome {
  display: flex;
  gap: 4px;
  margin-bottom: 8px;
}

.home-capture-float-browser-chrome span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #e2bfb0;
}

.home-capture-float-browser-chrome span:first-child {
  background: #f87171;
}

.home-capture-float-browser-chrome span:nth-child(2) {
  background: #fbbf24;
}

.home-capture-float-browser-chrome span:nth-child(3) {
  background: #34d399;
}

.home-capture-float-browser-body {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(226, 191, 176, 0.45);
  border-radius: 8px;
  background: #ffffff;
  padding: 8px;
}

.home-capture-float-browser-body span {
  display: block;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.18);
}

.home-capture-float-browser-body span:nth-child(2) {
  width: 72%;
  background: rgba(16, 185, 129, 0.22);
}

.home-capture-float-browser-body span:nth-child(3) {
  width: 54%;
  background: rgba(148, 163, 184, 0.28);
}

.home-capture-float-count {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--primary-strong);
  color: #ffffff;
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(255, 107, 0, 0.28);
}

.home-capture-float-copy strong {
  display: block;
  color: var(--status-trusted);
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-capture-float-copy span {
  display: block;
  margin-top: 3px;
  padding: 0 2px 2px;
  font-size: 0.76rem;
  line-height: 1.4;
}

.home-capture-float .material-symbol {
  flex: 0 0 auto;
  font-size: 1.2rem;
}

.home-capture-float-trusted {
  top: 12%;
  left: -108px;
  max-width: 188px;
  animation-duration: 5.4s;
  animation-delay: 0s;
}

.home-capture-float-scan {
  top: 42%;
  right: -72px;
  animation-duration: 4.6s;
  animation-delay: 1.2s;
}

.home-capture-float-scan p {
  margin: 0;
  padding: 0 4px 4px;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .home-capture-float {
    animation: none;
  }
}

.home-number-list {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.home-number-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  color: var(--muted-foreground);
  font-weight: 600;
}

.home-number-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-family: var(--font-label);
  font-size: 0.9rem;
  font-weight: 800;
}

.video-frame {
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin: 34px auto 0;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #000000;
  box-shadow: 0 24px 70px rgba(38, 24, 18, 0.1);
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.home-center-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.home-enterprise-band,
.home-final-cta {
  padding: 76px 0;
  text-align: center;
}

.home-enterprise-band {
  color: var(--inverse-on-surface);
}

.home-enterprise-band > .container {
  border-radius: 28px;
  background: var(--inverse-surface);
  padding: 72px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.home-final-cta {
  background: var(--inverse-surface);
  color: var(--inverse-on-surface);
}

.home-enterprise-band h2,
.home-final-cta h2 {
  max-width: 760px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.05;
}

.home-enterprise-grid {
  text-align: left;
}

.home-enterprise-grid div {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.home-enterprise-grid h3,
.home-enterprise-grid p {
  color: #ffffff;
}

.home-enterprise-grid p {
  color: rgba(255, 237, 230, 0.78);
}

.home-faq {
  max-width: 850px;
}

.home-faq details {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.home-faq summary {
  color: var(--foreground);
  cursor: pointer;
}

.home-faq details p {
  margin-top: 12px;
  color: var(--muted-foreground);
}

.home-v2 {
  --background: #fff8f6;
  --foreground: #261812;
  --card: #ffffff;
  --muted: #fff1eb;
  --muted-foreground: #5a4136;
  --border: #e2bfb0;
  --primary: #a04100;
  --primary-foreground: #ffffff;
  --primary-soft: #ffdbcc;
  --primary-strong: #ff6b00;
  --surface: #fff8f6;
  --surface-low: #fff1eb;
  --surface-high: #fee3d8;
  --inverse-surface: #3d2d26;
  --inverse-on-surface: #ffede6;
  --secondary: #565e74;
  --home-body-size: 0.95rem;
  --home-label-size: 0.72rem;
  background: var(--surface);
}

.home-v2 p,
.home-v2 li {
  font-family: var(--font-body);
  font-size: var(--home-body-size);
  line-height: 1.7;
}

.home-v2 strong {
  font-weight: 700;
}

.home-v2 .kicker {
  font-family: var(--font-label);
  font-size: var(--home-label-size);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.home-v2 main {
  padding-top: 68px;
}

body:not(.home-v2) > .home-topbar + main:not(.work-v2) {
  padding-top: 68px;
}

.home-v2 .container {
  width: min(1200px, calc(100% - 128px));
}

.home-topbar {
  position: fixed;
  width: 100%;
  border-bottom-color: rgba(226, 191, 176, 0.34);
  background: rgba(255, 248, 246, 0.95);
  box-shadow: 0 1px 8px rgba(38, 24, 18, 0.05);
}

.home-nav {
  height: 68px;
}

.home-nav .brand span:last-child {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 800;
}

.home-nav-links {
  gap: 24px;
}

.home-nav-links a,
.nav-group-trigger {
  color: var(--secondary);
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-menu {
  border-color: rgba(226, 191, 176, 0.45);
  border-radius: 8px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.home-v2 .button-primary,
.home-v2 .button-secondary,
.home-v2 .install-link {
  border-radius: 4px;
  font-size: 0.94rem;
  font-weight: 800;
}

.home-v2 .button-primary,
.home-v2 .install-link {
  background: var(--primary-strong);
}

.home-v2 .button-primary:hover,
.home-v2 .install-link:hover {
  background: #e95d00;
}

.home-v2 .button-secondary {
  border-color: var(--outline, #8e7164);
  background: #ffffff;
}

.home-topbar {
  --header-surface: #fff8f6;
  --header-primary: #a04100;
  --header-primary-strong: #ff6b00;
  --header-secondary: #565e74;
  --header-border: #e2bfb0;
  --header-foreground: #261812;
  border-bottom-color: rgba(226, 191, 176, 0.34);
  background: rgba(255, 248, 246, 0.95);
  color: var(--header-foreground);
  font-family: var(--font-body);
}

.home-topbar .home-nav.container {
  width: min(1200px, calc(100% - 128px));
  height: 68px;
}

.home-topbar .brand span:last-child {
  color: var(--header-primary);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.home-topbar .home-nav-links a,
.home-topbar .nav-group-trigger {
  color: var(--header-secondary);
  font-size: 0.92rem;
  font-weight: 500;
}

.home-topbar .home-nav-links a:not(.install-link):hover,
.home-topbar .home-nav-links a:not(.install-link).active,
.home-topbar .nav-group-trigger.active,
.home-topbar .nav-group:hover .nav-group-trigger,
.home-topbar .nav-group:focus-within .nav-group-trigger {
  color: var(--header-primary);
}

.home-topbar .home-nav-links a.install-link,
.home-topbar .home-nav-links a.install-link:hover,
.home-topbar .home-nav-links a.install-link.active {
  width: 112px;
  height: 44px;
  min-width: 112px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--header-primary-strong);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 800;
  font-synthesis: none;
  letter-spacing: 0;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(255, 107, 0, 0.24);
  transform: none;
  transition: none;
}

.home-topbar .home-nav-links a.install-link:hover {
  background: var(--header-primary-strong);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(255, 107, 0, 0.24);
  transform: none;
}

.home-topbar .nav-menu {
  border-color: rgba(226, 191, 176, 0.45);
  background: rgba(255, 255, 255, 0.98);
}

.home-topbar .nav-menu a {
  color: var(--header-foreground);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.2;
}

.home-topbar .nav-menu a:hover,
.home-topbar .nav-menu a.active {
  color: var(--header-primary);
}

.home-topbar .language-switch {
  border-color: rgba(226, 191, 176, 0.7);
  background: #ffffff;
}

.home-topbar .language-switch button {
  color: var(--header-secondary);
}

.home-topbar .language-switch button[aria-pressed="true"] {
  background: var(--header-foreground);
  color: #ffffff;
}

.home-hero {
  padding: 80px 0;
}

.home-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 64px;
}

.home-badge {
  border-radius: 4px;
  background: var(--primary-soft);
  color: var(--primary);
  font-family: var(--font-label);
  font-size: var(--home-label-size);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 620px;
  margin-top: 24px;
  font-size: clamp(2.8rem, 4.2vw, 3.65rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.home-lead {
  margin-top: 24px;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
}

.home-disclaimer {
  margin-top: 14px;
  color: var(--primary);
  font-style: italic;
  font-weight: 600;
}

.home-section-lead {
  margin-top: 18px;
  color: var(--muted-foreground);
}

.home-actions {
  margin-top: 32px;
}

.home-product-card {
  min-height: 500px;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  transform: none;
}

.integrity-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 500px;
}

.integrity-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.08);
  filter: blur(70px);
  transform: translate(-50%, -50%);
}

.integrity-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(160, 65, 0, 0.2);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.ring-one {
  width: 330px;
  height: 330px;
}

.ring-two {
  width: 440px;
  height: 440px;
  border-style: dashed;
}

@keyframes integrity-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

.integrity-core {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
  width: 164px;
  height: 164px;
  border: 1px solid rgba(226, 191, 176, 0.75);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

.integrity-core img {
  width: 76px;
  height: auto;
  filter: drop-shadow(0 12px 18px rgba(160, 65, 0, 0.18));
}

.integrity-core span {
  margin-top: -2px;
  color: var(--primary);
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.integrity-chip {
  position: absolute;
  z-index: 3;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: #ffffff;
  padding: 6px 12px;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.09);
  animation: integrity-float 5s ease-in-out infinite;
}

.chip-trusted {
  top: 82px;
  right: 52px;
  color: var(--status-trusted);
  animation-delay: 0s;
}

.chip-untrusted {
  bottom: 88px;
  right: 28px;
  color: var(--status-untrusted);
  animation-delay: 0.7s;
}

.chip-invalid {
  bottom: 112px;
  left: 44px;
  color: var(--status-invalid);
  animation-delay: 1.4s;
}

.chip-none {
  top: 126px;
  left: 24px;
  color: var(--status-none);
  animation-delay: 2.1s;
}

@media (prefers-reduced-motion: reduce) {
  .integrity-chip {
    animation: none;
  }
}

.home-proof-section {
  padding: 64px 0;
  background: var(--surface-low);
}

.home-section {
  padding: 96px 0;
}

.home-muted {
  background: rgba(254, 227, 216, 0.3);
}

.home-section-title {
  font-size: clamp(2rem, 3.1vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.home-card-grid,
.home-action-grid,
.home-flow-grid,
.home-scope-grid,
.home-enterprise-grid {
  gap: 24px;
  margin-top: 48px;
}

.home-card,
.home-team-card,
.status-card,
.home-action-grid article,
.home-flow-grid article,
.home-enterprise-grid div,
.home-faq details {
  border-color: rgba(226, 191, 176, 0.45);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

.home-card-icon,
.home-action-grid article > span {
  border-radius: 8px;
}

.home-card h3,
.home-team-card h3,
.status-card h3,
.home-action-grid h3,
.home-flow-grid h3,
.home-enterprise-grid h3 {
  font-size: 1.05rem;
  font-weight: 800;
}

.home-card p,
.home-team-card p,
.status-card p,
.home-action-grid p,
.home-flow-grid p,
.home-enterprise-grid p {
  color: var(--muted-foreground);
}

.home-number-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  color: var(--muted-foreground);
  font-weight: 600;
}

.home-number-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
  font-family: var(--font-label);
  font-size: 0.82rem;
  font-weight: 800;
}

.home-capture-badge {
  font-size: var(--home-label-size);
}

.home-capture-float-copy strong {
  font-family: var(--font-label);
  font-size: var(--home-label-size);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-capture-float-copy span,
.home-capture-float-scan p {
  font-size: 0.82rem;
  line-height: 1.45;
}

.scope-card {
  border-radius: 8px;
}

.scope-card.good {
  border: 1px solid rgba(16, 185, 129, 0.34);
  background: rgba(16, 185, 129, 0.05);
}

.scope-card.bad {
  border: 1px solid rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.05);
}

.home-v2 .scope-card li {
  color: var(--muted-foreground);
}

.home-faq summary {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}

.home-action-grid article {
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.home-action-grid article > span {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  font-size: 1.75rem;
}

.home-capture {
  border-radius: 12px;
}

.home-capture-inner {
  border-radius: 0;
}

.home-number-list span,
.home-flow-grid article > span {
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.1);
  color: var(--primary);
}

.status-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.status-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.status-card > span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.status-card.trusted > span {
  border-color: rgba(16, 185, 129, 0.34);
  background: rgba(16, 185, 129, 0.1);
  color: var(--status-trusted);
}

.status-card.untrusted > span {
  border-color: rgba(245, 158, 11, 0.34);
  background: rgba(245, 158, 11, 0.1);
  color: var(--status-untrusted);
}

.status-card.invalid > span {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(239, 68, 68, 0.1);
  color: var(--status-invalid);
}

.status-card.none > span {
  border-color: rgba(148, 163, 184, 0.38);
  background: rgba(148, 163, 184, 0.12);
  color: var(--status-none);
}

.video-frame {
  border: 4px solid #ffffff;
  border-radius: 8px;
}

.home-enterprise-band {
  text-align: left;
}

.home-enterprise-band h2 {
  margin: 0;
  text-align: left;
}

.home-enterprise-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
}

.home-enterprise-grid div {
  position: relative;
  border: 0;
  background: transparent;
  padding: 0 0 0 34px;
  box-shadow: none;
}

.home-enterprise-grid div::before {
  content: "check_circle";
  position: absolute;
  margin-left: -34px;
  color: var(--primary-fixed, #ffdbcc);
  font-family: "Material Symbols Rounded";
  font-size: 1.25rem;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.home-faq details {
  margin-top: 12px;
  border: 1px solid rgba(226, 191, 176, 0.45);
  background: #ffffff;
  padding: 22px 24px;
}

.home-final-cta {
  background: rgba(255, 107, 0, 0.05);
  color: var(--foreground);
}

.home-final-cta h2 {
  color: var(--foreground);
}

.cta-band {
  background: var(--foreground);
  color: var(--background);
}

.cta-inner {
  padding: 80px 0;
  text-align: center;
}

.cta-inner h2 {
  max-width: 46rem;
  margin: 0 auto;
  color: var(--background);
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.14;
}

.cta-inner p {
  max-width: 42rem;
  margin: 16px auto 0;
  color: rgba(250, 250, 250, 0.7);
  font-size: 1rem;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.cta-band .button-secondary {
  border-color: rgba(250, 250, 250, 0.3);
  background: transparent;
  color: var(--background);
}

.cta-band .button-secondary:hover {
  background: rgba(250, 250, 250, 0.1);
}

.footer {
  border-top: 1px solid var(--border);
  background: var(--muted);
}

.footer-inner {
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.35fr) repeat(4, minmax(0, 1fr));
  gap: 32px;
}

.footer-brand p {
  margin-top: 16px;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
}

.footer h3 {
  margin-bottom: 12px;
  color: var(--foreground);
  font-size: 0.875rem;
  font-weight: 800;
}

.footer ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

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

.footer .brand span {
  color: var(--foreground);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

.footer-bottom a {
  font-size: 0.75rem;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .contact-hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .contact-card-grid,
  .work-status-grid,
  .trust-status-grid,
  .docs-grid,
  .status-grid,
  .use-case-grid,
  .team-summary-grid,
  .team-workflow-grid,
  .team-faq-grid,
  .enterprise-summary-grid,
  .enterprise-card-grid,
  .enterprise-deliverable-list,
  .enterprise-step-grid,
  .enterprise-v2-feature-grid,
  .enterprise-v2-technical-grid,
  .enterprise-v2-path-grid,
  .enterprise-v2-scope-grid,
  .install-v2-hero-grid,
  .install-v2-demo-card,
  .install-v2-honesty-grid,
  .install-hero-inner,
  .install-demo-grid,
  .install-shot-grid,
  .security-bento-grid,
  .security-status-grid,
  .limitations-hero-grid,
  .limitations-compare-grid,
  .limitations-responsible-grid,
  .privacy-v2-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .security-bento-card-wide,
  .security-file-card,
  .security-key-card,
  .security-test-card,
  .security-status-area,
  .security-permissions-card,
  .security-limited-card {
    grid-column: 1 / -1;
  }

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

  .demo-sample-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-detail-card ul {
    grid-template-columns: 1fr;
  }

  .enterprise-v2-hero {
    min-height: 460px;
  }

  .enterprise-v2-hero-bg {
    background:
      linear-gradient(to right, rgba(255, 248, 246, 0.95) 30%, rgba(255, 248, 246, 0.4) 100%),
      url("https://lh3.googleusercontent.com/aida-public/AB6AXuCjc4YyeR1IJ0Jw-P99PLu2nMF-gXnaOKT1QGwl5yHjyj0YqWW23Y6Pnj49MGYzE0GdBQXYa33TeiCROyzE94UN95dIqH99PjyJgPI6pI8A76jOJp1_nLNGuppejZdpqYgWDU3M9bps6rHiVnVomuYxP9gQ1T-t6IXItMCaZuAbui5PDlvuFcBJ-xAVt3Qyio-UO9R_Uj7xkh37VooWM-QOPw7r6Pf0PCV9g-ahxsmvlCDBhCvi3c_OqKlcLhUHrdRjlOhz75ukn0I") center / cover no-repeat;
  }

  .enterprise-v2-feature-grid,
  .enterprise-v2-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enterprise-v2-technical-grid {
    gap: 40px;
  }

  .install-v2-status-grid,
  .install-v2-phase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .install-v2-preview {
    min-height: 420px;
  }

  .install-v2-enterprise-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .team-detail-card,
  .team-detail-card ul {
    grid-template-columns: 1fr;
  }

  .contact-v2-hero {
    min-height: 380px;
  }

  .contact-v2-grid {
    grid-template-columns: 1fr;
  }

  .contact-v2-support-card,
  .contact-v2-enterprise-card,
  .contact-v2-channel-card {
    grid-column: 1 / -1;
  }

  .contact-v2-channel-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-v2-channel-actions {
    justify-content: flex-start;
  }

  .changelog-v2-layout {
    grid-template-columns: 1fr;
  }

  .changelog-v2-sidebar {
    position: static;
  }

  .use-cases-v2-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .use-cases-v2-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .use-cases-v2-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .use-cases-v2-enterprise-card {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1025px) and (max-width: 1180px) {
  .nav-links {
    gap: 18px;
  }

  .install-link {
    margin-left: 22px;
  }

  .home-nav-links {
    gap: 14px;
  }

  .home-nav-links .install-link {
    margin-left: 14px;
  }

  .home-nav-links a,
  .nav-group-trigger {
    font-size: 0.78rem;
  }

  .home-topbar .home-nav.container {
    width: min(1200px, calc(100% - 48px));
  }

  .home-topbar .home-nav-links {
    gap: 14px;
  }

  .home-topbar .home-nav-links .install-link {
    margin-left: 14px;
  }

  .home-topbar .home-nav-links a,
  .home-topbar .nav-menu a,
  .home-topbar .nav-group-trigger {
    font-size: 0.78rem;
  }

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

@media (max-width: 1180px) {
  .home-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 36px;
  }

  .home-card-grid.four,
  .home-action-grid,
  .home-enterprise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 72rem);
  }

  .section,
  .page-hero,
  .contact-hero {
    padding: 64px 0;
  }

  .contact-panel,
  .contact-card {
    padding: 24px;
  }

  .contact-card {
    min-height: auto;
  }

  .contact-v2-hero {
    width: min(100% - 24px, 72rem);
    min-height: 360px;
    margin-top: 40px;
  }

  .contact-v2-hero-bg {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 72%, rgba(255, 255, 255, 0.62) 100%),
      url("https://lh3.googleusercontent.com/aida-public/AB6AXuAQfhBr08vNHosy6OMBvApMEQxcSDVY8F1LkH-k1sjLs54lRMkMJ9tuPt9CZrMzCAZZmW_TQzJ_zKtE6ldjbpue7DTBlpBEF3uLP_tAZ3AlimppaE2mlEEsCpsu_h6iTXUaJRYo5306dBEHIMgQwA2ZcTae8eKgdlfIY72rYWNtrixArTim4aykPxFOGmDJGZ8St7M7Ok2vCLHnb1sRYVnSacYK48EUortVAdFLfa-WqkUhnt-sNx70nWPr3kgEURV0Uyb7YOI3Ayc") center / cover no-repeat;
  }

  .contact-v2 .page-title {
    font-size: 2.25rem;
  }

  .contact-v2-section {
    padding: 48px 0 24px;
  }

  .contact-v2-card,
  .contact-v2-channel-card {
    padding: 24px;
  }

  .contact-v2-card-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-v2-channel-actions,
  .contact-v2-channel-actions a,
  .contact-v2-enterprise-actions .button,
  .contact-v2-dark-link {
    width: 100%;
  }

  .contact-v2-channel-actions a,
  .contact-v2-enterprise-actions .button {
    justify-content: center;
  }

  .changelog-v2-hero {
    padding: 48px 0 32px;
  }


  .changelog-v2 .page-title {
    font-size: 2.3rem;
  }

  .changelog-v2-section {
    padding: 64px 0;
  }

  .changelog-v2-timeline {
    gap: 56px;
  }

  .changelog-v2-entry,
  .changelog-v2-end {
    padding-left: 42px;
  }

  .changelog-v2-card {
    padding: 24px;
  }

  .changelog-v2-feature-list li {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
  }

  .use-cases-v2 .container {
    width: min(100% - 24px, 1200px);
  }

  .use-cases-v2-hero {
    padding: 76px 0 56px;
  }

  .use-cases-v2 .page-title {
    font-size: 2.3rem;
  }

  .use-cases-v2-grid-section {
    padding-bottom: 72px;
  }

  .use-cases-v2-grid,
  .use-cases-v2-link-grid {
    grid-template-columns: 1fr;
  }

  .use-cases-v2-card,
  .use-cases-v2-enterprise-card > div:first-child,
  .use-cases-v2-trial-card {
    padding: 24px;
  }

  .use-cases-v2-card {
    min-height: auto;
  }

  .use-cases-v2-workflows {
    padding: 56px 0;
  }

  .use-cases-v2-enterprise {
    padding: 72px 0;
  }

  .use-cases-v2-terminal {
    min-height: 200px;
  }

  .use-cases-v2-actions,
  .use-cases-v2-actions a {
    width: 100%;
  }

  .install-v2 .container {
    width: min(100% - 24px, 1200px);
  }

  .install-v2-hero,
  .install-v2-status-section,
  .install-v2-demo-section,
  .install-v2-workflow,
  .install-v2-honesty,
  .install-v2-enterprise,
  .install-v2-final {
    padding: 48px 0;
  }

  .install-v2-hero-copy {
    gap: 22px;
  }

  .install-v2-hero h1 {
    font-size: 2.25rem;
    line-height: 1.2;
  }

  .install-v2-hero-copy > p,
  .install-v2-demo-card p,
  .install-v2-honesty p:first-of-type,
  .install-v2-enterprise-card p {
    font-size: 1rem;
  }

  .install-v2-actions,
  .install-v2-actions a,
  .install-v2-final-actions,
  .install-v2-final-actions a,
  .install-v2-demo-card .button-primary,
  .install-v2-enterprise-card .button-secondary {
    width: 100%;
  }

  .install-v2-actions a,
  .install-v2-final-actions a,
  .install-v2-demo-card .button-primary,
  .install-v2-enterprise-card .button-secondary {
    justify-content: center;
  }

  .install-v2-preview {
    min-height: auto;
    padding: 20px;
  }

  .install-v2-preview-row {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .install-v2-preview-row .install-v2-status {
    grid-column: 1 / -1;
    width: fit-content;
  }

  .install-v2-status-grid,
  .install-v2-phase-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .install-v2-demo-card,
  .install-v2-honesty article,
  .install-v2-enterprise-card {
    padding: 24px;
  }

  .install-v2-centered-head {
    margin-bottom: 36px;
  }

  .enterprise-v2 .container {
    width: min(100% - 24px, 1200px);
  }

  .enterprise-v2-hero {
    min-height: 380px;
  }

  .enterprise-v2-hero-copy {
    padding: 56px 0;
  }

  .enterprise-v2-hero h1 {
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 0;
  }

  .enterprise-v2-hero-copy > p:not(.enterprise-v2-kicker) {
    font-size: 16px;
    line-height: 1.5;
  }

  .enterprise-v2-actions,
  .enterprise-v2-actions a {
    width: 100%;
  }

  .enterprise-v2-actions a {
    justify-content: center;
  }

  .enterprise-v2-extend,
  .enterprise-v2-technical,
  .enterprise-v2-details,
  .enterprise-v2-collaboration,
  .enterprise-v2-scope,
  .enterprise-v2-final {
    padding: 64px 0;
  }

  .enterprise-v2-heading h2,
  .enterprise-v2-technical h2,
  .enterprise-v2-centered h2,
  .enterprise-v2-scope-card h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .enterprise-v2-final h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .enterprise-v2-final > .container {
    border-radius: 22px;
    padding: 44px 22px;
  }

  .enterprise-v2-feature-grid,
  .enterprise-v2-path-grid,
  .enterprise-v2-scope-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-v2-feature-card,
  .enterprise-v2-details .enterprise-detail-card,
  .enterprise-v2-scope-card {
    padding: 24px;
  }

  .enterprise-v2-feature-card,
  .enterprise-v2-path-grid article {
    min-height: auto;
  }

  .enterprise-v2-diagram img {
    aspect-ratio: auto;
  }

  .enterprise-v2-path-grid::before {
    display: none;
  }

  .enterprise-v2-actions .button-primary,
  .enterprise-v2-actions .button-secondary,
  .enterprise-v2-final .button-primary {
    font-size: 1rem;
  }

  .linkedin-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .disclosure-card {
    flex-direction: column;
    padding: 24px;
  }

  .trust-page .page-hero {
    padding: 64px 0 32px;
  }

  .security-hero {
    width: min(100% - 24px, 72rem);
    min-height: 420px;
    margin-top: 40px;
  }

  .security-hero-bg {
    background:
      radial-gradient(circle at 82% 12%, rgba(255, 107, 0, 0.08), transparent 38%),
      linear-gradient(180deg, #fff8f6 0%, #ffffff 100%);
  }

  .security-bento-section {
    padding: 56px 0;
  }

  .security-bento-card,
  .security-limited-card {
    padding: 24px;
  }

  .security-permission-grid {
    grid-template-columns: 1fr;
  }

  .limitations-hero,
  .limitations-compare-section,
  .limitations-responsible-section {
    padding: 56px 0;
  }

  .limitations-hero-grid {
    gap: 36px;
  }

  .limitations-report-preview {
    min-height: 340px;
  }

  .limitations-compare-grid {
    gap: 56px;
  }

  .limitations-evidence-card,
  .limitations-analysis-card {
    padding: 24px;
  }

  .limitations-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .privacy-v2-hero {
    padding: 40px 0;
  }

  .privacy-v2-hero-panel {
    min-height: 360px;
  }

  .privacy-v2-hero-copy {
    padding: 48px 24px;
  }

  .privacy-v2-content {
    padding: 16px 0 56px;
  }

  .privacy-v2-card,
  .privacy-v2-side-card,
  .privacy-v2-limited-card,
  .privacy-v2-support-card {
    padding: 24px;
  }

  .privacy-v2-permission-list {
    grid-template-columns: 1fr;
  }

  .privacy-v2-support-card {
    align-items: stretch;
    flex-direction: column;
  }

  .privacy-v2-support-actions {
    justify-content: flex-start;
  }

  .legal-v2-hero {
    width: min(100% - 24px, 72rem);
    min-height: 280px;
    margin-top: 40px;
  }

  .legal-v2-content {
    padding: 56px 0;
  }

  .legal-v2-stack {
    gap: 42px;
  }

  .legal-v2-publisher-card {
    padding: 24px;
  }

  .legal-v2-publisher-card dl {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .use-cases-page .page-hero,
  .use-cases-section {
    padding: 56px 0;
  }

  .use-case-card,
  .use-case-cta,
  .team-summary-card,
  .team-workflow-card,
  .team-detail-card,
  .enterprise-custom-block {
    padding: 22px;
  }

  .team-page .page-hero,
  .team-section {
    padding: 56px 0;
  }

  .install-trust-line {
    align-items: flex-start;
    border-radius: 12px;
  }

  .install-page .link-row,
  .install-final-cta .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-section-card {
    padding: 20px;
  }

  .status-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .demo-step-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .docs-card {
    padding: 20px;
  }

  .work-page .page-hero,
  .work-page .section {
    padding: 64px 0;
  }

  .home-hero,
  .home-section,
  .home-proof-section,
  .home-enterprise-band,
  .home-final-cta {
    padding: 56px 0;
  }

  .home-enterprise-band > .container {
    border-radius: 22px;
    padding: 32px 22px;
  }

  .home-hero-grid,
  .home-split,
  .home-scope-grid,
  .home-flow-grid,
  .home-card-grid.four,
  .home-action-grid,
  .home-enterprise-grid {
    grid-template-columns: 1fr;
  }

  .home-hero h1 {
    font-size: clamp(3rem, 17vw, 4.5rem);
  }

  .home-lead {
    font-size: 1rem;
  }

  .home-actions,
  .home-center-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-product-card {
    padding: 14px;
    border-radius: 24px;
    transform: none;
  }

  .home-popup {
    padding: 16px;
  }

  .home-capture {
    padding: 22px 16px 16px;
  }

  .home-capture-badge {
    top: -12px;
    right: 12px;
    padding: 6px 10px;
    font-size: 0.62rem;
  }

  .home-capture-inner {
    min-height: 0;
  }

  .home-capture-float {
    display: none;
  }

  .home-section-title {
    font-size: clamp(1.85rem, 10vw, 2.75rem);
  }

  .work-use-card {
    flex-direction: column;
  }

  .button-primary,
  .button-secondary {
    width: 100%;
  }

  .cta-actions {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .work-v2 .container {
    width: min(100% - 40px, 1200px);
  }

  .work-v2-step-grid,
  .work-v2-step-grid.reverse,
  .work-v2-architecture-grid {
    grid-template-columns: 1fr;
  }

  .work-v2-architecture-grid {
    padding: 48px;
  }

  .work-step-number {
    justify-self: start;
    text-orientation: initial;
    writing-mode: initial;
  }

  .work-scan-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .work-v2 .container {
    width: min(100% - 24px, 1200px);
  }

  .work-v2-hero {
    padding: 72px 0;
  }

  .work-v2-step,
  .work-v2-scan {
    padding-bottom: 72px;
  }

  .work-v2 h1 {
    font-size: 2.25rem;
  }

  .work-v2-badges,
  .work-v2-badges > span,
  .architecture-list article {
    align-items: flex-start;
    flex-direction: column;
  }

  .work-sign-panel,
  .work-v2-architecture-grid,
  .scan-status,
  .manifest-code-card {
    padding: 22px;
  }

  .work-verify-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .home-topbar .home-nav.container {
    width: min(100% - 40px, 1200px);
  }

  .home-v2 .container {
    width: min(100% - 40px, 1200px);
  }

  .home-hero-grid,
  .home-split {
    grid-template-columns: 1fr;
  }

  .home-product-card,
  .integrity-visual {
    min-height: 420px;
  }

  .home-enterprise-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .home-topbar .home-nav.container {
    width: min(100% - 24px, 1200px);
  }

  .home-v2 main {
    padding-top: 64px;
  }

  .home-v2 .container {
    width: min(100% - 24px, 1200px);
  }

  .home-hero {
    padding: 56px 0;
  }

  .home-hero h1 {
    font-size: 2.25rem;
    line-height: 1.16;
  }

  .home-product-card,
  .integrity-visual {
    min-height: 340px;
  }

  .ring-one {
    width: 230px;
    height: 230px;
  }

  .ring-two {
    width: 310px;
    height: 310px;
  }

  .integrity-core {
    width: 132px;
    height: 132px;
  }

  .integrity-core img {
    width: 58px;
  }

  .integrity-chip {
    font-size: 0.62rem;
    padding: 6px 8px;
  }

  .chip-trusted {
    top: 48px;
    right: 8px;
  }

  .chip-untrusted {
    right: 4px;
    bottom: 54px;
  }

  .chip-invalid {
    bottom: 72px;
    left: 4px;
  }

  .chip-none {
    top: 78px;
    left: 0;
  }
}

@media (max-width: 1024px) {
  .docs-v2-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .docs-sidebar,
  .docs-toc {
    position: static;
  }

  .docs-sidebar {
    border-right: 0;
    border-bottom: 1px solid rgba(226, 191, 176, 0.55);
    padding-right: 0;
    padding-bottom: 22px;
  }

  .docs-sidebar-block {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .docs-sidebar-block p {
    grid-column: 1 / -1;
  }

  .docs-toc {
    display: none;
  }

  .pricing-v2-plans {
    grid-template-columns: 1fr;
  }

  .demo-v2-head,
  .demo-v2-head.center {
    align-items: start;
    justify-items: start;
    text-align: left;
    grid-template-columns: 1fr;
  }

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

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

  .demo-article-mock {
    padding: 32px;
  }
}

@media (max-width: 620px) {
  .docs-v2-shell {
    padding-top: 28px;
    padding-bottom: 64px;
  }

  .docs-sidebar-block {
    grid-template-columns: 1fr;
  }

  .docs-v2-hero h1 {
    font-size: 2.2rem;
  }

  .docs-section {
    margin-top: 54px;
  }

  .docs-status-grid,
  .docs-split,
  .docs-mini-grid,
  .docs-authority-grid {
    grid-template-columns: 1fr;
  }

  .docs-chain article {
    grid-template-columns: 1fr;
  }

  .docs-chain span {
    grid-row: auto;
  }

  .docs-next {
    align-items: stretch;
    flex-direction: column;
  }

  .docs-next > div {
    flex-direction: column;
  }

  .pricing-v2-hero {
    padding: 64px 0 40px;
  }

  .pricing-v2-hero .page-title {
    font-size: 2.2rem;
  }

  .pricing-v2-section {
    padding: 24px 0 64px;
  }

  .pricing-v2-card {
    padding: 24px;
  }

  .pricing-v2-cta {
    padding: 64px 0;
  }

  .pricing-v2-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .faq-v2-hero {
    padding: 64px 0 40px;
  }

  .faq-v2 .page-title {
    font-size: 2.2rem;
  }

  .faq-v2-section {
    padding-bottom: 64px;
  }

  .faq-item summary {
    padding: 18px;
    font-size: 1.05rem;
  }

  .faq-item p {
    margin: -2px 18px 18px;
    font-size: 0.92rem;
  }

  .faq-support-card {
    margin-top: 48px;
    padding: 32px 20px;
  }

  .faq-support-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .demo-v2-hero,
  .demo-v2-section {
    padding: 56px 0;
  }

  .demo-v2-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .demo-gallery-grid,
  .demo-download-grid {
    grid-template-columns: 1fr;
  }

  .demo-c2pa-badge {
    left: 14px;
    right: auto;
    top: 52px;
    max-width: calc(100% - 28px);
  }

  .demo-browser-bar {
    grid-template-columns: repeat(3, 10px) minmax(0, 1fr);
  }

  .demo-extension-chip {
    display: none;
  }

  .demo-address {
    font-size: 0.62rem;
  }

  .demo-article-mock {
    padding: 22px;
  }

  .demo-article-mock figure img {
    aspect-ratio: 4 / 3;
  }

  .demo-article-mock figcaption {
    position: static;
    width: auto;
    margin-top: 12px;
  }
}
