/* Dragonflyt — Infrastructure Intelligence */

:root {
  --bg: #071018;
  --bg-header: #050b11;
  --card: #101a24;
  --card-hover: #152230;
  --text: #f5f7fa;
  --text-secondary: #8b98a8;
  --text-muted: #6d7a88;
  --accent-blue: #24a7ff;
  --accent-deep: #146c94;
  --accent-cyan: #47d7ff;
  --btn-primary-start: #146c94;
  --btn-primary-end: #24a7ff;
  --header-cta-bg: #0e2230;
  --border: rgba(169, 180, 190, 0.1);
  --border-accent: rgba(36, 167, 255, 0.28);
  --overlay: rgba(7, 16, 24, 0.78);
  --overlay-heavy: rgba(5, 10, 16, 0.88);
  --max-width: 1200px;
  --section-pad: clamp(3.5rem, 7vw, 6rem);
  --radius: 8px;
  --radius-sm: 6px;
  --header-h: 3rem;
  --font: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--accent-blue);
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.03em;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

/* Header — industrial command bar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  overflow: visible;
  background: rgba(5, 11, 17, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-accent);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.site-header .header-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.4rem 0 0.15rem;
}

.logo-link {
  position: relative;
  z-index: 110;
  display: flex;
  align-items: flex-end;
  flex-shrink: 0;
  margin-bottom: -1.05rem;
  transform-origin: left bottom;
  transition: transform 0.22s ease;
}

.logo-link:hover {
  transform: scale(1.05);
}

.logo-link img {
  display: block;
  height: clamp(3.5rem, 7.25vw, 5rem);
  width: auto;
  max-width: min(440px, 82vw);
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.55))
    drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 2.25rem;
  height: 2.25rem;
  align-self: center;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.site-nav a {
  display: block;
  padding: 0.65rem 1rem;
  color: var(--text-secondary);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
}

.nav-cta {
  margin-top: 0.5rem;
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }

  .site-header .header-bar {
    align-items: center;
  }

  .logo-link {
    align-self: flex-end;
    margin-bottom: -1.4rem;
  }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }

  .site-nav a {
    padding: 0.35rem 0.5rem;
    font-size: 0.75rem;
  }

  .nav-cta {
    margin-top: 0;
    margin-left: 1rem;
  }

  .nav-cta .btn-nav-utility {
    margin-bottom: 0.1rem;
  }
}

@media (max-width: 899px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 16, 24, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1rem 1.25rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }
}

/* Buttons — industrial control panels */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1px solid rgba(36, 167, 255, 0.32);
  background: #0c1822;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  text-decoration: none;
  box-shadow: none;
}

.btn:hover {
  background: #142a38;
  border-color: rgba(36, 167, 255, 0.55);
  color: var(--text);
}

.btn-primary {
  background: #0e2230;
  border-color: rgba(36, 167, 255, 0.4);
}

.btn-primary:hover {
  background: #152d3f;
  border-color: var(--accent-blue);
}

.btn-hero {
  padding: 0.6rem 1.15rem;
  font-size: 0.8125rem;
  letter-spacing: 0.09em;
}

.btn-nav-utility {
  padding: 0.3rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  background: transparent;
  border-color: rgba(36, 167, 255, 0.22);
  color: var(--text-muted);
}

.btn-nav-utility:hover {
  background: rgba(14, 34, 48, 0.6);
  border-color: rgba(36, 167, 255, 0.38);
  color: var(--text-secondary);
}

.text-action {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.text-action:hover {
  color: var(--text);
  border-bottom-color: rgba(36, 167, 255, 0.45);
}

/* Hero — operational, field-tested */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: min(92vh, 920px);
  padding: calc(var(--header-h) + 3.5rem) 0 0;
  overflow: hidden;
  background: var(--bg);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(5, 10, 16, 0.82) 0%, rgba(7, 16, 24, 0.75) 45%, rgba(7, 16, 24, 0.55) 100%),
    linear-gradient(180deg, rgba(5, 10, 16, 0.55) 0%, rgba(7, 16, 24, 0.35) 50%, rgba(7, 16, 24, 0.9) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(36, 167, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 167, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 0%, #000 55%, transparent 95%);
}

.hero-radial {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 80px,
    rgba(36, 167, 255, 0.015) 80px,
    rgba(36, 167, 255, 0.015) 81px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 45rem;
  padding-bottom: 2rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.35rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-blue);
}

