@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 {
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(15, 18, 22, 0.1);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1b1d26;
  background: #eef0f7;
}

.chip--indigo {
  background: rgba(63, 81, 181, 0.16);
  color: #2f3a7a;
  border-color: rgba(63, 81, 181, 0.3);
}

.chip--emerald {
  background: rgba(16, 185, 129, 0.16);
  color: #0f6a4f;
  border-color: rgba(16, 185, 129, 0.3);
}

.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;
  margin-top: 6px;
}

.status-badge {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(30, 30, 40, 0.08);
  color: #2e3038;
  border: 1px solid rgba(30, 30, 40, 0.16);
}

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

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

.table-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(15, 18, 22, 0.14);
  color: #1b1d26;
  background: rgba(255, 255, 255, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.table-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(15, 18, 22, 0.15);
}

.table-action--live {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.25);
  color: #0f6a4f;
}

.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: linear-gradient(140deg, rgba(31, 23, 13, 0.03), transparent);
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(31, 23, 13, 0.08);
}

.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,
.hero-immersive--signature {
  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;
}

.tile-card h3,
.tile-card h4 {
  margin: 0;
  font-family: var(--heading-font);
}

.tile-meta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.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;
}

.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);
}

.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;
}

.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;
}

.signature {
  position: relative;
  border-radius: 32px;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #f5f6f8;
}

.signature-image {
  position: absolute;
  inset: -14%;
  background-image: var(--signature-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.04);
  opacity: 0.72;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.signature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.08) 0%, rgba(10, 12, 18, 0.48) 100%);
}

.signature-content {
  position: relative;
  z-index: 1;
  color: rgba(244, 247, 250, 0.92);
  padding: 32px;
  max-width: 540px;
}

.signature-content .eyebrow {
  color: rgba(244, 247, 250, 0.7);
}

.signature-content .sub {
  color: rgba(244, 247, 250, 0.78);
}

.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);
}

.leadership-card {
  background: linear-gradient(140deg, rgba(15, 18, 22, 0.04), transparent);
  border-radius: 24px;
  padding: 28px;
  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;
  }

  .signature {
    min-height: 320px;
  }

  .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] {
  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;
}
