@import url("https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Fraunces:wght@400;600;700&family=Manrope:wght@400;500;600&family=Playfair+Display:wght@400;600;700&family=Space+Grotesk:wght@400;500;600&family=Sora:wght@400;500;600&display=swap");

:root {
  --bg: #f5f1ea;
  --ink: #1e1b16;
  --muted: #6f6254;
  --card: #ffffff;
  --accent: #c74b2c;
  --accent-2: #136f63;
  --accent-3: #2743a3;
  --accent-soft: rgba(199, 75, 44, 0.14);
  --accent-glow: rgba(255, 198, 150, 0.5);
  --heading-font: "Fraunces", serif;
  --body-font: "Space Grotesk", sans-serif;
  --texture-url: none;
  --ring: rgba(31, 23, 13, 0.16);
  --shadow: 0 20px 45px rgba(24, 18, 10, 0.12);
  --shadow-soft: 0 16px 38px rgba(24, 18, 10, 0.08);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--body-font);
  color: var(--ink);
  background: radial-gradient(circle at 10% 10%, #fff3e6, transparent 55%),
    radial-gradient(circle at 90% 0%, #e7f1ff, transparent 50%),
    linear-gradient(160deg, #f5f1ea, #fbf9f5);
  min-height: 100vh;
}

body.company-page {
  position: relative;
}

body.company-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: var(--texture-url);
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

body.company-page .noise-layer {
  z-index: 1;
}

body.company-page .page-shell {
  position: relative;
  z-index: 2;
}

h2,
h3 {
  font-family: var(--heading-font);
}

body.theme-field {
  --accent: #4e7a3a;
  --accent-2: #1d6d6f;
  --accent-3: #b07832;
  background: radial-gradient(circle at 15% 10%, #edf7e8, transparent 55%),
    radial-gradient(circle at 90% 0%, #fff1df, transparent 55%),
    linear-gradient(140deg, #f5f1ea, #fdfaf6);
}

body.theme-industrial {
  --accent: #bb4a1f;
  --accent-2: #334258;
  --accent-3: #b98c2a;
  background: radial-gradient(circle at 12% 12%, #fff0e7, transparent 60%),
    radial-gradient(circle at 88% 5%, #eef1f7, transparent 55%),
    linear-gradient(135deg, #f5f1ea, #faf6f0);
}

body.theme-trade {
  --accent: #1d6fa6;
  --accent-2: #e15f2c;
  --accent-3: #2d944b;
  background: radial-gradient(circle at 15% 10%, #e7f4ff, transparent 55%),
    radial-gradient(circle at 85% 12%, #fff1e3, transparent 50%),
    linear-gradient(150deg, #f5f1ea, #fcf6ed);
}

body.theme-services {
  --accent: #483dc0;
  --accent-2: #e15848;
  --accent-3: #14907e;
}

.noise-layer {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.4;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 32px 80px;
}

.hero {
  background: var(--card);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 32px;
  margin-bottom: 28px;
  border: 1px solid rgba(30, 27, 22, 0.08);
  position: relative;
  overflow: hidden;
}

.hero--cover {
  min-height: 90vh;
  align-content: end;
  padding-top: 90px;
  padding-bottom: 64px;
}

.hero-cover {
  position: absolute;
  inset: 0;
  background-image: var(--cover-image), linear-gradient(120deg, rgba(30, 27, 22, 0.15), transparent);
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  filter: saturate(0.9);
  transform: translateY(0);
  transition: transform 0.1s ease-out;
  z-index: 0;
  pointer-events: none;
}

.hero-cover--subtle {
  opacity: 0.12;
  filter: saturate(0.7);
}

.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  top: -140px;
  right: -60px;
  opacity: 0.7;
}

.hero::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px dashed rgba(30, 27, 22, 0.12);
  bottom: -80px;
  left: -40px;
  opacity: 0.5;
}

.hero h1 {
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin: 12px 0;
}

.hero--dashboard {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.hero--company {
  grid-template-columns: 1.1fr 0.9fr;
}

.hero--split {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.hero--grid {
  grid-template-columns: 1.3fr 0.7fr;
}

.hero--stack {
  grid-template-columns: 1fr;
}

.hero--centered {
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background-image: var(--icon-url), linear-gradient(140deg, var(--accent), var(--accent-2));
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(31, 23, 13, 0.08);
}

.hero-name {
  margin: 0;
  font-weight: 600;
  font-size: 1.05rem;
}

.hero-title {
  font-family: var(--heading-font);
  font-size: clamp(2.3rem, 3.2vw, 3.6rem);
  margin: 16px 0 8px;
}

.hero-card {
  backdrop-filter: blur(14px);
  background-color: rgba(255, 255, 255, 0.82);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 540px;
}

.hero-panel,
.hero-card {
  background-image: var(--texture-url), linear-gradient(160deg, rgba(31, 23, 13, 0.04), transparent);
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(31, 23, 13, 0.08);
  position: relative;
  z-index: 1;
}

.hero-icon {
  --icon-url: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.hero-callout {
  margin-top: 16px;
  padding: 12px;
  border-radius: 14px;
  background: rgba(31, 23, 13, 0.05);
}

.highlight {
  background: var(--accent-soft);
  border-radius: 18px;
  padding: 14px;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 500;
}

.search-form {
  display: grid;
  gap: 14px;
}

.search-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--ring);
  background: #fff;
  font-size: 1rem;
  font-family: inherit;
}

.search-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--ring);
  background: #fff;
  font-size: 1rem;
  font-family: inherit;
}

.search-form--filters {
  gap: 12px;
}

.search-form button,
.contact-form button {
  padding: 14px 20px;
  border-radius: 16px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

.cards-grid {
  display: grid;
  gap: 20px;
}

.cards-grid--list {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.table-shell {
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(15, 18, 22, 0.08);
  box-shadow: var(--shadow-soft);
  overflow-x: auto;
}

.table-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid rgba(15, 18, 22, 0.08);
  background: #fff;
  align-items: center;
  justify-content: space-between;
}

.table-filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  flex: 1 1 640px;
}

.table-filters input,
.table-filters select {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--ring);
  background: #fff;
  font-size: 0.95rem;
  font-family: inherit;
}

.filter-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--muted);
  padding: 6px 8px;
}

.filter-check input {
  width: 16px;
  height: 16px;
}

.table-filters button {
  padding: 10px 16px;
  border-radius: 12px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.table-sorts {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}

.table-sorts a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 18, 22, 0.1);
  color: inherit;
}

.table-sorts a.is-active {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.company-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.company-table th,
.company-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 18, 22, 0.08);
  vertical-align: top;
}

.company-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 2;
  box-shadow: 0 10px 18px rgba(15, 18, 22, 0.08);
}

.company-table tr:hover td {
  background: rgba(31, 23, 13, 0.04);
}

.table-name {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 6px;
}

.table-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.table-nic {
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.table-icon {
  width: 130px;
  text-align: center;
  position: relative;
}

.table-row .table-icon::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 14px;
  bottom: 14px;
  width: 4px;
  border-radius: 999px;
  background: var(--accent);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.table-row:hover .table-icon::before {
  opacity: 1;
  transform: translateX(0);
}

.nic-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
}

.nic-icon {
  width: 120px;
  height: 120px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(15, 18, 22, 0.08);
  box-shadow: 0 8px 18px rgba(15, 18, 22, 0.12);
}

.nic-icon--fallback {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  background: rgba(15, 18, 22, 0.06);
  color: var(--muted);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(15, 18, 22, 0.08);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  color: #223046;
  background: #f2f5fb;
}

.chip--indigo {
  background: rgba(63, 81, 181, 0.1);
  color: #32417f;
  border-color: rgba(63, 81, 181, 0.18);
}

.chip--emerald {
  background: rgba(16, 185, 129, 0.1);
  color: #12684f;
  border-color: rgba(16, 185, 129, 0.18);
}

.chip--amber {
  background: rgba(245, 158, 11, 0.18);
  color: #8a5b00;
  border-color: rgba(245, 158, 11, 0.3);
}

.chip--rose {
  background: rgba(244, 114, 182, 0.18);
  color: #8a2e58;
  border-color: rgba(244, 114, 182, 0.3);
}

.company-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.status-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.1;
  text-transform: uppercase;
  background: #f5f7fb;
  color: #344054;
  border: 1px solid rgba(30, 30, 40, 0.1);
}

.table-row:hover {
  background: rgba(31, 23, 13, 0.03);
}

.table-date {
  white-space: nowrap;
  color: var(--muted);
  font-size: 0.83rem;
}

.table-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  border: 1px solid rgba(15, 18, 22, 0.1);
  color: #1f2a37;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 18, 22, 0.04);
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}

