/* ==========================================================================
   AppMedia India — Spectrotags Technologies Private Limited
   Single shared stylesheet. Mobile first. No frameworks, no build step.
   ========================================================================== */

/* --------------------------------------------------------------- tokens -- */
:root {
  --blue: #2563EB;
  --violet: #7C3AED;
  --grad: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  --ink: #0F172A;
  --body: #475569;
  --muted: #64748B;
  --white: #FFFFFF;
  --tint: #F8FAFC;
  --tint-blue: #EFF4FF;
  --border: #E2E8F0;

  --wrap: 1180px;
  --gutter: 24px;
  --radius: 16px;
  --radius-sm: 12px;
  --pill: 999px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06);
  --shadow: 0 4px 16px rgba(15, 23, 42, .06);
  --shadow-lg: 0 18px 40px rgba(15, 23, 42, .12);
  --shadow-blue: 0 12px 28px rgba(37, 99, 235, .28);

  --font-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --section-y: 72px;
}

@media (min-width: 768px) {
  :root { --section-y: 88px; }
}
@media (min-width: 1024px) {
  :root { --section-y: 96px; }
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  body { font-size: 17px; }
}

img, svg { max-width: 100%; }
img { height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); font-weight: 600; }
h4 { font-size: 1.02rem; font-weight: 600; }

p { margin: 0 0 1.1em; }
ul, ol { margin: 0 0 1.1em; padding-left: 1.3em; }
li { margin-bottom: .45em; }
li:last-child { margin-bottom: 0; }

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

strong { color: var(--ink); font-weight: 600; }
address { font-style: normal; }

/* ------------------------------------------------------- a11y & focus --- */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--white);
  color: var(--blue);
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
  box-shadow: var(--shadow);
}
.skip-link:focus { left: 0; }

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

/* ------------------------------------------------------------- layout --- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--tint { background: var(--tint); }

.section-head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head p { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--tint-blue);
  padding: 6px 14px;
  border-radius: var(--pill);
  margin-bottom: 16px;
}

.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 940px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ------------------------------------------------------------ buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  padding: 15px 30px;
  border-radius: var(--pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn--primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn--primary:hover { box-shadow: 0 16px 34px rgba(37, 99, 235, .36); }

.btn--outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn--outline:hover { background: var(--blue); color: var(--white); }

.btn--onblue {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 10px 26px rgba(15, 23, 42, .18);
}
.btn--ghost-onblue {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .7);
}
.btn--ghost-onblue:hover { background: var(--white); color: var(--blue); border-color: var(--white); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ------------------------------------------------------------- header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 2px 14px rgba(15, 23, 42, .08);
  border-bottom-color: var(--border);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none; }
.logo-mark { display: block; flex-shrink: 0; }

.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.16rem;
  letter-spacing: -.02em;
  color: var(--ink);
}
.brand-accent { color: var(--blue); margin-left: .28em; }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 4px;
}
.site-nav li { margin: 0; }

.site-nav a {
  display: block;
  padding: 10px 16px;
  border-radius: var(--pill);
  font-size: .97rem;
  font-weight: 500;
  color: var(--body);
  transition: color .2s ease, background-color .2s ease;
}
.site-nav a:hover { color: var(--blue); background: var(--tint-blue); text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--blue); background: var(--tint-blue); font-weight: 600; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-scrim {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .45);
  z-index: 98;
}

@media (max-width: 767px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 110;
    width: min(300px, 84vw);
    height: 100%;
    background: var(--white);
    padding: 84px 20px 32px;
    box-shadow: -8px 0 30px rgba(15, 23, 42, .16);
    transform: translateX(102%);
    transition: transform .3s ease;
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateX(0); }

  .site-nav ul { flex-direction: column; gap: 4px; }
  .site-nav a { padding: 13px 16px; font-size: 1.02rem; }
}

/* --------------------------------------------------------------- hero --- */
.hero {
  position: relative;
  background: var(--grad);
  color: rgba(255, 255, 255, .92);
  padding-block: 64px 72px;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  right: -160px; top: -200px;
  background: radial-gradient(circle, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, 0) 68%);
  pointer-events: none;
}

@media (min-width: 900px) {
  .hero { padding-block: 92px 104px; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 40px; }
}

.hero h1 { color: var(--white); margin-bottom: 20px; }

.hero-sub {
  font-size: 1.06rem;
  max-width: 44ch;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 30px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--pill);
  margin-bottom: 22px;
}

.hero-art {
  display: flex;
  justify-content: center;
}
.hero-art svg { width: min(320px, 78vw); height: auto; }

