:root {
  --azeo-yellow: #ffd500;
  --ink: #101114;
  --muted: #666970;
  --surface: #ffffff;
  --canvas: #f2f3f4;
  --line: #d9dadd;
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(90deg, rgba(16, 17, 20, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(16, 17, 20, 0.035) 1px, transparent 1px),
    var(--canvas);
  background-size: 36px 36px;
  color: var(--ink);
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", sans-serif;
  line-height: 1.5;
}

a { color: inherit; }

a:focus-visible,
.button:focus-visible {
  outline: 3px solid var(--azeo-yellow);
  outline-offset: 3px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.site-nav {
  width: min(1120px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  color: var(--ink);
  font-size: 18px;
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--azeo-yellow);
  color: #000;
  font-size: 22px;
  font-weight: 900;
}

.nav-links { display: flex; gap: 28px; }

.nav-links a {
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover { color: var(--ink); }

.identity-state {
  justify-self: end;
  color: var(--muted);
  font-size: 14px;
}

.page-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 80px;
}

.welcome {
  max-width: 760px;
  margin-bottom: 44px;
}

.eyebrow,
.panel-label {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.welcome h1 {
  max-width: 720px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 500;
  line-height: 0.98;
}

.welcome-copy {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.portal-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}

.portal-panel {
  min-width: 0;
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.tickets-panel { border-top: 6px solid var(--azeo-yellow); }

.support-panel {
  background: var(--ink);
  color: #fff;
}

.panel-heading,
.service-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.portal-panel h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.15;
}

.panel-icon {
  color: #b8bac0;
  font: 700 30px/1 Georgia, serif;
}

.panel-copy {
  max-width: 540px;
  margin: 20px 0 28px;
  color: var(--muted);
}

.support-panel .panel-label,
.support-panel .panel-copy { color: #b8bac0; }

.status-dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 50%;
  background: #4ce0bd;
  box-shadow: 0 0 0 5px rgba(76, 224, 189, 0.16);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 18px;
  border-radius: 4px;
  font-weight: 750;
  text-decoration: none;
}

.button-disabled {
  background: #ececee;
  color: #777a81;
}

.support-links { display: grid; gap: 8px; }

.support-links a {
  width: max-content;
  color: #fff;
  font-size: 17px;
  text-underline-offset: 4px;
}

.wide-panel {
  grid-column: 1 / -1;
  min-height: 150px;
}

.wide-panel .panel-copy { margin-bottom: 0; }

.availability {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.site-footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 40px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 760px) {
  .site-nav { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .page-shell { padding-top: 48px; }
  .portal-grid { grid-template-columns: minmax(0, 1fr); }
  .wide-panel { grid-column: auto; }
  .portal-panel { min-height: 220px; padding: 24px; }
  .service-row { align-items: flex-start; flex-wrap: wrap; }
}