.table-action:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 18, 22, 0.18);
  box-shadow: 0 6px 16px rgba(15, 18, 22, 0.1);
}

.table-action--live {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.18);
  color: #12684f;
}

.dashboard-sites-shell {
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  background: #fff;
}

.dashboard-sites-table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}

.dashboard-sites-cell--site {
  width: 46%;
}

.dashboard-sites-cell--status {
  width: 16%;
}

.dashboard-sites-cell--links {
  width: 25%;
}

.dashboard-sites-cell--updated {
  width: 13%;
}

.dashboard-sites-table th,
.dashboard-sites-table td {
  padding-top: 12px;
  padding-bottom: 12px;
  vertical-align: middle;
}

.dashboard-sites-row td {
  background: #fff;
  border-bottom: 1px solid #edf0f3;
  transition: background-color 0.14s ease, border-color 0.14s ease;
}

.dashboard-sites-row--interactive {
  cursor: pointer;
}

.dashboard-sites-row--interactive:focus {
  outline: none;
}

.dashboard-sites-row--interactive:focus-visible td {
  background: #f8fbff;
  box-shadow: inset 3px 0 0 #2563eb;
}

.dashboard-sites-row td:first-child {
  padding-left: 18px;
}

.dashboard-site-main {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.dashboard-site-logo {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d7dee8;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
  box-shadow: inset 0 0 0 3px #fff, 0 1px 2px rgba(15, 23, 42, 0.08);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.dashboard-site-logo img {
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 50%;
  object-fit: cover;
  background: #f8fafc;
  display: block;
}

.dashboard-site-logo__fallback {
  display: grid;
  place-items: center;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 50%;
  background: #f1f5f9;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  color: #334155;
}

.dashboard-site-name {
  min-width: 0;
}

.dashboard-site-name .table-name {
  display: block;
  max-width: 100%;
  margin-bottom: 4px;
  overflow: hidden;
  color: #111827;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-site-name .table-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 5px;
  margin-top: 0;
  color: #64748b;
  font-size: 0.72rem;
}

.dashboard-site-name .table-meta span:not(.chip) {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
}

.dashboard-chip {
  min-height: 22px;
  padding: 3px 8px;
  border-color: #dbe4f0;
  background: #f8fafc;
  color: #334155;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: none;
}

.dashboard-chip.chip--emerald {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #047857;
}

.dashboard-chip.chip--indigo {
  background: #eef4ff;
  border-color: #c7d7fe;
  color: #1d4ed8;
}

.dashboard-chip--neutral {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #475569;
}

.dashboard-slug-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 22px;
  max-width: 180px;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.dashboard-site-secondary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
  min-width: 0;
}

