/* dis-brand-agent: repo=PLUS ONE product=DIS BRAND tag=DIS-PLUSONE-GOLD-NETWORK-MODELS-HUB-CSS name="DIS BRAND Governed Agent" action=edit at=2026-08-08T17:25:00.000Z */

:root {
  --ink: #12141a;
  --muted: #5e6675;
  --line: #ddd5c6;
  --paper: #f7f4ee;
  --gold: #b8892d;
  --gold-deep: #7d5c18;
  --max: 960px;
  --font: "Avenir Next", "SF Pro Display", "Segoe UI", sans-serif;
  --display: "Iowan Old Style", Palatino, Georgia, serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 40% at 10% -5%, #f0e2b8 0%, transparent 55%),
    var(--paper);
  line-height: 1.5;
  min-height: 100dvh;
}

.hub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.hub-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  color: inherit;
}
.hub-mark {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #f0d78a, var(--gold) 55%, var(--gold-deep));
}
.hub-badge {
  font-size: 0.72rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.hub-ticker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(184, 137, 45, 0.1);
  border: 1px solid rgba(184, 137, 45, 0.25);
}
.hub-ticker-label { color: var(--muted); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; }
.hub-change.up { color: #168a52; }
.hub-change.down { color: #c44; }
@media (max-width: 640px) {
  .hub-ticker { display: none; }
}

.hub-main {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}
.hub-kicker {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  margin-bottom: 0.5rem;
}
.hub-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.hub-lead {
  color: var(--muted);
  max-width: 36rem;
  margin-bottom: 2rem;
}

.hub-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 720px) {
  .hub-grid { grid-template-columns: 1fr 1fr; }
}

.hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.5rem;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  min-height: 320px;
}
.hub-card:hover {
  transform: translateY(-3px);
}
.hub-card--light {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(15, 18, 24, 0.08);
}
.hub-card--light:hover { box-shadow: 0 22px 56px rgba(15, 18, 24, 0.12); }
.hub-card--dark {
  background: linear-gradient(155deg, #0d0f14 0%, #1a1520 50%, #2a2010 100%);
  color: #f4efe6;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}
.hub-card--dark:hover { box-shadow: 0 22px 56px rgba(0, 0, 0, 0.45); }

.hub-card-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.hub-card--light .hub-card-tag { color: var(--gold-deep); }
.hub-card--dark .hub-card-tag { color: #d4a84b; }
.hub-card h2 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.hub-card p {
  font-size: 0.9rem;
  opacity: 0.82;
  flex: 1;
}
.hub-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.hub-pills li {
  font-size: 0.68rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  opacity: 0.65;
}
.hub-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 0.5rem 0;
}
.hub-features li {
  font-size: 0.78rem;
  opacity: 0.75;
  padding-left: 1rem;
  position: relative;
}
.hub-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-size: 0.7rem;
  opacity: 0.6;
}
.hub-cta {
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 0.25rem;
}
.hub-card--light .hub-cta { color: var(--gold-deep); }
.hub-card--dark .hub-cta { color: #e8c56a; }

.hub-preview {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  text-align: right;
  min-width: 140px;
}
.hub-preview--light {
  background: linear-gradient(135deg, #151821, #3f3118);
  color: #f7f2e8;
}
.hub-preview--dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.hp-balance {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hp-sub {
  font-size: 0.68rem;
  opacity: 0.65;
  margin-top: 0.15rem;
}

.hub-note {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: var(--muted);
  text-align: center;
}
.hub-note-preview {
  margin-top: 1.25rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.45;
}
.hub-note code,
.hub-note-preview code {
  font-size: 0.7rem;
  background: rgba(0,0,0,0.06);
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
}

.hub-compare {
  margin-top: 2.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.25rem;
  overflow-x: auto;
}
.hub-compare h2 {
  font-size: 1.1rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}
.hub-compare table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}
.hub-compare th,
.hub-compare td {
  padding: 0.55rem 0.65rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.hub-compare th {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.hub-compare tr:nth-child(even) td { background: rgba(184, 137, 45, 0.04); }
.hub-compare th:not(:first-child) { color: var(--gold-deep); }

.hub-phones { margin: 2rem 0; }
.hub-phones h2 { font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: -0.02em; }
.hub-phones-row {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .hub-phones-row { grid-template-columns: 1fr 1fr; }
}
.hub-phone-frame {
  position: relative;
  border-radius: 32px;
  padding: 12px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
  border: 3px solid #1a1a1a;
  background: #1a1a1a;
  overflow: hidden;
  max-width: 280px;
  margin: 0 auto;
}
.hub-phone-frame--light { border-color: #d4c4a8; background: #f7f4ee; }
.hub-phone-notch {
  width: 80px;
  height: 18px;
  background: #1a1a1a;
  border-radius: 0 0 14px 14px;
  margin: 0 auto 8px;
}
.hub-phone-frame--light .hub-phone-notch { background: #e8e2d6; }
.hub-phone-frame iframe {
  width: 100%;
  height: 520px;
  border: none;
  border-radius: 22px;
  background: #fff;
  pointer-events: none;
}

.hub-compare td:first-child { color: var(--muted); font-weight: 600; width: 28%; }

.hub-gap { margin-top: 2rem; }
.hub-gap-text {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}
.hub-gap-text strong { color: var(--ink); }
