@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-glow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.22;
  }
  50% {
    transform: translate3d(0, -10px, 0) scale(1.03);
    opacity: 0.32;
  }
}

@keyframes soft-shimmer {
  0% {
    transform: translateX(-30%);
    opacity: 0;
  }
  20% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.15;
  }
  100% {
    transform: translateX(30%);
    opacity: 0;
  }
}

:root {
  --bg: #f6f9fd;
  --bg-subtle: #edf4ff;
  --surface: #ffffff;
  --text: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #64748b;
  --accent: #0f172a;
  --accent-hover: #1e293b;
  --accent-blue: #1457d9;
  --accent-blue-soft: #e3edff;
  --accent-green: #1d8f5f;
  --accent-green-soft: #e6f7ef;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --radius: 10px;
  --radius-lg: 14px;
  --page-gutter: 60px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-size: 1rem;
  background-image:
    radial-gradient(circle at 100% 0%, rgba(20, 87, 217, 0.08) 0%, transparent 38%),
    radial-gradient(circle at 0% 100%, rgba(29, 143, 95, 0.06) 0%, transparent 34%);
  background-attachment: fixed;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  color: var(--text-secondary);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fade-up 0.55s ease-out both;
}

.site-header-inner {
  padding: 1rem var(--page-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  color: var(--text);
}

.logo-mark {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.8125rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
}

.site-nav a:hover {
  color: var(--accent-blue);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text) !important;
  border: 1px solid var(--border-strong);
  padding: 0.4375rem 0.875rem;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--bg-subtle);
  color: var(--text) !important;
}

/* Contact page */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  animation: fade-up 0.7s ease-out both;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  animation: fade-up 0.7s ease-out both;
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.contact-card:nth-child(1) { animation-delay: 0.05s; }
.contact-card:nth-child(2) { animation-delay: 0.11s; }
.contact-card:nth-child(3) { animation-delay: 0.17s; }
.contact-card:nth-child(4) { animation-delay: 0.23s; }

.contact-card h2 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 0 0 0.75rem;
}

.contact-card p {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-email {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text) !important;
  text-decoration: none;
}

.contact-email:hover {
  color: var(--text-secondary) !important;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: fade-up 0.7s ease-out both;
}

/* Layout */

main {
  padding: 0 var(--page-gutter) 4rem;
  width: 100%;
}

.page-main {
  padding-top: 0;
}

/* Landing — Hero */

.hero {
  margin-left: calc(-1 * var(--page-gutter));
  margin-right: calc(-1 * var(--page-gutter));
  padding: 4.5rem var(--page-gutter) 3.5rem;
  max-width: none;
  background:
    linear-gradient(180deg, rgba(237, 244, 255, 0.96) 0%, rgba(255, 255, 255, 0.7) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  animation: fade-up 0.7s ease-out both;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 85%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8rem -5rem auto;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 87, 217, 0.28) 0%, rgba(29, 143, 95, 0.12) 42%, transparent 72%);
  filter: blur(18px);
  animation: float-glow 12s ease-in-out infinite;
  pointer-events: none;
}

.hero > * {
  position: relative;
}

.hero-eyebrow,
.hero h1,
.hero-lead,
.hero-actions,
.hero-meta {
  animation: fade-up 0.7s ease-out both;
}

.hero-eyebrow { animation-delay: 0.05s; }
.hero h1 { animation-delay: 0.12s; }
.hero-lead { animation-delay: 0.2s; }
.hero-actions { animation-delay: 0.28s; }
.hero-meta { animation-delay: 0.35s; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-blue);
  background: var(--accent-blue-soft);
  border: 1px solid rgba(0, 115, 234, 0.15);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  margin: 0 0 1.25rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.hero-lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 2rem;
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-meta {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  margin: 0;
}

/* Trust strip */

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(237, 244, 255, 0.86) 100%);
  box-shadow: var(--shadow-sm);
  margin: 2.5rem 0 4rem;
  animation: fade-up 0.7s ease-out both;
  animation-delay: 0.14s;
}

