html, body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(1200px 700px at 8% 8%, rgba(17,24,39,.05), transparent 58%),
    radial-gradient(1000px 640px at 92% 18%, rgba(17,24,39,.04), transparent 58%),
    linear-gradient(180deg, var(--bg, #ffffff), var(--bg-soft, #f7f7f8));
  color: var(--text, #111827);
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wrap {
  min-height: 100dvh;
  padding: 0;
}

.shell {
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 22px clamp(16px, 3vw, 36px) 30px;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text, #111827);
  text-decoration: none;
}

.brand-badge {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border, #e5e7eb);
  background: var(--surface, #ffffff);
  box-shadow: var(--shadow-sm, 0 4px 14px rgba(15, 23, 42, 0.06));
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-badge img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.brand-title {
  font-size: 16px;
  line-height: 1.15;
  font-weight: 800;
}

.brand-sub {
  margin-top: 4px;
  color: var(--muted, #6b7280);
  font-size: 13px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.account-chip {
  cursor: default;
}

.hero {
  margin-top: 18px;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.76));
  box-shadow: var(--shadow, 0 10px 30px rgba(15, 23, 42, 0.08));
}

.hero h1 {
  margin: 0;
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -.03em;
}

.hero p {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--muted, #6b7280);
  line-height: 1.7;
  font-size: 15px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border, #e5e7eb);
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm, 0 4px 14px rgba(15, 23, 42, 0.06));
}

.card b {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: var(--muted, #6b7280);
  line-height: 1.6;
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
  color: var(--muted, #6b7280);
}

.links a,
.footer a,
.card a,
.hero a {
  color: inherit;
}

.footer {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid var(--line, #eceff3);
  color: var(--muted, #6b7280);
  font-size: 12.5px;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .top {
    align-items: flex-start;
    flex-direction: column;
  }

  .actions {
    width: 100%;
    justify-content: flex-start;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}


.website-legal-box {
  margin-bottom: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 16px;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm, 0 4px 14px rgba(15, 23, 42, 0.06));
}
.website-legal-title { font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--muted,#6b7280); margin-bottom: 10px; }
.website-legal-row { display:flex; gap:10px; flex-wrap:wrap; align-items:center; margin-top:6px; }
.website-legal-row span { min-width: 72px; color: var(--muted,#6b7280); }
.website-footer-copy { color: var(--muted,#6b7280); }
.section-head { display:flex; align-items:flex-end; justify-content:space-between; gap:16px; margin-bottom:14px; }
.section-title { margin:0; font-size: clamp(24px,3vw,34px); line-height:1.1; }
.section-sub { margin:8px 0 0; color: var(--muted,#6b7280); max-width:780px; }
@media (max-width: 900px){ .section-head { flex-direction:column; align-items:flex-start; } }
