/* GSTIN Suite promo site. Light only.
 *
 * Anchored on the GST Calculator green (#1B6C4A) so the marketing site and
 * the lead app share a colour language. No prefers-color-scheme dark branch:
 * the site is intentionally always light.
 */

:root {
  --bg-deep: #f4f7f5;
  --bg-elevated: #ffffff;
  --bg-card: #ffffff;
  --bg-tint: #e8f0eb;
  --bg-wash: #dce8e1;
  --border: rgba(12, 26, 20, 0.08);
  --border-subtle: rgba(12, 26, 20, 0.05);
  --text: #0c1a14;
  --text-soft: #13241c;
  --text-muted: #5c6b63;
  --accent: #1b6c4a;
  --accent-bright: #15803d;
  --accent-deep: #0f4d35;
  --accent-dim: rgba(27, 108, 74, 0.1);
  --accent-hover: #0f4d35;
  --cta-on-accent: #ffffff;
  --cta-primary-fill: #1b6c4a;
  --cta-primary-shadow: 0 12px 28px -10px rgba(27, 108, 74, 0.45);
  --cta-ghost-fill: #ffffff;
  --cta-ghost-border: rgba(12, 26, 20, 0.12);
  --cta-ghost-text: #13241c;
  --shadow-soft: 0 1px 2px rgba(12, 26, 20, 0.04), 0 8px 24px -12px rgba(12, 26, 20, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --font: "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-brand: "Syne", var(--font);
  --max: 1120px;
  color-scheme: light only;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 100% 70% at 70% -20%, rgba(27, 108, 74, 0.11), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 10%, rgba(14, 116, 144, 0.05), transparent 50%);
  background-repeat: no-repeat;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

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

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 9999;
  padding: 10px 16px;
  background: var(--accent);
  color: var(--cta-on-accent);
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

/* ---------- motion ---------- */

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border-subtle);
  background: color-mix(in srgb, var(--bg-deep) 88%, transparent);
  backdrop-filter: blur(14px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
}

.brand span {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text-soft);
  transition: color 0.2s ease;
}

.brand:hover span {
  color: var(--accent-deep);
}