.trust-item {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-item::before {
  content: "✓";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--accent-blue-soft);
  color: var(--accent-blue);
  font-size: 0.6875rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* Section */

.section {
  margin-bottom: 5rem;
  animation: fade-up 0.7s ease-out both;
}

.section-header {
  margin-bottom: 2rem;
  animation: fade-up 0.7s ease-out both;
  animation-delay: 0.05s;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 0 0 0.5rem;
}

.section-header h2 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text);
}

/* Pillars */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pillar {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 249, 255, 0.96) 100%);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  animation: fade-up 0.7s ease-out both;
}

.pillar:nth-child(1) { animation-delay: 0.06s; }
.pillar:nth-child(2) { animation-delay: 0.12s; }
.pillar:nth-child(3) { animation-delay: 0.18s; }
.pillar:nth-child(4) { animation-delay: 0.24s; }
.pillar:nth-child(5) { animation-delay: 0.3s; }
.pillar:nth-child(6) { animation-delay: 0.36s; }

.pillar:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pillar-index {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-blue);
  background: var(--accent-blue-soft);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.pillar h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.pillar p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Product card */

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99) 0%, rgba(250, 253, 255, 0.96) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  animation: fade-up 0.7s ease-out both;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.products-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.products-stack .product-card:nth-child(1) { animation-delay: 0.08s; }
.products-stack .product-card:nth-child(2) { animation-delay: 0.16s; }

.product-title-with-icon h3 a {
  color: inherit;
  text-decoration: none;
}

.product-title-with-icon h3 a:hover {
  color: var(--accent-blue);
}

.product-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.product-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.product-title-with-icon {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.product-icon {
  border-radius: 10px;
  flex-shrink: 0;
}

.product-title-with-icon h3 {
  margin: 0;
}

.product-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
}

.product-tag {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--accent-green);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--accent-green-soft);
  border: 1px solid rgba(29, 143, 95, 0.14);
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.product-summary {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: none;
}

.product-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.product-feature {
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.product-feature:nth-child(2n) {
  border-right: none;
}

.product-feature:nth-child(1),
.product-feature:nth-child(2) {
  border-top: none;
}

.product-feature dt {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.25rem;
}

.product-feature dd {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.product-footer {
  padding: 1.25rem 2rem;
  background: var(--bg-subtle);
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5625rem 1rem;
  border-radius: var(--radius);
  text-decoration: none !important;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #1457d9 0%, #0f4fcc 100%);
  color: #fff !important;
  border: 1px solid rgba(20, 87, 217, 0.9);
  box-shadow: 0 10px 22px rgba(20, 87, 217, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #164fd0 0%, #0e43b2 100%);
  border-color: #0e43b2;
  color: #fff !important;
  box-shadow: 0 14px 28px rgba(20, 87, 217, 0.24);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text) !important;
  border: 1px solid var(--border-strong);
}

.btn-outline:hover {
  background: var(--bg-subtle);
  color: var(--text) !important;
}

/* Contact band */

.contact-band {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  background:
    linear-gradient(135deg, rgba(237, 244, 255, 0.92) 0%, rgba(255, 255, 255, 0.96) 100%);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 5rem;
  animation: fade-up 0.7s ease-out both;
}

.contact-band h2 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
  letter-spacing: -0.01em;
}

.contact-band p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(237, 244, 255, 0.7) 0%, rgba(246, 249, 253, 1) 100%);
  padding: 3rem var(--page-gutter) 2rem;
  animation: fade-up 0.7s ease-out both;
}

.site-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem 3rem;
}

.footer-brand,
.footer-col {
  animation: fade-up 0.7s ease-out both;
}

.footer-brand { animation-delay: 0.06s; }
.footer-col:nth-child(2) { animation-delay: 0.12s; }
.footer-col:nth-child(3) { animation-delay: 0.18s; }

.footer-brand p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 20rem;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

/* Inner pages */

.page-banner {
  margin-left: calc(-1 * var(--page-gutter));
  margin-right: calc(-1 * var(--page-gutter));
  padding: 2.75rem var(--page-gutter) 2.25rem;
  margin-bottom: 2.5rem;
  background:
    linear-gradient(180deg, rgba(237, 244, 255, 0.96) 0%, rgba(255, 255, 255, 0.65) 100%);
  border-bottom: 1px solid var(--border);
  animation: fade-up 0.7s ease-out both;
}

.page-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin: 0 0 0.75rem;
}