.dashboard-host-pill,
.dashboard-inline-meta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 18px;
  min-width: 0;
  font-size: 0.68rem;
  font-weight: 600;
  color: #64748b;
}

.dashboard-host-pill {
  max-width: 100%;
  color: #64748b;
  white-space: nowrap;
}

.dashboard-host-pill i,
.dashboard-inline-meta i {
  flex: 0 0 auto;
  color: #98a2b3;
}

.dashboard-host-pill,
.dashboard-slug-pill {
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-site-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.dashboard-sites-row td:last-child {
  white-space: nowrap;
  padding-right: 18px;
}

.dashboard-sites-row:hover td {
  background: #f9fbfd;
  border-bottom-color: #dfe5ee;
}

.dashboard-status-badge {
  gap: 5px;
  min-height: 24px;
  padding: 4px 9px;
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #334155;
  font-size: 0.64rem;
  letter-spacing: 0;
}

.dashboard-status-badge--live {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #047857;
}

.dashboard-status-badge--preview {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.dashboard-status-badge--github {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #475569;
}

.dashboard-link-pill,
.dashboard-updated-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.dashboard-link-pill {
  border-color: #dbe4f0;
  background: #fff;
  color: #334155;
  box-shadow: none;
}

.dashboard-link-pill:hover {
  border-color: #b6c6dd;
  background: #f8fafc;
  box-shadow: none;
}

.dashboard-link-pill--live {
  background: #ecfdf5;
  border-color: #bbf7d0;
  color: #047857;
}

.dashboard-link-pill--repo {
  max-width: 100%;
  color: #475569;
}

.dashboard-updated-pill {
  justify-content: flex-start;
  min-height: 24px;
  padding: 0;
  background: transparent;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 600;
}

.dashboard-sites-cell--updated {
  color: #667085;
}

.dashboard-sites-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding-top: 10px;
}

.dashboard-sites-footer .dashboard-sites-more {
  min-width: 150px;
}

.dashboard-sites-table .chip,
.dashboard-sites-table .status-badge,
.dashboard-sites-table .table-action,
.dashboard-sites-table .dashboard-updated-pill {
  vertical-align: middle;
}

.dashboard-sites-more[disabled] {
  opacity: 0.7;
  cursor: progress;
}

@media (max-width: 900px) {
  .dashboard-sites-shell {
    border-radius: 12px;
  }

  .dashboard-sites-row td:first-child,
  .dashboard-sites-row td:last-child {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 720px) {
  .dashboard-sites-table,
  .dashboard-sites-table thead,
  .dashboard-sites-table tbody,
  .dashboard-sites-table tr,
  .dashboard-sites-table th,
  .dashboard-sites-table td {
    display: block;
    width: 100%;
  }

  .dashboard-sites-table thead {
    display: none;
  }

  .dashboard-sites-row {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
    margin-bottom: 10px;
    overflow: hidden;
  }

  .dashboard-sites-row td {
    border-bottom: 1px solid #edf0f3;
    padding: 12px 14px 12px 96px;
    min-height: 48px;
    position: relative;
    background: #fff;
  }

  .dashboard-sites-row td:last-child {
    border-bottom: none;
    padding-right: 14px;
  }

  .dashboard-sites-row td::before {
    content: attr(data-label);
    position: absolute;
    left: 14px;
    top: 14px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #94a3b8;
  }

  .dashboard-site-name {
    min-width: 0;
  }

  .dashboard-site-main {
    align-items: flex-start;
  }

  .dashboard-site-logo {
    width: 40px;
    height: 40px;
  }

  .dashboard-site-name .table-meta {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
  }

  .dashboard-site-secondary {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .dashboard-site-links {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-site-links .dashboard-link-pill {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .dashboard-sites-cell--updated .dashboard-updated-pill {
    justify-content: flex-start;
  }

  .dashboard-sites-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .dashboard-sites-more {
    width: 100%;
  }
}

.table-demo {
  white-space: nowrap;
}

.company-card {
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(30, 27, 22, 0.08);
  display: grid;
  gap: 14px;
}

.company-card h3 {
  margin: 0 0 8px;
  font-family: var(--heading-font);
}

.card-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-link {
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ghost-link {
  border: 1px solid var(--ring);
  padding: 10px 16px;
  border-radius: 16px;
  color: var(--muted);
  font-weight: 600;
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pill,
.badge {
  background: rgba(31, 23, 13, 0.08);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.badge {
  font-size: 0.75rem;
}

.label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  color: var(--muted);
  margin: 0 0 6px;
}

.stat {
  font-weight: 600;
  font-size: 1.1rem;
}

.card-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  color: var(--muted);
}

.list-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.pager a {
  margin-left: 8px;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid var(--ring);
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.overview-card {
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(31, 23, 13, 0.08);
  box-shadow: var(--shadow);
  min-width: 0;
}

.overview-card h3 {
  margin: 0;
  font-family: var(--heading-font);
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.2;
}

.split-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: center;
  margin: 32px 0;
}

.split-section--story {
  background: linear-gradient(130deg, rgba(31, 23, 13, 0.03), transparent);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(31, 23, 13, 0.06);
}

.map-card {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(31, 23, 13, 0.08);
  min-height: 260px;
}

.map-card iframe {
  width: 100%;
  height: 260px;
  border: none;
}

.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--muted);
}

.section-block {
  margin: 40px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.story-card {
  background: linear-gradient(130deg, rgba(31, 23, 13, 0.04), transparent);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(31, 23, 13, 0.08);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.value-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.value-grid--compact .value-card {
  padding: 14px;
}

.value-grid--compact .value-card h4 {
  font-size: 0.95rem;
}

.value-card {
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(31, 23, 13, 0.08);
  box-shadow: var(--shadow);
}

.capability-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.capability-list li {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(31, 23, 13, 0.08);
  background: rgba(31, 23, 13, 0.03);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.proof-card {
  background: linear-gradient(160deg, rgba(31, 23, 13, 0.04), transparent);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(31, 23, 13, 0.08);
}

.leadership-card {
  background: var(--card);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(31, 23, 13, 0.08);
  box-shadow: var(--shadow);
}

.leadership-copy {
  max-width: none;
}

.director-grid,
.location-grid,
.connected-grid {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.director-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.location-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.connected-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.director-card,
.location-card,
.connected-card,
.contact-card,
.contact-benefits {
  background: var(--card);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(31, 23, 13, 0.08);
  box-shadow: var(--shadow);
}

.director-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.muted {
  color: var(--muted);
  margin: 4px 0 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.connected-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.connected-meta {
  display: grid;
  gap: 6px;
  align-items: start;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  margin-top: 40px;
}

.contact-card {
  display: grid;
  gap: 16px;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-benefits ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
  padding: 24px 0 0;
  border-top: 1px solid rgba(31, 23, 13, 0.08);
  color: var(--muted);
  flex-wrap: wrap;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.preview-no-animations [data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: none;
}

.preview-no-animations [data-parallax] {
  transform: translateY(0) !important;
}

@media (max-width: 1024px) {

  .hero--dashboard,
  .hero--company {
    grid-template-columns: 1fr;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 20px 20px 64px;
  }

  .hero {
    padding: 28px;
  }

  .card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero--cover {
    min-height: 80vh;
    padding-top: 72px;
  }
}

body.company-page {
  background: #f5f6f8;
}

body.company-page .noise-layer {
  opacity: 0.22;
}

.page-shell {
  display: flex;
  flex-direction: column;
}

.hero-immersive {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 80px;
  color: #f8f9fb;
  overflow: hidden;
}

.hero-immersive--panel,
.hero-immersive--story {
  min-height: 88vh;
  padding: 110px 0 72px;
}

.hero-media {
  position: absolute;
  inset: -14%;
  background: #0b0f17;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
  transform: translateY(0);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(5, 8, 14, 0.15) 0%,
      rgba(5, 8, 14, 0.55) 55%,
      rgba(5, 8, 14, 0.82) 100%);
}

.hero-overlay--soft {
  background: linear-gradient(180deg,
      rgba(5, 8, 14, 0.08) 0%,
      rgba(5, 8, 14, 0.35) 55%,
      rgba(5, 8, 14, 0.65) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  gap: 28px;
}

.hero-immersive-copy {
  max-width: 620px;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-immersive .hero-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-immersive .hero-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background-image: var(--icon-url), linear-gradient(140deg, var(--accent), var(--accent-2));
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.hero-immersive .hero-name {
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  font-size: clamp(2.6rem, 5vw, 5rem);
  color: rgba(255, 255, 255, 0.95);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-badges .badge {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  align-items: end;
}

.hero-copy {
  max-width: 640px;
}

.hero-headline {
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1.02;
  margin: 0 0 14px;
}

.hero-subhead {
  margin: 0;
  color: white;
  font-size: 1.1rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-immersive .primary-link {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-immersive .ghost-link {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-panel--feature {
  background-color: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  background-image: var(--texture-url), linear-gradient(160deg, rgba(15, 18, 22, 0.06), transparent);
  background-size: cover;
  align-self: center;
}

.hero-panel--feature h3 {
  margin: 8px 0;
  font-family: var(--heading-font);
}

.hero-panel--feature .muted {
  color: #5d6773;
}

.hero-panel--feature .hero-metrics {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.hero-panel--feature .hero-metrics .metric {
  border-top: 1px solid rgba(15, 18, 22, 0.1);
  padding-top: 12px;
}

.hero-panel--feature .hero-highlight {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.hero-immersive .hero-panel--feature {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  color: white
}

.hero-immersive .hero-panel--feature .muted {
  color: white
}

.hero-immersive .hero-panel--feature .sub {
  color: white
}

.hero-immersive .hero-panel--feature .metric {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white
}

.hero-immersive .hero-panel-metrics .label {
  color: white
}

.hero-immersive .hero-panel--feature .hero-panel-highlight {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero-immersive .hero-panel-line {
  color: white;
}

.hero-immersive .eyebrow {
  color: white;
}

.hero-immersive .sub {
  color: white;
}

.hero-immersive .muted {
  color: white;
}

.section {
  padding: 80px 0;
}

.section--hero-panel {
  padding-top: 56px;
  padding-bottom: 56px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero-panel-copy {
  display: grid;
  gap: 20px;
  align-content: center;
}

.hero-panel-lead {
  max-width: 760px;
}

.hero-panel-highlight {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}

.hero-panel-metrics {
  display: grid;
  gap: 8px;
  max-width: 560px;
}

.hero-panel-line {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(15, 18, 22, 0.78);
}

.section-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.section--nic {
  background: linear-gradient(150deg, rgba(15, 18, 22, 0.03), transparent);
}

.nic-template {
  display: grid;
  gap: 24px;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.tile-card {
  background: var(--card);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(15, 18, 22, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 8px;
  min-width: 0;
}

.tile-card-media {
  position: relative;
  display: block;
  line-height: 0;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 18, 22, 0.1);
  background: rgba(7, 10, 16, 0.42);
}

.tile-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tile-card-media-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid rgba(148, 163, 184, 0.42);
  border-radius: 999px;
  background: rgba(2, 8, 20, 0.76);
  color: #f8fafc;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(2, 8, 20, 0.22);
}

.tile-card h3,
.tile-card h4 {
  margin: 0;
  font-family: var(--heading-font);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tile-meta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.tile-role {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.tile-points {
  margin: 2px 0 0;
  padding-left: 1rem;
  display: grid;
  gap: 4px;
  color: var(--text);
  font-size: 0.9rem;
  list-style-position: outside;
}

.tile-points li {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.tile-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tile-card-header i {
  color: var(--accent);
  font-size: 1rem;
}

.rich-block-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
}

.rich-block-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 18, 22, 0.18);
}

.finance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.data-card,
.chart-card {
  background: var(--card);
  border-radius: 24px;
  padding: 20px;
  border: 1px solid rgba(15, 18, 22, 0.08);
  box-shadow: var(--shadow-soft);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
}

.metric-card {
  background: rgba(15, 18, 22, 0.04);
  border-radius: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 18, 22, 0.08);
  display: grid;
  gap: 6px;
  min-width: 0;
}

.metric-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.metric-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.data-card h3 i,
.chart-card h3 i {
  margin-right: 8px;
  color: var(--accent);
}

.chart-bars {
  display: grid;
  gap: 12px;
}

.chart-row {
  display: grid;
  grid-template-columns: 160px 1fr 60px;
  gap: 12px;
  align-items: center;
}

.chart-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 18, 22, 0.08);
  overflow: hidden;
}

.chart-fill {
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  border-radius: 999px;
}

.chart-value {
  font-weight: 600;
  color: var(--ink);
}

.chart-card .chart-label {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .chart-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.rich-block {
  display: grid;
  gap: 16px;
}

.rich-block+.rich-block {
  margin-top: 28px;
}

.rich-block-header h3 {
  margin: 0;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.fact-card {
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(15, 18, 22, 0.08);
  box-shadow: var(--shadow);
  min-width: 0;
}

.fact-card h3 {
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  line-height: 1.2;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
}

.split-grid--media {
  align-items: stretch;
}

.address-card {
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(15, 18, 22, 0.08);
  box-shadow: var(--shadow-soft);
}

.map-shell {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(15, 18, 22, 0.16);
  min-height: 320px;
  background: #0f1420;
  box-shadow: var(--shadow-soft);
}

.map-shell iframe {
  width: 100%;
  height: 320px;
  border: 0;
  filter: grayscale(1) invert(0.92) hue-rotate(180deg) brightness(0.9) contrast(1.1);
}

.map-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  background: linear-gradient(140deg, rgba(15, 20, 32, 0.18), transparent 55%);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 12px;
}

.text-link--inline {
  display: inline;
  margin-top: 0;
}

.section--story .story-copy {
  max-width: 520px;
}

.story-copy--light {
  color: white
}

.story-copy--light .muted {
  color: white;
}

.story-copy--light .sub {
  color: white;
}

.story-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: white;
  display: grid;
  gap: 8px;
}

.story-list li {
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.hero-immersive .story-copy h2,
.hero-immersive .hero-panel--feature h2 {
  font-size: clamp(2.8rem, 5.4vw, 4.8rem);
  line-height: 1.04;
}

.hero-immersive .story-copy .sub,
.hero-immersive .hero-panel--feature .sub {
  font-size: 1.25rem;
}

.hero-immersive .story-copy .muted,
.hero-immersive .hero-panel--feature .muted {
  font-size: 1.1rem;
}

.media-card {
  position: relative;
  min-height: 340px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-card--immersive {
  position: absolute;
  inset: 0;
  min-height: 100%;
  border-radius: 0;
  box-shadow: none;
  z-index: 0;
}

.media-card--immersive .media-tag {
  display: none;
}

.media-card--immersive .media-image {
  inset: 0;
  background-size: cover;
}

.media-image {
  position: absolute;
  inset: -12%;
  background-image: var(--media-image);
  background-size: cover;
  background-position: center;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(12, 14, 18, 0.25), rgba(12, 14, 18, 0.7));
}

.media-tag {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: #1b2028;
  font-weight: 600;
  font-size: 0.85rem;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.value-card {
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(15, 18, 22, 0.08);
  box-shadow: var(--shadow-soft);
}

.value-card--icon {
  display: grid;
  gap: 14px;
}

.icon-badge--soft {
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent);
  box-shadow: 0 10px 20px rgba(15, 18, 22, 0.12);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.capability-card {
  background: var(--card);
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(15, 18, 22, 0.08);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.capability-card i {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(199, 75, 44, 0.14);
  color: var(--accent);
  font-size: 1rem;
}

.capability-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.capability-list li {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15, 18, 22, 0.08);
  background: rgba(15, 18, 22, 0.03);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.proof-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(15, 18, 22, 0.08);
  box-shadow: var(--shadow-soft);
  min-width: 0;
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.leadership-card {
  background: var(--card);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(15, 18, 22, 0.08);
  box-shadow: var(--shadow-soft);
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.person-card {
  background: var(--card);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(15, 18, 22, 0.08);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
}

.person-avatar {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(140deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.person-body h3 {
  margin: 0 0 6px;
}

.location-grid,
.connected-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.location-card,
.connected-card {
  background: var(--card);
  border-radius: 20px;
  padding: 18px;
  border: 1px solid rgba(15, 18, 22, 0.08);
  box-shadow: var(--shadow-soft);
}

.connected-card {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.section--contact {
  background: linear-gradient(150deg, rgba(15, 18, 22, 0.03), transparent);
}

.contact-card {
  background: var(--card);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(15, 18, 22, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.contact-panel {
  background: linear-gradient(150deg, rgba(15, 18, 22, 0.04), transparent);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(15, 18, 22, 0.08);
  box-shadow: var(--shadow-soft);
}

.contact-panel ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.footer--company {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 20px;
}

.footer-item {
  display: grid;
  gap: 6px;
  font-size: 0.92rem;
}

.footer-item--wide {
  grid-column: 1 / -1;
}

.footer-line {
  margin: 0;
}

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

  .hero-immersive {
    padding: 96px 0 64px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {

  .hero-inner,
  .section-inner {
    padding: 0 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-immersive {
    min-height: 90vh;
    padding: 88px 0 56px;
  }

  .hero-immersive .hero-name {
    font-size: clamp(2.1rem, 9vw, 3.4rem);
  }

  .section {
    padding: 64px 0;
  }

  .hero-panel-copy {
    gap: 16px;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer--company {
    padding: 20px;
  }
}

.preview-no-animations [data-az-field],
.preview-no-animations [data-az-section],
.preview-no-animations [data-az-company],
.preview-no-animations [data-az-hero],
.preview-no-animations [data-az-detail],
.preview-no-animations [data-az-panel],
.preview-no-animations [data-az-icon],
.preview-no-animations [data-az-hero-bg] {
  cursor: pointer;
}


.preview-highlight {
  outline: 2px solid rgba(99, 102, 241, 0.8);
  outline-offset: 3px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.35);
}

.hero-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-left: auto;
}

.hero-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.section--reviews .section-title {
  margin-bottom: 16px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.review-card {
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(31, 23, 13, 0.08);
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(77, 241, 255, 0.18), rgba(124, 92, 255, 0.18));
  color: var(--text);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.review-avatar--image {
  display: block;
  object-fit: cover;
  border: 1px solid rgba(31, 23, 13, 0.12);
}

.review-meta {
  display: grid;
  gap: 2px;
}

.review-name {
  font-weight: 600;
}

.review-role {
  font-size: 0.85rem;
  color: var(--muted);
}

.review-rating {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.review-quote {
  margin: 0;
  color: var(--text);
}

/* --- Azonova animations --- */
.az-bg-anim {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: var(--az-bg-opacity, 0.5);
  overflow: hidden;
}

.az-anim-off .az-bg-anim,
.az-anim-off .hero-anim-layer {
  display: none !important;
  opacity: 0 !important;
}

.az-bg-anim--mesh::before {
  content: "";
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 20% 20%, rgba(124, 92, 255, 0.48), transparent 55%),
    radial-gradient(circle at 70% 30%, rgba(77, 241, 255, 0.38), transparent 50%),
    radial-gradient(circle at 40% 70%, rgba(255, 184, 77, 0.32), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(96, 221, 167, 0.28), transparent 55%);
  filter: blur(10px);
  animation: az-mesh-shift 24s linear infinite;
}

.az-bg-anim--noise::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.az-bg-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-anim-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: var(--az-hero-intensity, 0.9);
  background: radial-gradient(circle at 20% 20%, rgba(124, 92, 255, 0.45), transparent 45%),
    radial-gradient(circle at 80% 30%, rgba(77, 241, 255, 0.35), transparent 50%),
    radial-gradient(circle at 50% 70%, rgba(255, 184, 77, 0.28), transparent 55%);
  filter: blur(10px);
  animation: az-hero-glow calc(10s / var(--az-hero-speed, 0.7)) ease-in-out infinite alternate;
}

.hero-anim--mesh .hero-anim-layer {
  background: radial-gradient(circle at 10% 40%, rgba(124, 92, 255, 0.22), transparent 50%),
    radial-gradient(circle at 70% 20%, rgba(77, 241, 255, 0.18), transparent 55%),
    radial-gradient(circle at 60% 80%, rgba(96, 221, 167, 0.16), transparent 60%);
}

.hero-anim--reveal .hero-headline,
.hero-anim--reveal .hero-subhead {
  animation: az-hero-text 0.9s ease both;
}

.hero-anim--reveal .hero-subhead {
  animation-delay: 0.12s;
}

@keyframes az-hero-glow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-2%, 1%, 0) scale(1.05);
  }
}

@keyframes az-hero-text {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes az-mesh-shift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-4%, 2%, 0) scale(1.03);
  }
  100% {
    transform: translate3d(3%, -3%, 0) scale(1.05);
  }
}

/* --- Azonova animation color overrides & extra styles --- */
.az-bg-anim--mesh::before {
  background:
    radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--az-bg-c1, #7c5cff) 70%, transparent), transparent 55%),
    radial-gradient(circle at 70% 30%, color-mix(in srgb, var(--az-bg-c2, #4df1ff) 70%, transparent), transparent 50%),
    radial-gradient(circle at 40% 70%, color-mix(in srgb, var(--az-bg-c3, #ffb84d) 65%, transparent), transparent 55%),
    radial-gradient(circle at 80% 80%, color-mix(in srgb, var(--az-bg-c4, #60dda7) 60%, transparent), transparent 55%);
}

.az-bg-anim--aurora::before {
  content: "";
  position: absolute;
  inset: -35% 0 0;
  background: radial-gradient(120% 80% at 20% 30%, color-mix(in srgb, var(--az-bg-c1, #7c5cff) 50%, transparent), transparent 60%),
    radial-gradient(120% 80% at 80% 20%, color-mix(in srgb, var(--az-bg-c2, #4df1ff) 50%, transparent), transparent 60%),
    radial-gradient(120% 80% at 50% 70%, color-mix(in srgb, var(--az-bg-c3, #ffb84d) 45%, transparent), transparent 60%);
  filter: blur(20px);
  opacity: 0.7;
  animation: az-mesh-shift 18s ease-in-out infinite alternate;
}

.az-bg-anim--grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 0 96%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(90deg, transparent 0 96%, rgba(255, 255, 255, 0.06) 100%);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 1), transparent 70%);
  opacity: 0.4;
}

.hero-anim-layer {
  background: radial-gradient(circle at 20% 20%, color-mix(in srgb, var(--az-hero-c1, #7c5cff) 55%, transparent), transparent 45%),
    radial-gradient(circle at 80% 30%, color-mix(in srgb, var(--az-hero-c2, #4df1ff) 45%, transparent), transparent 50%),
    radial-gradient(circle at 50% 70%, color-mix(in srgb, var(--az-hero-c3, #ffb84d) 40%, transparent), transparent 55%);
}

.hero-anim--mesh .hero-anim-layer {
  background: radial-gradient(circle at 10% 40%, color-mix(in srgb, var(--az-hero-c1, #7c5cff) 45%, transparent), transparent 50%),
    radial-gradient(circle at 70% 20%, color-mix(in srgb, var(--az-hero-c2, #4df1ff) 40%, transparent), transparent 55%),
    radial-gradient(circle at 60% 80%, color-mix(in srgb, var(--az-hero-c3, #ffb84d) 35%, transparent), transparent 60%);
}

.az-bg-anim--gradient::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: linear-gradient(120deg,
      color-mix(in srgb, var(--az-bg-c1, #7c5cff) 75%, transparent),
      color-mix(in srgb, var(--az-bg-c2, #4df1ff) 70%, transparent),
      color-mix(in srgb, var(--az-bg-c3, #ffb84d) 60%, transparent),
      color-mix(in srgb, var(--az-bg-c4, #60dda7) 60%, transparent));
  background-size: 300% 300%;
  animation: az-gradient-shift calc(18s / var(--az-bg-speed, 1)) ease infinite;
  opacity: 0.85;
}

.az-bg-anim--waves::before {
  content: "";
  position: absolute;
  inset: -30% 0 0;
  background: radial-gradient(60% 40% at 20% 20%, color-mix(in srgb, var(--az-bg-c1, #7c5cff) 55%, transparent), transparent 70%),
    radial-gradient(60% 40% at 80% 40%, color-mix(in srgb, var(--az-bg-c2, #4df1ff) 45%, transparent), transparent 70%),
    radial-gradient(60% 40% at 50% 80%, color-mix(in srgb, var(--az-bg-c3, #ffb84d) 40%, transparent), transparent 70%);
  filter: blur(16px);
  animation: az-wave-float calc(14s / var(--az-bg-speed, 1)) ease-in-out infinite alternate;
}

.az-bg-anim--stripes::before {
  content: "";
  position: absolute;
  inset: -40% 0 0;
  background-image: repeating-linear-gradient(
    135deg,
    color-mix(in srgb, var(--az-bg-c1, #7c5cff) 35%, transparent) 0,
    color-mix(in srgb, var(--az-bg-c1, #7c5cff) 35%, transparent) 12px,
    transparent 12px,
    transparent 28px
  );
  animation: az-stripes calc(12s / var(--az-bg-speed, 1)) linear infinite;
  opacity: 0.5;
}

.az-bg-anim--stars::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.6) 1px, transparent 2px),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.4) 1px, transparent 2px),
    radial-gradient(circle at 40% 80%, rgba(255,255,255,0.5) 1px, transparent 2px);
  background-size: 120px 120px;
  animation: az-twinkle calc(6s / var(--az-bg-speed, 1)) ease-in-out infinite;
  opacity: 0.6;
}

@keyframes az-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes az-wave-float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-4%) scale(1.04); }
}

@keyframes az-stripes {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-12%, -12%, 0); }
}

@keyframes az-twinkle {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 0.8; }
}

.az-bg-anim--grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 0 95%, rgba(255, 255, 255, 0.08) 100%),
    linear-gradient(90deg, transparent 0 95%, rgba(255, 255, 255, 0.08) 100%);
  background-size: 80px 80px;
  opacity: 0.5;
}

.az-bg-anim--noise::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.az-bg-anim--stripes::before {
  background-image: repeating-linear-gradient(
    135deg,
    color-mix(in srgb, var(--az-bg-c1, #7c5cff) 45%, transparent) 0,
    color-mix(in srgb, var(--az-bg-c1, #7c5cff) 45%, transparent) 18px,
    transparent 18px,
    transparent 42px
  );
  animation: az-stripes calc(10s / var(--az-bg-speed, 1)) linear infinite;
}

.az-bg-anim--cyber::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(transparent 0 98%, rgba(77, 241, 255, 0.18) 100%),
    linear-gradient(90deg, transparent 0 98%, rgba(124, 92, 255, 0.18) 100%);
  background-size: 90px 90px;
  opacity: 0.45;
  animation: az-grid-float calc(12s / var(--az-bg-speed, 1)) ease-in-out infinite alternate;
}

@keyframes az-grid-float {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-2%, 2%, 0); }
}

.hero-anim--reveal.fade .hero-headline,
.hero-anim--reveal.fade .hero-subhead {
  animation: az-hero-fade 0.9s ease both;
}

.hero-anim--reveal.slide .hero-headline,
.hero-anim--reveal.slide .hero-subhead {
  animation: az-hero-slide 0.9s ease both;
}

.hero-anim--reveal.blur .hero-headline,
.hero-anim--reveal.blur .hero-subhead {
  animation: az-hero-blur 1s ease both;
}

@keyframes az-hero-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes az-hero-slide {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes az-hero-blur {
  from { opacity: 0; filter: blur(8px); transform: translateY(10px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}