.nav-menu {
  display: contents;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: -6px -8px -6px 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.nav-toggle::-webkit-details-marker,
.nav-toggle::marker {
  display: none;
  content: "";
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.nav-toggle-bars {
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after { top: 6px; }

.nav-menu[open] .nav-toggle-bars {
  background: transparent;
}

.nav-menu[open] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-menu[open] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
}

.nav-links a:hover {
  color: var(--text);
}

@media (max-width: 719px) {
  .header-inner {
    padding: 10px 16px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand span {
    font-size: 1.05rem;
  }

  .nav-menu {
    display: block;
    position: relative;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu > nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 120;
    min-width: 200px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-elevated);
    box-shadow: 0 16px 40px -16px rgba(12, 26, 20, 0.28);
  }

  .nav-menu[open] > nav {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
  }

  .nav-links a {
    display: block;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.98rem;
  }

  .nav-links a:hover {
    background: var(--bg-tint);
  }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background:
    linear-gradient(165deg, #e6efe9 0%, var(--bg-deep) 48%, #f0f5f2 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 85% 40%, rgba(27, 108, 74, 0.14), transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(14, 116, 144, 0.06), transparent 55%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: clamp(40px, 7vh, 72px) clamp(20px, 5vw, 40px) clamp(48px, 7vh, 80px);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(240px, 0.9fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero-copy {
  animation: rise-in 0.7s ease both;
}

.hero-brand-mark {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-brand-mark img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.hero-brand-mark span {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  letter-spacing: -0.045em;
  color: var(--text-soft);
  line-height: 1;
}

.hero-title {
  font-family: var(--font-brand);
  font-size: clamp(2.15rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
  max-width: 12ch;
  color: var(--text);
}

.hero-title-accent {
  color: var(--accent);
}

.hero-sub {
  margin: 0 0 28px;
  max-width: 36rem;
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.6;
  color: var(--text-muted);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 156px;
  padding: 13px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.hero-cta--primary {
  background: var(--cta-primary-fill);
  color: var(--cta-on-accent);
  border: 1px solid transparent;
  box-shadow: var(--cta-primary-shadow);
}

.hero-cta--primary:hover {
  background: var(--accent-deep);
  color: var(--cta-on-accent);
}

.hero-cta--secondary {
  background: var(--cta-ghost-fill);
  color: var(--cta-ghost-text);
  border: 1px solid var(--cta-ghost-border);
}

.hero-cta--secondary:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
}

.hero-note {
  margin: 18px 0 0;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  animation: fade-in 0.9s ease 0.15s both;
}

.hero-visual img {
  width: min(100%, 320px);
  height: auto;
  display: block;
  border-radius: 28px 28px 0 0;
  border: 1px solid var(--border);
  border-bottom: none;
  box-shadow:
    0 32px 64px -20px rgba(12, 26, 20, 0.28),
    0 8px 20px rgba(12, 26, 20, 0.08);
}

@media (max-width: 899px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 16px 0;
    text-align: center;
  }

  .hero-brand-mark {
    display: none;
  }

  .hero-title {
    max-width: none;
    margin-inline: auto;
    font-size: clamp(1.85rem, 8vw, 2.5rem);
  }

  .hero-sub {
    margin-inline: auto;
    margin-bottom: 22px;
    font-size: 1rem;
  }

  .hero-cta-row {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-cta {
    min-width: 0;
    width: 100%;
    padding: 14px 20px;
  }

  .hero-visual {
    margin-top: 8px;
  }

  .hero-visual img {
    width: min(62vw, 240px);
  }
}

@media (max-width: 479px) {
  .hero-note {
    font-size: 0.8rem;
  }
}

/* ---------- sections ---------- */

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 80px 24px;
}

@media (max-width: 719px) {
  .section {
    padding: 48px 16px;
  }
}

.section-title {
  font-family: var(--font-brand);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  letter-spacing: -0.035em;
  margin: 0 0 12px;
  color: var(--text-soft);
}

.section-intro {
  color: var(--text-muted);
  max-width: 58ch;
  margin: 0 0 44px;
  font-size: 1.02rem;
}

@media (max-width: 719px) {
  .section-intro {
    margin-bottom: 28px;
    font-size: 0.98rem;
  }
}

/* ---------- workflow ---------- */

.workflow-section {
  padding-top: 64px;
  padding-bottom: 72px;
}

.workflow-heading {
  text-align: center;
  font-family: var(--font-brand);
  font-size: clamp(1.7rem, 3.5vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 0 0 48px;
  color: var(--text);
}

.workflow-rail {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.workflow-dashed-line {
  display: none;
}

.workflow-steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .workflow-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
  }
}

.workflow-step {
  counter-increment: step;
  position: relative;
  text-align: left;
  padding: 4px 0 0 16px;
  border-top: none;
  border-left: 2px solid var(--accent);
}

.workflow-icon-ring {
  display: none;
}

.workflow-step-title {
  font-family: var(--font-brand);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text-soft);
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.workflow-step-title::before {
  content: "0" counter(step);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.workflow-step-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: none;
}

@media (min-width: 768px) {
  .workflow-step {
    padding: 8px 0 0;
    border-left: none;
    border-top: 2px solid var(--accent);
  }

  .workflow-step-title {
    margin: 16px 0 10px;
  }

  .workflow-step-text {
    max-width: 32ch;
  }
}

@media (max-width: 767px) {
  .workflow-section {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .workflow-heading {
    text-align: left;
    margin-bottom: 28px;
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
  }

  .workflow-steps {
    gap: 22px;
  }

  .workflow-step-title {
    font-size: 1.1rem;
  }

  .workflow-step-text {
    font-size: 0.94rem;
  }
}

/* ---------- apps ---------- */

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

.section-head .section-intro {
  margin-bottom: 0;
}

.apps-section {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  max-width: none;
  background: var(--bg-tint);
}

.apps-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.app-feature {
  --card-accent: var(--accent);

  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px 32px;
  align-items: start;
  padding: 32px;
  margin-bottom: 28px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--card-accent) 10%, #fff) 0%, #fff 55%);
  border: 1px solid color-mix(in srgb, var(--card-accent) 18%, var(--border));
}

.app-feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: block;
  box-shadow: 0 10px 24px -12px color-mix(in srgb, var(--card-accent) 55%, transparent);
}

.app-status {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--card-accent, var(--accent));
}

.app-feature h3 {
  margin: 0 0 6px;
  font-family: var(--font-brand);
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-soft);
}

.app-feature-tagline {
  margin: 0 0 14px;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--card-accent);
}

.app-feature-desc {
  margin: 0 0 16px;
  max-width: 52ch;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.app-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  max-width: 48ch;
}

.app-feature-list li {
  position: relative;
  padding-left: 1.15em;
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--text-muted);
}

.app-feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--card-accent);
}

.app-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border);
}

.app-row {
  --card-accent: var(--accent);

  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 20px 4px;
  border-bottom: 1px solid var(--border);
}

.app-row-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: block;
}

.app-row-copy h3 {
  margin: 0 0 4px;
  font-family: var(--font-brand);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-soft);
}

.app-row-copy p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 52ch;
}

.app-row .app-status {
  margin: 0;
  color: var(--text-muted);
  white-space: nowrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--cta-ghost-border);
  background: var(--cta-ghost-fill);
  color: var(--cta-ghost-text);
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.store-btn:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
  background: var(--accent-dim);
}

.store-btn svg {
  flex-shrink: 0;
  opacity: 0.9;
}