.page-banner .page-lead {
  margin-bottom: 0;
}

.page-banner .updated {
  margin: 0 0 0.75rem;
}

.doc-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-subtle);
  animation: fade-up 0.7s ease-out both;
}

.doc-toc a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.doc-toc a:hover {
  color: var(--accent-blue);
  border-color: rgba(0, 115, 234, 0.25);
  background: var(--accent-blue-soft);
}

h1.page-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}

.page-lead {
  font-size: 1rem;
  color: var(--text-secondary);
  margin: 0 0 2rem;
}

.content-block h2 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 2.25rem 0 0.75rem;
  padding-left: 0.875rem;
  border-left: 3px solid var(--accent-blue);
  color: var(--text);
  animation: fade-up 0.7s ease-out both;
}

.content-block p,
.content-block li {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  animation: fade-up 0.7s ease-out both;
}

.content-block ul,
.content-block ol {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.content-block li {
  margin-bottom: 0.35rem;
}

.updated {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  margin: 0 0 1.5rem;
}

.note {
  background: var(--accent-blue-soft);
  border: 1px solid rgba(0, 115, 234, 0.15);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.policy-highlight {
  background: linear-gradient(180deg, rgba(237, 244, 255, 0.9) 0%, rgba(255, 255, 255, 0.88) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  animation: fade-up 0.7s ease-out both;
}

.policy-highlight ul {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
}

.policy-highlight li {
  margin-bottom: 0.35rem;
}

.policy-apps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1rem 0 2rem;
}

.policy-app-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 253, 255, 0.96) 100%);
  box-shadow: var(--shadow-sm);
  animation: fade-up 0.7s ease-out both;
}

.policy-app-card:nth-child(1) { animation-delay: 0.05s; }
.policy-app-card:nth-child(2) { animation-delay: 0.11s; }

.policy-app-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.policy-app-card-header img {
  border-radius: 10px;
  flex-shrink: 0;
}

.policy-app-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.policy-app-card h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin: 1.25rem 0 0.5rem;
  padding: 0;
  border: none;
}

.policy-app-card p,
.policy-app-card li {
  font-size: 0.875rem;
}

.policy-app-card ul {
  margin: 0;
  padding-left: 1.15rem;
}

.policy-table-wrap {
  overflow-x: auto;
  margin: 1rem 0 2rem;
}

.policy-table {
  width: 100%;
  min-width: 36rem;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.policy-table th,
.policy-table td {
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  background: var(--bg-subtle);
  font-weight: 600;
  color: var(--text);
}

.policy-table td {
  color: var(--text-secondary);
  line-height: 1.55;
}

.policy-table td:first-child {
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
}

.policy-table code {
  font-size: 0.8125rem;
  background: var(--bg-subtle);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  color: var(--text);
}

.inline-link {
  color: var(--accent-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.inline-link:hover {
  color: var(--accent-hover);
}

/* Legacy footer alias for inner pages */
footer:not(.site-footer) {
  border-top: 1px solid var(--border);
  padding: 2rem var(--page-gutter);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  background: var(--bg-subtle);
}

footer:not(.site-footer) a {
  color: var(--text-secondary);
}

/* Embedded in monday "How to use" modal (?embed=1) */
html.embed-mode .site-header,
html.embed-mode .site-footer,
html.embed-mode .doc-toc {
  display: none;
}

html.embed-mode main {
  padding-top: 1rem;
}

html.embed-mode .page-banner {
  margin-left: 0;
  margin-right: 0;
  padding: 1.25rem 20px 1rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  :root {
    --page-gutter: 20px;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .product-features {
    grid-template-columns: 1fr;
  }

  .product-feature {
    border-right: none !important;
    border-top: 1px solid var(--border) !important;
  }

  .product-feature:first-child {
    border-top: none !important;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3rem var(--page-gutter) 2.5rem;
  }

  .page-banner {
    padding: 2rem var(--page-gutter) 1.75rem;
  }

  .doc-toc {
    gap: 0.4rem;
  }

  .doc-toc a {
    font-size: 0.75rem;
  }

  .policy-apps {
    grid-template-columns: 1fr;
  }

  .site-nav a:not(.nav-cta) {
    display: none;
  }
}
