@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ========================================
   GENCITY Design System
   HYBT Technologies, Inc.
   ======================================== */

:root {
  --black: #0A0A0A;
  --black-rich: #050505;
  --graphite: #141414;
  --graphite-mid: #1A1A1A;
  --graphite-light: #222222;
  --surface: #2A2A2A;
  --surface-hover: #333333;
  --border: #2E2E2E;
  --border-light: #3A3A3A;
  --gold: #C8A44E;
  --gold-light: #D4B96A;
  --gold-dim: rgba(200,164,78,0.15);
  --gold-glow: rgba(200,164,78,0.08);
  --text-primary: #F0EDE6;
  --text-secondary: #9A9590;
  --text-muted: #6B6560;
  --white: #FFFFFF;
  --red-subtle: #8B3A3A;
  --green-subtle: #3A6B3A;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-height: 72px;
  --container: 1200px;
  --container-narrow: 900px;
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--black);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.15rem;
  font-weight: 500;
}

p {
  color: var(--text-secondary);
  max-width: 680px;
}

.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }

/* ========================================
   LAYOUT
   ======================================== */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.container--narrow {
  max-width: var(--container-narrow);
}

section {
  padding: 100px 0;
}

.section--dark {
  background: var(--graphite);
}

.section--darker {
  background: var(--black-rich);
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.nav__brand-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__brand-icon svg {
  width: 18px;
  height: 18px;
}

.nav__brand span {
  color: var(--gold);
  font-weight: 300;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link--active {
  color: var(--text-primary);
  background: var(--gold-glow);
}

.nav__link--active {
  color: var(--gold);
}

.nav__cta {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--black);
  background: var(--gold);
  padding: 8px 20px;
  border-radius: var(--radius);
  margin-left: 10px;
  transition: background var(--transition), transform var(--transition);
}

.nav__cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Mobile nav */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 1024px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform var(--transition);
  }
  .nav__links--open {
    transform: translateX(0);
  }
  .nav__link {
    font-size: 1rem;
    padding: 12px 16px;
    width: 100%;
  }
  .nav__cta {
    margin-left: 0;
    margin-top: 16px;
    text-align: center;
    width: 100%;
    padding: 14px 20px;
  }
}

/* ========================================
   HERO
   ======================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(200,164,78,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(200,164,78,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 580px;
}

.hero__grid-bg {
  position: absolute;
  top: 0;
  right: -10%;
  width: 55%;
  height: 100%;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
  transform: perspective(600px) rotateY(-8deg);
  pointer-events: none;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,164,78,0.2);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  padding: 14px 0;
}

.btn--ghost:hover {
  color: var(--gold-light);
}

.btn--ghost svg,
.btn--outline svg,
.btn--primary svg {
  width: 16px;
  height: 16px;
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ========================================
   CARDS
   ======================================== */

.card {
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color var(--transition), transform var(--transition);
}

.card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}