.hero-eyebrow-mark {
  flex-shrink: 0;
  width: 2rem;
  height: 1px;
  background: var(--accent-blue);
}

.hero h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 6.2vw, 5.25rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text);
  text-wrap: balance;
}

.hero-lead {
  margin: 0 0 2.5rem;
  font-size: clamp(1.0625rem, 1.65vw, 1.1875rem);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 34rem;
}

.hero-cta-block {
  max-width: 36rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-trust li {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero-trust li + li {
  padding-left: 0.85rem;
  margin-left: 0.85rem;
  border-left: 1px solid rgba(36, 167, 255, 0.2);
}

.hero-spec-bar {
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: auto;
  background: rgba(8, 14, 20, 0.92);
  border-top: 1px solid var(--border-accent);
  backdrop-filter: blur(6px);
}

.hero-spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .hero-spec-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hero-spec-list li {
  padding: 0.9rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-right: 1px solid var(--border);
}

.hero-spec-list li:last-child {
  border-right: none;
}

@media (max-width: 767px) {
  .hero-spec-list li:nth-child(2n) {
    border-right: none;
  }

  .hero-spec-list li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 640px) {
  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .hero-trust li + li {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-link:hover {
    transform: none;
  }
}

/* Sections */
.section {
  padding: var(--section-pad) 0;
}

#solutions.section {
  padding-top: clamp(2.75rem, 5vw, 3.75rem);
}

.section-header {
  max-width: 40rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-header.centered {
  margin-inline: auto;
  text-align: center;
}

.section-eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
}

.section h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-intro {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 40rem;
}

/* Cards grid */
.card-grid {
  display: grid;
  gap: 1.25rem;
}

.card-grid--4 {
  grid-template-columns: 1fr;
}

.card-grid--3 {
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 1024px) {
  .card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }

  #why .card-grid--4 {
    grid-template-columns: repeat(5, 1fr);
  }

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

.intel-card,
.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.75rem 1.5rem;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.intel-card--visual {
  padding: 0;
  overflow: hidden;
}

.intel-card-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

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

.intel-card-body {
  padding: 1.25rem 1.25rem 1.5rem;
}

.intel-card:hover,
.why-card:hover {
  background: var(--card-hover);
  border-color: rgba(36, 167, 255, 0.25);
}

.intel-card--visual:hover {
  background: var(--card);
}

.intel-card--visual:hover .intel-card-body {
  background: var(--card-hover);
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  color: var(--accent-blue);
}

.intel-card h3,
.why-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.intel-card-body h3 {
  margin: 0 0 0.5rem;
}

.intel-card p,
.why-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Capabilities */
.capabilities-section {
  background: rgba(16, 26, 36, 0.35);
  border-block: 1px solid var(--border);
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 640px) {
  .capability-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .capability-list {
    grid-template-columns: repeat(5, 1fr);
  }
}

.capability-list li {
  padding: 0.85rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  line-height: 1.35;
}

/* Service areas */
.service-areas-section {
  background: rgba(16, 26, 36, 0.35);
  border-block: 1px solid var(--border);
}

.deployment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

@media (min-width: 768px) {
  .deployment-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.deployment-grid li {
  padding: 1.15rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--card);
}

/* Industries */
.industries-section {
  background: linear-gradient(180deg, transparent, rgba(16, 26, 36, 0.4) 50%, transparent);
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .industry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.industry-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 120px;
  padding: 1.5rem 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-align: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.industry-tile:hover {
  background: var(--card-hover);
  border-color: rgba(71, 215, 255, 0.2);
}

.industry-tile svg {
  width: 28px;
  height: 28px;
  color: var(--accent-blue);
}

.industry-tile span {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

/* Deliverables — report previews */
.deliverable-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .deliverable-preview-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.deliverable-preview {
  margin: 0;
}

.deliverable-preview-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a1219;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.deliverable-preview-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.25rem;
  background: rgba(14, 34, 48, 0.95);
  border-bottom: 1px solid var(--border);
  z-index: 1;
}

.deliverable-preview-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deliverable-preview-tag {
  position: absolute;
  top: 0.35rem;
  left: 0.5rem;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.deliverable-preview h3 {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Intelligence In Practice */
.proof-practice {
  background: var(--bg);
  border-block: 1px solid var(--border);
}

.showcase-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.showcase-panel {
  display: grid;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

@media (min-width: 900px) {
  .showcase-panel {
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
  }
}

.showcase-panel-media {
  min-height: 220px;
  overflow: hidden;
}

@media (min-width: 900px) {
  .showcase-panel-media {
    min-height: 280px;
  }
}

.showcase-panel-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.showcase-panel-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.75rem;
}

.showcase-panel-copy h3 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.showcase-panel-copy p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.showcase-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-blue);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
  align-self: flex-start;
}

.showcase-link:hover {
  color: var(--text);
  border-bottom-color: rgba(36, 167, 255, 0.4);
}

.proof-caption,
.proof-disclaimer {
  margin: 1.25rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.proof-disclaimer {
  margin-top: 0.5rem;
  text-align: center;
}

/* Project proof stats */
.project-proof {
  background: rgba(16, 26, 36, 0.35);
  border-top: 1px solid var(--border);
}

.stat-card-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .stat-card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat-card {
  padding: 1.5rem 1.35rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.stat-card-label {
  margin: 0 0 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-blue);
}

.stat-card-value {
  margin: 0 0 0.35rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
}

.stat-card-detail {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Process */
.process-steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  position: relative;
  padding: 1.75rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  border-top: 2px solid var(--accent-blue);
}

.process-step-num {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent-cyan);
}

.process-step h3 {
  margin: 0 0 0.6rem;
  font-size: 1.0625rem;
  font-weight: 600;
}

.process-step p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Contact */
.cta-section {
  position: relative;
  overflow: hidden;
}

.contact-panel {
  position: relative;
  display: grid;
  gap: 2.5rem;
  padding: clamp(2.5rem, 5vw, 3.5rem);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
}

@media (min-width: 768px) {
  .contact-panel {
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.contact-panel::before {
  content: none;
}

.contact-intro,
.contact-details {
  position: relative;
  z-index: 1;
}

.contact-intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
}

.contact-intro p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.contact-details {
  padding: 1.75rem;
  background: rgba(7, 16, 24, 0.5);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.contact-label {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-blue);
}

.contact-name {
  margin: 0 0 1rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.contact-methods {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}

.contact-methods li + li {
  margin-top: 0.35rem;
}

.contact-methods a {
  font-size: 1.0625rem;
  font-weight: 500;
}

.contact-action {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.contact-action a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.contact-action a:hover {
  color: var(--text);
  border-bottom-color: rgba(36, 167, 255, 0.4);
}

/* Footer */
.site-footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  gap: 2rem 2.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}

.footer-brand img {
  height: clamp(2rem, 3.5vw, 2.35rem);
  width: auto;
  max-width: 200px;
}

.footer-tagline {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.footer-region {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: var(--accent-blue);
}

.footer-nav-title {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav a,
.footer-contact a {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--accent-cyan);
}

.footer-social-text {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-social-text a {
  color: var(--accent-cyan);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  opacity: 0.8;
}

/* Placeholder pages */
.page-main {
  padding: calc(5rem + 3rem) 0 4rem;
  min-height: 60vh;
}

.page-main h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.page-main p {
  color: var(--text-secondary);
  max-width: 32rem;
}

.page-main .text-action {
  margin-top: 1.5rem;
}
