:root {
  --paper: #f2f1eb;
  --ink: #111111;
  --muted: #7a7a73;
  --line: rgba(17, 17, 17, .14);
  --blue: #1d39f5;
  --white: #ffffff;
  font-family: "Inter Tight", Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; background: var(--paper); }
a { color: inherit; text-decoration: none; }
.shell { width: min(1240px, calc(100% - 48px)); margin: 0 auto; }
.topbar { min-height: 94px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 16px; font-size: 15px; font-weight: 600; letter-spacing: -.02em; }
.brand img { width: 142px; height: auto; display: block; }
.brand span { border-left: 1px solid var(--line); padding-left: 16px; color: var(--muted); }
.topbar-actions { display: flex; align-items: center; gap: 24px; }
.button { display: inline-flex; align-items: center; gap: 18px; padding: 15px 20px; color: var(--white); background: var(--blue); font-size: 14px; font-weight: 600; transition: transform .2s ease, background .2s ease; }
.button:hover { background: #1029d5; transform: translateY(-2px); }
.button-small { padding: 11px 15px; }
.text-link { font-size: 14px; color: var(--muted); }
.tenant-chip { padding: 8px 11px; border: 1px solid var(--line); font-size: 13px; }
.hero { min-height: 580px; padding: 116px 0 96px; max-width: 880px; }
.eyebrow { margin: 0 0 22px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .15em; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 820px; margin-bottom: 28px; font-size: clamp(56px, 9vw, 124px); line-height: .9; letter-spacing: -.075em; font-weight: 500; }
h1 em { color: var(--blue); font-style: normal; }
.hero-copy { max-width: 520px; margin-bottom: 35px; color: #555555; font-size: 19px; line-height: 1.42; letter-spacing: -.02em; }
.workspace-preview { padding: 50px 0 100px; border-top: 1px solid var(--line); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
h2 { margin-bottom: 0; font-size: clamp(34px, 5vw, 62px); line-height: .95; letter-spacing: -.06em; font-weight: 500; }
.status-dot { display: inline-flex; align-items: center; gap: 8px; padding-bottom: 8px; color: var(--muted); font-size: 13px; }
.status-dot i { width: 7px; height: 7px; border-radius: 50%; background: #38a169; }
.connection-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.connection-card { min-height: 190px; position: relative; display: flex; flex-direction: column; justify-content: space-between; padding: 24px; background: var(--white); border: 1px solid var(--line); }
.connection-card-muted { background: transparent; }
.connection-icon { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line); color: var(--muted); font-size: 22px; }
.connection-icon.blue { color: var(--blue); border-color: rgba(29,57,245,.3); font-size: 12px; font-weight: 800; }
.connection-card h3 { margin-bottom: 8px; font-size: 20px; letter-spacing: -.04em; font-weight: 600; }
.connection-card p { max-width: 390px; margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.connection-status { position: absolute; right: 24px; bottom: 24px; color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: .08em; }
.download-list { display: grid; gap: 14px; }
.download-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px; background: var(--white); border: 1px solid var(--line); }
.download-card h3 { margin-bottom: 8px; font-size: 20px; letter-spacing: -.04em; font-weight: 600; }
.download-card p { margin-bottom: 4px; color: var(--muted); font-size: 14px; }
.download-card code { color: var(--muted); font-size: 11px; word-break: break-all; }
.download-meta { color: var(--blue) !important; font-size: 11px !important; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-compact { min-height: auto; padding-bottom: 92px; }
.footer { display: flex; justify-content: space-between; padding: 24px 0 32px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
@media (max-width: 700px) {
  .shell { width: min(100% - 32px, 1240px); }
  .topbar { min-height: 76px; }
  .brand img { width: 118px; }
  .brand span, .text-link, .tenant-chip { display: none; }
  .hero { min-height: auto; padding: 88px 0 90px; }
  .hero-copy { font-size: 17px; }
  .section-heading, .footer { align-items: flex-start; flex-direction: column; }
  .connection-grid { grid-template-columns: 1fr; }
  .download-card { align-items: flex-start; flex-direction: column; }
  .connection-status { position: static; margin-top: 20px; }
}