.card__icon {
  width: 48px;
  height: 48px;
  background: var(--gold-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.card--highlight {
  border-color: var(--gold);
  position: relative;
}

.card--highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ========================================
   GRID LAYOUTS
   ======================================== */

.grid {
  display: grid;
  gap: 24px;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
  margin-bottom: 60px;
}

.section-header--center {
  text-align: center;
}

.section-header--center p {
  margin: 0 auto;
}

.section-header__label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-header__label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.05rem;
}

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */

.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 60% 50% at 30% 20%, rgba(200,164,78,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1.1rem;
}

/* ========================================
   ARCHITECTURE DIAGRAM
   ======================================== */

.arch-diagram {
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin: 40px 0;
}

.arch-layer {
  padding: 28px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  position: relative;
}

.arch-layer:last-child { margin-bottom: 0; }

.arch-layer--azure {
  background: rgba(0,120,212,0.08);
  border: 1px solid rgba(0,120,212,0.2);
}

.arch-layer--orchestration {
  background: var(--gold-glow);
  border: 1px solid rgba(200,164,78,0.2);
}

.arch-layer--edge {
  background: rgba(60,179,113,0.06);
  border: 1px solid rgba(60,179,113,0.15);
}

.arch-layer__title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.arch-layer--azure .arch-layer__title { color: #4CA6E8; }
.arch-layer--orchestration .arch-layer__title { color: var(--gold); }
.arch-layer--edge .arch-layer__title { color: #5BC48A; }

.arch-nodes {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.arch-node {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-primary);
}

.arch-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.arch-connector svg {
  width: 16px;
  height: 16px;
  margin: 0 8px;
  stroke: var(--text-muted);
}

/* ========================================
   USE CASE CARDS
   ======================================== */

.use-case {
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  margin-bottom: 32px;
}

.use-case__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.use-case__number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 6px 14px;
  border-radius: var(--radius);
  white-space: nowrap;
}

.use-case h3 {
  font-size: 1.4rem;
}

.use-case__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .use-case__grid { grid-template-columns: 1fr; }
}

.use-case__col h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.use-case__col--problem h4 { color: #C47A7A; }
.use-case__col--gap h4 { color: var(--text-muted); }
.use-case__col--solution h4 { color: var(--gold); }

.use-case__col p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ========================================
   PRICING CARDS
   ======================================== */

.pricing-card {
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.pricing-card--featured {
  border-color: var(--gold);
  position: relative;
}

.pricing-card--featured::before {
  content: 'Recommended';
  position: absolute;
  top: -12px;
  left: 32px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 4px 14px;
  border-radius: var(--radius);
}

.pricing-card h3 {
  margin-bottom: 8px;
}

.pricing-card__desc {
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.pricing-card__features {
  flex: 1;
  margin-bottom: 28px;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.pricing-card__feature svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ========================================
   FORMS
   ======================================== */

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  background: var(--graphite-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: border-color var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--gold);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239A9590' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ========================================
   STATS BAR
   ======================================== */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (max-width: 768px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

.stat {
  background: var(--graphite);
  padding: 32px 28px;
  text-align: center;
}

.stat__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat__label {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ========================================
   FEATURE LIST (compact)
   ======================================== */

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.feature-item:hover {
  border-color: var(--border-light);
}

.feature-item__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.feature-item h4 {
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.feature-item p {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ========================================
   SPLIT SECTIONS
   ======================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}

.split__visual {
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   BANNER / CTA SECTION
   ======================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--graphite-mid) 0%, var(--graphite) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  margin: 0 auto 32px;
}

@media (max-width: 600px) {
  .cta-banner { padding: 40px 24px; }
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}

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

@media (max-width: 768px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .footer__top { grid-template-columns: 1fr; }
}

.footer__brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.footer__brand-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 300px;
}

.footer__col-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__link {
  display: block;
  font-size: 0.88rem;
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer__link:hover {
  color: var(--gold);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

.footer__legal {
  display: flex;
  gap: 20px;
}

/* ========================================
   DIVIDER
   ======================================== */

.divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ========================================
   SCROLL REVEAL
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   TAG / BADGE
   ======================================== */

.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 4px 12px;
  border-radius: var(--radius);
}

/* ========================================
   TABLE
   ======================================== */

.data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.data-table th,
.data-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}

.data-table th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--graphite);
}

.data-table td {
  color: var(--text-secondary);
}

/* ========================================
   AZURE SPECIFIC
   ======================================== */

.azure-accent {
  color: #4CA6E8;
}

.azure-border {
  border-color: rgba(0,120,212,0.3);
}

/* ========================================
   CONTACT BLOCKS
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-block {
  background: var(--graphite);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-block h4 {
  margin-bottom: 8px;
}

.contact-block p {
  font-size: 0.88rem;
  margin-bottom: 20px;
}

/* ========================================
   UTILITIES
   ======================================== */

.mt-0 { margin-top: 0; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
