:root {
  --ip-bg1: #f6f8ff;
  --ip-bg2: #eef3ff;
  --ip-card: #ffffff;
  --ip-text: #111827;
  --ip-soft: #6b7280;
  --ip-line: #e5e7eb;
  --ip-brand: #2563eb;
  --ip-brand2: #7c3aed;
  --ip-shadow: 0 18px 40px rgba(37, 99, 235, 0.12);
  --ip-radius: 24px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ip-text);
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, .08), transparent 28%),
    radial-gradient(circle at top right, rgba(37, 99, 235, .08), transparent 24%),
    linear-gradient(180deg, var(--ip-bg1), var(--ip-bg2));
}

a {
  color: inherit;
}

.page-hero {
  background: linear-gradient(135deg, rgba(37, 99, 235, .98), rgba(124, 58, 237, .95));
  color: #fff;
  padding: 22px 16px 28px;
  box-shadow: 0 12px 26px rgba(37, 99, 235, .18);
}

.hero-inner {
  width: min(1100px, calc(100% - 8px));
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #eaf2ff;
  font-weight: 800;
  font-size: .95rem;
  margin-bottom: 18px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  padding: 10px 14px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.back-link:hover {
  background: rgba(255, 255, 255, .2);
  transform: translateY(-2px);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.4px;
}

.page-hero p {
  margin: 12px 0 0;
  max-width: 820px;
  color: rgba(255, 255, 255, .92);
  line-height: 1.8;
  font-size: 1rem;
}

.page-wrap {
  width: min(1100px, calc(100% - 16px));
  margin: 20px auto 40px;
}

.page-card {
  background: var(--ip-card);
  border: 1px solid rgba(229, 231, 235, .92);
  border-radius: 28px;
  box-shadow: var(--ip-shadow);
  padding: 22px 18px;
  margin-bottom: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 18px;
}

.section-title {
  margin: 0 0 10px;
  font-size: 1.18rem;
  font-weight: 900;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-text {
  margin: 0;
  color: #475569;
  line-height: 1.8;
  font-size: 1rem;
}

.feature-list,
.legal-list {
  margin: 0;
  padding-left: 18px;
  color: #475569;
  line-height: 1.8;
}

.feature-list li,
.legal-list li {
  margin-bottom: 8px;
}

.info-tile {
  background: linear-gradient(180deg, #ffffff, #fafcff);
  border: 1px solid var(--ip-line);
  border-radius: 22px;
  padding: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.info-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.08);
  border-color: #dbeafe;
}

.info-tile h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 900;
  color: #1e3a8a;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-tile p {
  margin: 0;
  color: #475569;
  line-height: 1.75;
  font-size: .96rem;
}

.note-box {
  margin-top: 12px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: #1e40af;
  border-radius: 18px;
  padding: 14px 16px;
  line-height: 1.7;
  font-size: .95rem;
}

.contact-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 11px 14px;
  font-weight: 800;
  font-size: .95rem;
  transition: all 0.25s ease;
}

.contact-chip:hover {
  background: #dbeafe;
  border-color: #bfdbfe;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}


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

.email-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-decoration: none;
  padding: 16px;
  border-radius: 22px;
  border: 1px solid #dbeafe;
  background: linear-gradient(180deg, #f8fbff, #eef4ff);
  box-shadow: 0 10px 24px rgba(37, 99, 235, .08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.email-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.12);
  border-color: #a0c4ff;
  background: linear-gradient(180deg, #ffffff, #e6efff);
}

.email-card:hover .email-card-icon {
  background: #eff6ff;
  transform: scale(1.08);
  border-color: #a0c4ff;
}

.email-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: #2563eb;
  border: 1px solid #dbeafe;
  flex: 0 0 42px;
  transition: all 0.3s ease;
}

.email-card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.email-card-body strong {
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.35;
}

.email-card-body span {
  color: #475569;
  line-height: 1.65;
  font-size: .94rem;
}

.email-card-address {
  color: #1d4ed8 !important;
  font-weight: 800;
  word-break: break-word;
}

.email-fallback {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
}

.email-fallback-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: .95rem;
  font-weight: 800;
  color: #0f172a;
}

.contact-chip-muted {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #334155;
}

.email-routing-note {
  margin-top: 12px;
}

.highlight-email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: 900;
  color: #111827;
  word-break: break-word;
}

.section-text {
  margin: 0;
  color: #475569;
  line-height: 1.85;
  font-size: 1.02rem;
}

.section-text + .section-text {
  margin-top: 12px;
}

.section-title {
  margin: 0 0 14px;
  font-size: 1.22rem;
  font-weight: 800;
  color: #0f172a;
}

.muted {
  color: var(--ip-soft);
  font-size: .92rem;
  line-height: 1.7;
}

.small-divider {
  height: 1px;
  background: #eef2f7;
  margin: 16px 0;
}

.footer-note {
  text-align: center;
  color: #64748b;
  font-size: .92rem;
  line-height: 1.7;
  padding: 6px 0 0;
}

@media (max-width: 820px) {

  .grid-2,
  .grid-3,
  .email-grid {
    grid-template-columns: 1fr;
  }

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

  .page-wrap {
    width: min(100% - 12px, 1100px);
  }

  .page-hero {
    padding: 18px 12px 24px;
  }

  /* Override universal-nav's 70px left-push on mobile for info pages only.
     Hamburger is position:fixed so content can use full width.
     We push content DOWN below the hamburger with padding-top instead. */
  body.uth-menu-present .page-hero {
    padding-left: 16px !important;
    padding-top: 68px !important;
  }

  /* Fix Home button to same level as hamburger — mirrors it on the right side */
  body.uth-menu-present .page-hero .back-link {
    position: fixed;
    top: var(--uth-nav-top);
    right: 12px;
    z-index: 1050;
    margin: 0 !important;
  }
}