/* ------------------------------------------------------------ page top -- */
.page-hero {
  background: var(--grad);
  color: rgba(255, 255, 255, .92);
  padding-block: 56px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p {
  max-width: 62ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, .9);
}

.crumb {
  font-size: .88rem;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 14px;
}
.crumb a { color: var(--white); text-decoration: underline; }

/* -------------------------------------------------------------- cards --- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: #CBD8F0;
}
.card h3 { margin-bottom: .5em; }
.card p:last-child { margin-bottom: 0; }

a.card { display: block; color: inherit; }
a.card:hover { text-decoration: none; }
a.card h3 { color: var(--ink); }

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--tint-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.icon-circle svg { width: 30px; height: 30px; display: block; }

.card--disabled {
  background: var(--tint);
  border-style: dashed;
  box-shadow: none;
  color: var(--muted);
  cursor: not-allowed;
}
.card--disabled:hover { transform: none; box-shadow: none; border-color: var(--border); }
.card--disabled h3 { color: var(--muted); }
.card--disabled .icon-circle { background: #EEF2F7; }

.badge-soon {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  background: #E9EEF5;
  border-radius: var(--pill);
  padding: 5px 12px;
  margin-bottom: 16px;
}

.badge-live {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #067647;
  background: #DCFCE7;
  border-radius: var(--pill);
  padding: 5px 12px;
  margin-bottom: 16px;
}

/* ------------------------------------------------------------- process -- */
.steps { counter-reset: step; }
.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--grad);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

/* ---------------------------------------------------------- cta band ---- */
.cta-band {
  background: var(--grad);
  color: var(--white);
  text-align: center;
  padding-block: var(--section-y);
}
.cta-band h2 { color: var(--white); }
.cta-band p {
  color: rgba(255, 255, 255, .9);
  max-width: 58ch;
  margin: 0 auto 28px;
}
.cta-band .btn-row { justify-content: center; }

/* ------------------------------------------------------------ app page -- */
.app-hero {
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 860px) {
  .app-hero { grid-template-columns: auto 1fr; gap: 40px; }
}
.app-icon { width: 112px; height: 112px; border-radius: 26px; box-shadow: var(--shadow-lg); }

.app-feature {
  display: grid;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
@media (min-width: 860px) {
  .app-feature { grid-template-columns: 1fr 300px; padding: 40px; }
}

.shots {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}
.shots > figure {
  margin: 0;
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
  text-align: center;
}
.shots figcaption {
  font-size: .86rem;
  color: var(--muted);
  margin-top: 10px;
}

.play-badge { display: inline-block; }
.play-badge:hover { text-decoration: none; }
.play-badge svg { display: block; height: 56px; width: auto; }

.legal-row .card { border-left: 4px solid var(--blue); }

/* ------------------------------------------------------------ contact --- */
.contact-grid { display: grid; gap: 32px; }
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1.15fr .85fr; gap: 40px; }
}

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: .93rem;
  margin-bottom: 7px;
}
.form-field .req { color: #B42318; }

.form-field input,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .18);
}
.form-field textarea { resize: vertical; min-height: 150px; }

.form-hint { font-size: .87rem; color: var(--muted); margin-top: 18px; }

.form-status {
  margin-top: 18px;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: .93rem;
  background: var(--tint-blue);
  border: 1px solid #C7D8F8;
  color: #1E40AF;
}
.form-status[hidden] { display: none; }
.form-status.is-error { background: #FEF3F2; border-color: #FDA29B; color: #B42318; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item .icon-circle { width: 46px; height: 46px; margin: 0; flex-shrink: 0; }
.contact-item .icon-circle svg { width: 21px; height: 21px; }
.contact-item h3 { font-size: 1rem; margin-bottom: .2em; }
.contact-item p { margin-bottom: 0; font-size: .96rem; }

/* ------------------------------------------------------------- tables --- */
.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 1.4em;
  -webkit-overflow-scrolling: touch;
}
table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: .94rem;
}
caption {
  text-align: left;
  font-size: .88rem;
  color: var(--muted);
  padding: 12px 16px 0;
}
th, td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
thead th {
  background: var(--tint);
  color: var(--ink);
  font-weight: 600;
  font-size: .9rem;
  white-space: nowrap;
}
tbody tr:last-child td { border-bottom: none; }

/* --------------------------------------------------------- legal pages -- */
.legal-head {
  background: var(--tint);
  border-bottom: 1px solid var(--border);
  padding-block: 48px 40px;
}
.legal-head h1 { margin-bottom: 14px; }

