:root {
  --bg: #070b12;
  --bg-elevated: #0d1219;
  --surface: #121820;
  --surface-hover: #171f2a;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f7fb;
  --muted: #8b97a8;
  --accent: #5b8cff;
  --accent-soft: rgba(91, 140, 255, 0.14);
  --accent-glow: rgba(91, 140, 255, 0.35);
  --success: #34d399;
  --danger: #f87171;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(91, 140, 255, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(52, 211, 153, 0.08), transparent 50%),
    var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ── Layout ── */

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow {
  width: min(640px, 100%);
}

/* ── Nav ── */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), #34d399);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  box-shadow: 0 8px 24px var(--accent-glow);
}

.nav-badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

/* ── Hero (home) ── */

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
  padding-bottom: 3rem;
}

@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr 420px;
    gap: 3rem;
    padding-bottom: 4rem;
  }
}

.hero-copy h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, #fff 30%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 42ch;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
  max-width: 36rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}

.feature-item:hover {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
}

.feature-icon {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin-top: 0.1rem;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-body {
  min-width: 0;
  flex: 1;
}

.feature-title {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.feature-desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted);
}

/* ── Cards ── */

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.card-header {
  margin-bottom: 1.5rem;
}

.card-header h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.card-header p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ── Form ── */

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.45rem;
}

input,
select {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-elevated);
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

input::placeholder {
  color: #5c6778;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.field-hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin: -0.65rem 0 1rem;
}

.field-hint.field-error,
.field-hint.field-status.field-error {
  color: #fca5a5;
  margin: -0.65rem 0 1rem;
}

.field-hint.field-status.field-success {
  color: #86efac;
  margin: -0.65rem 0 1rem;
}

input.input-invalid {
  border-color: rgba(248, 113, 113, 0.55);
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.12);
}

input.input-valid {
  border-color: rgba(52, 211, 153, 0.45);
}

.order-ref-display {
  margin: 0 0 1rem;
  padding: 0.72rem 0.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.label-optional {
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: var(--muted);
  font-size: 0.85em;
}

.amount-row {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 0.75rem;
}

.country-select,
#country {
  font-size: 1rem;
  line-height: 1.4;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem 1.25rem;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent), #4a72e8);
  color: #fff;
  box-shadow: 0 12px 32px var(--accent-glow);
  transition: transform 0.15s, filter 0.15s, box-shadow 0.15s;
}

.btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: none;
  font-weight: 600;
}

.btn-secondary:hover {
  background: var(--surface-hover);
  filter: none;
}

.btn-arrow::after {
  content: "→";
  transition: transform 0.15s;
}

.btn:hover .btn-arrow::after,
.btn-arrow:hover::after {
  transform: translateX(3px);
}

/* ── Alerts ── */

.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.alert-error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #fca5a5;
}

.alert-info {
  background: var(--accent-soft);
  border: 1px solid rgba(91, 140, 255, 0.25);
  color: #a5c4ff;
}

.alert-warning {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.35);
  color: #fde68a;
}

.alert-warning strong {
  color: #fef3c7;
}

.wallet-field {
  margin-bottom: 0;
}

.wallet-field-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.wallet-field-top label {
  margin-bottom: 0;
}

.wallet-demo-note {
  margin-top: 0.65rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.payment-status {
  position: relative;
  margin-bottom: 1.25rem;
}

.payment-status-dismiss {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.payment-status-dismiss:hover {
  background: rgba(248, 113, 113, 0.15);
  color: var(--danger);
}

.payment-status-dismiss:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.payment-status-panel {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  padding-right: 2.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
}

.payment-status-panel--pending {
  background: rgba(251, 191, 36, 0.08);
  border-color: rgba(251, 191, 36, 0.35);
}

.payment-status-panel--complete {
  background: rgba(52, 211, 153, 0.1);
  border-color: rgba(52, 211, 153, 0.35);
}

.payment-status-panel strong {
  display: block;
  margin-bottom: 0.35rem;
}

.payment-status-panel p {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.payment-status-panel--complete p {
  color: #86efac;
}

.payment-status-icon {
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.btn-sm {
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
}

.callback-params {
  overflow: auto;
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem;
  margin: 0;
}

/* ── Checkout layout ── */

.checkout-layout {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 3rem;
}

@media (min-width: 820px) {
  .checkout-layout {
    grid-template-columns: 340px 1fr;
    gap: 2rem;
    align-items: start;
  }
}

.order-panel {
  position: relative;
}

@media (min-width: 820px) {
  .order-panel {
    position: sticky;
    top: 1.5rem;
  }
}

.order-panel .card {
  padding: 1.5rem;
}

.order-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.order-amount {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 0.25rem;
  line-height: 1.1;
}

.order-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 1.25rem;
  color: #d1d9e6;
}

.order-details {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  display: grid;
  gap: 0.65rem;
}

.order-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.order-row dt {
  color: var(--muted);
  margin: 0;
}

.order-row dd {
  margin: 0;
  text-align: right;
  font-weight: 500;
  word-break: break-all;
}

.secure-strip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-sm);
  background: rgba(52, 211, 153, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.2);
  font-size: 0.8rem;
  color: #86efac;
}

.secure-strip svg {
  flex-shrink: 0;
}

/* ── Steps ── */

.steps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  font-size: 0.8rem;
}

.step {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--muted);
}

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.step.active {
  color: var(--text);
}

.step.active .step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.step.done {
  color: var(--success);
}