@media (max-width: 639px) {
  .app-feature {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 18px;
    margin-bottom: 20px;
  }

  .app-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .app-row {
    grid-template-columns: auto 1fr;
    gap: 14px;
    padding: 16px 0;
  }

  .app-row .app-status {
    grid-column: 2;
    margin-top: -6px;
  }

  .app-row-icon {
    width: 44px;
    height: 44px;
  }
}

/* ---------- promises ---------- */

.promises-section .section-head {
  margin-bottom: 36px;
}

.promise-grid {
  display: grid;
  gap: 28px 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .promise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .promise-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 48px;
  }
}

.promise {
  padding: 0;
}

.promise-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--accent-dim);
  color: var(--accent-deep);
}

.promise-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.promise h3 {
  margin: 0 0 8px;
  font-family: var(--font-brand);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-soft);
}

.promise p {
  margin: 0;
  max-width: 36ch;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ---------- screenshot rail ---------- */

.shots-section {
  border-top: 1px solid var(--border-subtle);
  max-width: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(27, 108, 74, 0.08), transparent 60%),
    var(--bg-deep);
}

.shots-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.shots-rail-wrap {
  margin: 0 -24px;
  padding: 8px 24px 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-dim) transparent;
  -webkit-overflow-scrolling: touch;
}

.shots-rail {
  display: flex;
  gap: 20px;
  padding-bottom: 8px;
}

.shot {
  flex: 0 0 auto;
  width: min(220px, 64vw);
  margin: 0;
  scroll-snap-align: start;
}

.shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px -24px rgba(12, 26, 20, 0.35);
  background: var(--bg-elevated);
}

.shot figcaption {
  margin-top: 12px;
  padding: 0 4px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--text-muted);
  text-align: center;
}

/* ---------- closing CTA ---------- */

.cta-band {
  text-align: center;
  padding-top: 72px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, transparent 0%, var(--bg-tint) 100%);
}

.cta-final {
  max-width: 560px;
  margin: 0 auto;
}

.cta-final-title {
  font-family: var(--font-brand);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0 0 16px;
  color: var(--text);
}

.cta-final-lead {
  margin: 0 auto 28px;
  max-width: 36rem;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.6;
  color: var(--text-muted);
}

.cta-final .hero-cta {
  margin-inline: auto;
}

.cta-final-footnote {
  margin: 18px 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- footer ---------- */

.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 36px 24px 48px;
  background: #eef3f0;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.footer-meta {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
}

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

.footer-mail {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  line-height: 1;
}

.footer-mail-icon {
  flex-shrink: 0;
  display: block;
  width: 17px;
  height: 17px;
  opacity: 0.85;
}

.footer-disclaimer {
  margin: 0;
  max-width: 68ch;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.9;
}

/* ---------- legal pages ---------- */

.legal-page .section {
  padding-top: 40px;
  padding-bottom: 80px;
  max-width: 900px;
}

.legal-page h1 {
  font-family: var(--font-brand);
  font-size: clamp(1.85rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 36px;
}

.legal-page h2 {
  font-family: var(--font-brand);
  font-size: 1.25rem;
  margin: 36px 0 12px;
  letter-spacing: -0.02em;
  color: var(--text-soft);
}

.legal-page h3 {
  font-size: 1.05rem;
  margin: 24px 0 8px;
  color: var(--text);
}

.legal-page p,
.legal-page li {
  color: var(--text-muted);
  max-width: 72ch;
}

.legal-page ul,
.legal-page ol {
  padding-left: 1.2em;
}

.legal-page li {
  margin-bottom: 7px;
}

.callout {
  margin: 22px 0;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  background: var(--accent-dim);
  font-size: 0.96rem;
}

.callout p {
  margin: 0;
  color: var(--text);
  max-width: none;
}

.callout p + p {
  margin-top: 10px;
}

.table-scroll {
  overflow-x: auto;
  margin: 18px 0;
}

table.data {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.93rem;
}

table.data th,
table.data td {
  text-align: left;
  padding: 11px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--text-muted);
}

table.data th {
  background: var(--bg-tint);
  font-weight: 600;
  color: var(--text-soft);
}

/* ---------- 404 ---------- */

.notfound {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 100px;
}

.notfound h1 {
  font-family: var(--font-brand);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.04em;
  margin: 0 0 12px;
}

/* ---------- mobile polish ---------- */

@media (max-width: 719px) {
  .section-head {
    margin-bottom: 28px;
  }

  .shots-rail-wrap {
    margin: 0 -16px;
    padding: 4px 16px 12px;
  }

  .shot {
    width: min(190px, 62vw);
  }

  .shot img {
    border-radius: 18px;
  }

  .cta-band {
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .cta-final .hero-cta {
    width: 100%;
  }

  .site-footer {
    padding: 28px 16px 40px;
  }

  .footer-nav {
    gap: 10px 14px;
  }

  .footer-disclaimer {
    font-size: 0.76rem;
  }

  .notfound {
    padding-top: 56px;
    padding-bottom: 72px;
  }
}