.legal-kicker {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.legal-dates {
  font-size: .94rem;
  color: var(--muted);
  margin-bottom: 0;
}

.legal-layout {
  display: grid;
  gap: 40px;
  padding-block: 48px 72px;
  align-items: start;
}
@media (min-width: 1000px) {
  .legal-layout { grid-template-columns: 260px minmax(0, 760px); gap: 56px; }
}

.toc {
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px 18px;
}
@media (min-width: 1000px) {
  .toc { position: sticky; top: 96px; max-height: calc(100vh - 130px); overflow-y: auto; }
  .toc summary { display: none; }
  .toc details > .toc-list { display: block; }
}

.toc summary {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  padding: 12px 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toc summary::-webkit-details-marker { display: none; }
.toc summary::after {
  content: "";
  width: 9px; height: 9px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.toc details[open] summary::after { transform: rotate(-135deg); }

.toc-list {
  list-style: decimal;
  margin: 0 0 16px;
  padding: 0 0 0 20px;
  font-size: .9rem;
}
@media (min-width: 1000px) {
  .toc-list { margin-top: 16px; }
}
.toc-list li { margin-bottom: .5em; color: var(--muted); }
.toc-list a { color: var(--body); }
.toc-list a:hover { color: var(--blue); }
.toc-list a.is-active { color: var(--blue); font-weight: 600; }

.legal-body { max-width: 760px; font-size: 1rem; }
.legal-body h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  margin-top: 2.2em;
  scroll-margin-top: 96px;
}
.legal-section:first-child h2 { margin-top: 0; }
.legal-body h3 {
  font-size: 1.06rem;
  margin-top: 1.7em;
  margin-bottom: .5em;
}
.sec-num { color: var(--blue); margin-right: .35em; }

.callout {
  background: var(--tint-blue);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin: 0 0 1.4em;
}
.callout p:last-child { margin-bottom: 0; }
.callout--warn {
  background: #FFF8E6;
  border-left-color: #D97706;
}
.callout--strong {
  background: var(--tint-blue);
  border-left-color: var(--violet);
  font-size: 1.04rem;
}

.legal-entity-line {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: .9rem;
  color: var(--muted);
  font-style: italic;
}

.lead { font-size: 1.08rem; color: var(--body); }

/* ------------------------------------------------------------- footer --- */
.site-footer {
  background: #0F172A;
  color: #94A3B8;
  padding-top: 64px;
  font-size: .95rem;
}
.site-footer .brand-name { color: var(--white); }
.site-footer .brand-accent { color: #93B4FD; }

.footer-grid {
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
}
@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 48px; }
}

.footer-desc { margin: 18px 0 14px; max-width: 42ch; }
.footer-legal { color: #CBD5E1; font-size: .9rem; margin-bottom: 8px; }
.footer-address { font-size: .9rem; line-height: 1.6; max-width: 34ch; }

.footer-heading {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: #94A3B8; }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-block: 22px;
  font-size: .88rem;
}
.footer-bottom p { margin: 0; }

/* ---------------------------------------------------------------- 404 --- */
.err {
  text-align: center;
  padding-block: 80px 96px;
}
.err-code {
  font-family: var(--font-head);
  font-size: clamp(4.5rem, 18vw, 9rem);
  font-weight: 700;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.err p { max-width: 52ch; margin-inline: auto; }
.err .btn-row { justify-content: center; margin-top: 28px; }

/* ------------------------------------------------------------- motion --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

.float { animation: floaty 6s ease-in-out infinite; transform-origin: center; }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .float { animation: none; }
  .btn:hover, .card:hover { transform: none; }
}

/* -------------------------------------------------------------- print --- */
@media print {
  .site-header, .site-footer, .toc, .nav-scrim, .skip-link, .cta-band { display: none !important; }
  body { font-size: 11pt; color: #000; background: #fff; }
  .legal-head { background: none; border-bottom: 1px solid #000; padding-block: 0 16pt; }
  h1, h2, h3 { color: #000; }
  .sec-num { color: #000; }
  .legal-layout { display: block; padding: 0; }
  .legal-body { max-width: none; }
  .legal-body h2 { margin-top: 18pt; page-break-after: avoid; }
  .legal-section { page-break-inside: avoid; }
  .callout { border: 1px solid #000; background: none; }
  a { color: #000; text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
  a[href^="mailto"]::after { content: none; }
  table { min-width: 0; font-size: 9.5pt; }
  .table-scroll { overflow: visible; }
  .reveal { opacity: 1; transform: none; }
}