.step.done .step-num {
  background: rgba(52, 211, 153, 0.15);
  border-color: rgba(52, 211, 153, 0.4);
  color: var(--success);
}

.step-divider {
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: var(--border-strong);
}

/* ── Providers ── */

.providers-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.providers-header h2 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.providers-count {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.providers {
  display: grid;
  gap: 0.6rem;
  margin: 0 0 1rem;
}

.providers--checkout {
  grid-template-columns: 1fr;
}

.provider-item--extra {
  display: none;
}

.providers.is-expanded .provider-item--extra {
  display: flex;
}

.providers-show-more {
  width: 100%;
  margin: 0 0 1rem;
}

@media (min-width: 560px) {
  .providers:not(.providers--checkout) {
    grid-template-columns: 1fr 1fr;
  }
}

.provider-btn {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.9rem 1rem;
  text-align: left;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color 0.15s, background 0.15s, transform 0.12s;
}

.provider-btn:hover {
  border-color: var(--accent);
  background: var(--surface-hover);
  transform: translateY(-1px);
}

.provider-btn.recommended {
  border-color: rgba(91, 140, 255, 0.5);
  background: var(--accent-soft);
}

.provider-avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  overflow: hidden;
}

.provider-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 4px;
}

.provider-initials--fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.provider-avatar--icon {
  color: var(--accent);
}

.payment-type-icon {
  display: grid;
  place-items: center;
  line-height: 0;
}

.provider-btn.is-processing {
  opacity: 0.7;
  pointer-events: none;
}

.provider-info {
  flex: 1;
  min-width: 0;
}

.provider-name {
  display: block;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.provider-meta {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.provider-badge {
  flex-shrink: 0;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
}

.provider-chevron {
  flex-shrink: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1;
}

select option:disabled {
  color: #5c6778;
  background: var(--bg-elevated);
}

.provider-btn--disabled,
.provider-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  border-color: var(--border);
  background: var(--bg-elevated);
}

.provider-btn--disabled:hover,
.provider-btn:disabled:hover {
  transform: none;
  border-color: var(--border);
  background: var(--bg-elevated);
}

.provider-btn--disabled .provider-avatar,
.provider-btn:disabled .provider-avatar {
  color: var(--muted);
}

.checkout-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.hosted-fallback {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.hosted-fallback p {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

/* ── Loading ── */

.loading-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem 1rem;
}

.loading-block p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Footer ── */

.site-footer {
  margin-top: auto;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.site-footer code {
  font-size: 0.72rem;
  color: #a5c4ff;
  background: rgba(91, 140, 255, 0.1);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: #6b7789;
}

.footer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* ── Checkout option pickers (country / payment type) ── */

.checkout-step {
  margin-bottom: 1.25rem;
}

.checkout-step-label {
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.option-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.option-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 5.5rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.option-btn:hover {
  background: var(--surface-hover);
  border-color: rgba(91, 140, 255, 0.45);
}

.option-btn.is-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(91, 140, 255, 0.35);
}

.option-btn-flag,
.option-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 1.75rem;
  line-height: 1;
}

.option-btn-flag-img {
  width: 2.25rem;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.option-btn-globe {
  color: var(--accent);
}

.option-btn-logo {
  width: 1.75rem;
  height: 1.75rem;
  object-fit: contain;
  border-radius: 6px;
}

.option-btn-icon-emoji {
  font-size: 1.45rem;
  line-height: 1;
}

.option-btn-label {
  text-align: center;
  max-width: 7rem;
}

.option-picker--countries .option-btn {
  min-width: 6.5rem;
  padding: 0.85rem 0.75rem;
}

.option-btn--method {
  min-width: 5rem;
}

.option-btn--unavailable {
  opacity: 0.5;
  cursor: not-allowed;
  border-style: dashed;
}

.option-btn--unavailable:hover {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--border-strong);
}

.option-btn--unavailable.is-selected {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.02);
  box-shadow: none;
}

.option-btn-subtext {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.2;
}

@media (max-width: 520px) {
  .option-picker {
    gap: 0.45rem;
  }

  .option-btn {
    min-width: calc(33% - 0.35rem);
    flex: 1 1 calc(33% - 0.35rem);
    padding: 0.65rem 0.5rem;
    font-size: 0.72rem;
  }

  .option-btn-label {
    max-width: none;
  }
}

/* ── Advanced panel (homepage) ── */

.advanced-panel {
  margin-top: 1.25rem;
  padding-top: 0.25rem;
  border-top: 1px solid var(--border);
}

.advanced-summary {
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  list-style: none;
  user-select: none;
}

.advanced-summary::-webkit-details-marker {
  display: none;
}

.advanced-summary::before {
  content: "▸ ";
  display: inline-block;
  transition: transform 0.15s;
}

.advanced-panel[open] .advanced-summary::before {
  transform: rotate(90deg);
}

.advanced-hint {
  margin: 0.65rem 0 0.85rem;
}

.providers--advanced {
  max-height: 280px;
  overflow-y: auto;
  padding-right: 0.25rem;
}

.provider-btn.is-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: 0 0 0 1px rgba(91, 140, 255, 0.35);
}

.provider-btn.is-selected .provider-chevron::before {
  content: "✓";
}

.provider-btn.is-selected .provider-chevron {
  color: var(--accent);
}

/* ── Legacy compat (session.js still sets these) ── */

.summary {
  font-size: 2.25rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.03em;
}

.summary-sub {
  display: none;
}

#session-meta {
  display: none;
}
