/* ========================================
   CYINCORE
   Elite. Discreet. Decisive.
   ======================================== */

:root {
  /* Dark cool palette */
  --bg-deep: #0d1117;
  --bg-primary: #161b22;
  --bg-elevated: #1c2128;
  --bg-surface: #242a33;

  /* Text */
  --text-primary: #f0f3f6;
  --text-secondary: #8b949e;
  --text-muted: #6e7681;

  /* Accents */
  --accent-blue: #58a6ff;
  --accent-red: #a63d3d;
  --accent-red-hover: #c45050;
  --accent-red-dark: #7a2d2d;
  --accent-silver: rgba(240, 243, 246, 0.5);

  /* Borders */
  --border-subtle: rgba(240, 243, 246, 0.08);
  --border-default: rgba(240, 243, 246, 0.12);

  /* Typography */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --section-padding: clamp(80px, 12vh, 160px);
  --container-width: 1280px;
  --container-padding: clamp(24px, 5vw, 64px);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

.container--narrow {
  max-width: 900px;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s ease;
}

.nav--scrolled {
  background: rgba(13, 17, 23, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo img {
  height: 72px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav__link {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color var(--transition-base);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text-primary);
  transition: width var(--transition-base);
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__link:hover::after {
  width: 100%;
}

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

.nav__link--active::after {
  width: 100%;
}

.nav__link--red {
  color: var(--accent-red);
}

.nav__link--red::after {
  background: var(--accent-red);
}

.nav__link--red:hover {
  color: var(--accent-red-hover);
}

.nav__link--red:hover::after {
  background: var(--accent-red-hover);
}

.nav__emergency {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-red);
  border: 1px solid var(--accent-red);
  background: transparent;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.nav__emergency::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-red);
  transition: left var(--transition-base);
  z-index: -1;
}

.nav__emergency:hover {
  color: var(--text-primary);
}

.nav__emergency:hover::before {
  left: 0;
}

.nav__emergency-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-primary);
  margin: 6px 0;
  transition: 0.3s;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  animation: heroFloat 16s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% {
    transform: scale(1) translateY(0);
  }
  50% {
    transform: scale(1.06) translateY(-12px);
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 17, 23, 0.92) 0%,
    rgba(13, 17, 23, 0.6) 50%,
    rgba(13, 17, 23, 0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 120px 0;
}

.hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero__tagline::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--text-primary);
  opacity: 0.5;
}

.hero__title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.hero__title span {
  display: block;
  color: var(--text-secondary);
}

.hero__description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 48px;
}

.hero__trust-bar {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0;
}

.hero__trust-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.hero__trust-item {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.hero__trust-sep {
  color: var(--text-muted);
  opacity: 0.5;
}

@media (max-width: 768px) {
  .hero__trust-bar {
    bottom: 32px;
    gap: 10px;
    padding: 0 24px;
  }

  .hero__trust-items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .hero__trust-item {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero__trust-bar {
    bottom: 24px;
    gap: 8px;
  }

  .hero__trust-items {
    gap: 8px;
  }

  .hero__trust-item {
    font-size: 11px;
  }

  .hero__trust-sep {
    margin: 0 4px;
  }
}

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--text-primary);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: color var(--transition-base), border-color var(--transition-base);
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--text-primary);
  transition: left var(--transition-base);
}

.btn:hover {
  color: var(--bg-deep);
}

.btn:hover::before {
  left: 0;
}

.btn--primary {
  color: var(--bg-deep);
}

.btn--primary::before {
  left: 0;
}

.btn--primary:hover {
  color: var(--text-primary);
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--red {
  border-color: var(--accent-red);
  color: var(--accent-red);
}

.btn--red::before {
  background: var(--accent-red);
}

.btn--red:hover {
  color: var(--text-primary);
}

.btn__arrow {
  position: relative;
  z-index: 2;
  transition: transform var(--transition-base);
}

.btn span {
  position: relative;
  z-index: 2;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

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

.section {
  padding: var(--section-padding) 0;
  border-top: 1px solid var(--border-subtle);
}

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

.section__header {
  margin-bottom: 64px;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.section__label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-blue);
  opacity: 0.5;
}

.section__label--red {
  color: var(--accent-red);
}

.section__label--red::before {
  background: var(--accent-red);
  opacity: 0.5;
}

.section__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.section__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-top: 16px;
  line-height: 1.7;
}

.section__cta {
  margin-top: 48px;
  text-align: center;
}

/* ========================================
   TRUST INDICATORS
   ======================================== */

.trust {
  padding: 48px 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-primary);
}

.trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.trust__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.trust__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.trust__divider {
  width: 1px;
  height: 32px;
  background: var(--border-subtle);
}

/* ========================================
   INTRO / STATEMENT
   ======================================== */

.statement-section {
  padding: var(--section-padding) 0;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-primary);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.statement-intro__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.statement-intro__label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-blue);
  opacity: 0.5;
}

.statement-intro__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.statement-content {
  padding-left: 40px;
  border-left: 1px solid var(--border-subtle);
}

.statement-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.statement-content p:last-child {
  margin-bottom: 0;
}

.statement-content strong {
  color: var(--text-primary);
  font-weight: 500;
}

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

  .statement-content {
    padding-left: 0;
    border-left: none;
    padding-top: 32px;
    border-top: 1px solid var(--border-subtle);
  }
}

/* ========================================
   SERVICES / CAPABILITIES
   ======================================== */

.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border-subtle);
  border-left: 1px solid var(--border-subtle);
}

.service {
  position: relative;
  padding: 48px;
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.service::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--text-muted);
  transition: width var(--transition-slow);
}

.service:hover {
  background: var(--bg-elevated);
}

.service:hover::after {
  width: 100%;
}

.service__number {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

.service:hover .service__number {
  opacity: 1;
}

.service__number--red {
  color: var(--accent-red);
}

.service__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  transition: color var(--transition-base);
}

.service:hover .service__title {
  color: var(--text-primary);
}

.service__description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   CAPABILITIES LIST (minimal)
   ======================================== */

.cap-list {
  border-top: 1px solid var(--border-subtle);
}

.cap-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: all var(--transition-base);
}

.cap-item:hover {
  padding-left: 20px;
  background: linear-gradient(90deg, rgba(240, 243, 246, 0.02) 0%, transparent 100%);
}

.cap-item:hover .cap-item__title {
  color: var(--text-primary);
}

.cap-item:hover .cap-item__arrow {
  opacity: 1;
  transform: translateX(0);
}

.cap-item__title {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-base);
  letter-spacing: -0.01em;
}

.cap-item__title--red {
  color: var(--accent-red);
}

.cap-item:hover .cap-item__title--red {
  color: var(--accent-red-hover);
}

.cap-item__arrow {
  font-size: 20px;
  color: var(--text-muted);
  opacity: 0;
  transform: translateX(-12px);
  transition: all var(--transition-base);
}

/* ========================================
   IMAGE SECTION
   ======================================== */

.image-section {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--bg-deep) 0%,
    transparent 20%,
    transparent 80%,
    var(--bg-deep) 100%
  );
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  border-top: 1px solid var(--border-subtle);
  border-left: 1px solid var(--border-subtle);
}

.stat {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-primary);
  transition: all var(--transition-base);
}

.stat:hover {
  background: var(--bg-elevated);
}

.stat:hover .stat__value {
  color: var(--text-primary);
}

.stat__value {
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text-secondary);
  transition: color var(--transition-base);
}

.stat__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ========================================
   CTA
   ======================================== */

.cta {
  padding: var(--section-padding) 0;
  text-align: center;
  border-top: 1px solid var(--border-subtle);
}

.cta__title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.cta__subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* ========================================
   CONTENT BLOCKS
   ======================================== */

.content-block {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  padding: 64px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.content-block:last-child {
  border-bottom: none;
}

.content-block__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-blue);
}

.content-block__label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-blue);
  opacity: 0.5;
}

.content-block__label--red {
  color: var(--accent-red);
}

.content-block__label--red::before {
  background: var(--accent-red);
}

.content-block__body h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.content-block__body p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-block__body p:last-child {
  margin-bottom: 0;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-info__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.contact-info__discretion {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding: 12px 16px;
  border-left: 2px solid var(--border-default);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-method__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-default);
  color: var(--text-muted);
}

.contact-method__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-method__value {
  font-size: 16px;
  font-weight: 500;
}

/* Secure Communications */
.secure-comms {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.secure-comms__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.secure-comms__text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.secure-comms__key {
  background: var(--bg-elevated);
  padding: 20px;
  border: 1px solid var(--border-subtle);
}

.secure-comms__label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.secure-comms__fingerprint {
  display: block;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', monospace;
  font-size: 12px;
  color: var(--text-secondary);
  word-break: break-all;
  margin-bottom: 16px;
}

.secure-comms__download {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-base);
}

.secure-comms__download:hover {
  color: var(--text-primary);
}

/* Form */
.form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form__input,
.form__textarea,
.form__select {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  padding: 16px;
  font-size: 15px;
  color: var(--text-primary);
  font-family: var(--font-body);
  transition: all var(--transition-base);
}

.form__input:hover,
.form__textarea:hover,
.form__select:hover {
  border-color: var(--border-default);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--text-muted);
  background: var(--bg-surface);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form__textarea {
  min-height: 150px;
  resize: vertical;
}

.form__submit {
  align-self: flex-start;
}

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

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

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer__slogan {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.footer__center {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__location {
  font-size: 12px;
  color: var(--text-muted);
}

.footer__separator {
  color: var(--text-muted);
  opacity: 0.4;
  font-size: 10px;
}

.footer__copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 32px;
}

.footer__link {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

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

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

.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero--short {
  min-height: 45vh;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    var(--bg-deep) 0%,
    rgba(13, 17, 23, 0.75) 40%,
    rgba(13, 17, 23, 0.5) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 800px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.page-hero__label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent-blue);
  opacity: 0.5;
}

.page-hero__label--red {
  color: var(--accent-red);
}

.page-hero__label--red::before {
  background: var(--accent-red);
  opacity: 0.6;
}

.page-hero__title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.page-hero__subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

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

  .content-block {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .trust__inner {
    flex-direction: column;
    gap: 24px;
  }

  .trust__divider {
    width: 48px;
    height: 1px;
  }

  .stats {
    flex-wrap: wrap;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-deep);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav__menu--active {
    opacity: 1;
    visibility: visible;
  }

  .nav__menu--active .nav__link {
    font-size: 24px;
  }

  .nav__toggle {
    display: block;
    z-index: 1001;
    position: relative;
  }

  /* Stats section spacing */
  .stats {
    margin-top: 48px;
    flex-direction: column;
    gap: 32px;
  }

  .hero__content {
    padding: 160px 0 80px;
  }

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

  .footer__inner {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer__center {
    flex-direction: column;
    gap: 4px;
  }

  .footer__separator {
    display: none;
  }

  /* Trust indicators */
  .trust__inner {
    flex-direction: column;
    gap: 24px;
  }

  .trust__divider {
    width: 40px;
    height: 1px;
  }

  /* Content blocks */
  .content-block {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 40px 0;
  }

  .content-block__body h3 {
    font-size: 22px;
  }

  /* Services grid */
  .service {
    padding: 32px 24px;
  }

  .service__title {
    font-size: 18px;
  }

  /* Section headers */
  .section__header {
    margin-bottom: 40px;
  }

  /* Page hero */
  .page-hero {
    min-height: 50vh;
  }

  .page-hero__content {
    padding: 60px 0;
    min-height: auto;
  }

  .page-hero__title {
    font-size: clamp(28px, 7vw, 48px);
  }

  .page-hero__subtitle {
    font-size: 15px;
  }

  /* Caps section */
  .caps__inner {
    flex-direction: column;
    gap: 0;
  }

  .cap-item {
    padding: 20px 0;
  }

  /* Statement section */
  .statement-intro__title {
    font-size: 24px;
  }

  .statement-content p {
    font-size: 15px;
  }

  /* Stat values */
  .stat__value {
    font-size: 36px;
  }

  /* Buttons */
  .btn {
    padding: 14px 24px;
    font-size: 12px;
  }

  /* Hero adjustments */
  .hero__title {
    font-size: clamp(32px, 8vw, 48px);
  }

  .hero__description {
    font-size: 15px;
  }

  /* Nav emergency in mobile menu */
  .nav__menu--active .nav__emergency {
    margin-top: 16px;
  }
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__content {
  animation: fadeInUp 0.8s ease-out;
}

.page-hero__content {
  animation: fadeInUp 0.7s ease-out;
}

/* ========================================
   SELECTION
   ======================================== */

::selection {
  background: rgba(240, 243, 246, 0.2);
  color: var(--text-primary);
}

/* ========================================
   FOCUS STATES
   ======================================== */

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--text-muted);
  outline-offset: 2px;
}

/* ========================================
   SCROLLBAR (subtle)
   ======================================== */

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--bg-surface);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ========================================
   CONTACT PAGE
   ======================================== */

.contact-section {
  padding-top: 48px;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

/* Contact Cards */
.contact-card {
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 32px;
  transition: border-color var(--transition-base);
}

.contact-card:hover {
  border-color: var(--border-default);
}

.contact-card--emergency {
  border-color: var(--accent-red-dark);
  background: rgba(166, 61, 61, 0.08);
}

.contact-card--emergency:hover {
  border-color: var(--accent-red);
  background: rgba(166, 61, 61, 0.12);
}

.contact-card--emergency .contact-card__icon {
  color: var(--accent-red);
}

.contact-card__icon {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.contact-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-card__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-card__email {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color var(--transition-fast);
}

.contact-card__email:hover {
  color: var(--accent-blue);
}

.contact-card--emergency .contact-card__email:hover {
  color: var(--accent-red-hover);
}

.contact-card__location {
  font-size: 1rem;
  color: var(--text-secondary);
}

.contact-card__link {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.contact-card__link:hover {
  color: var(--accent-blue);
}

/* PGP Section (Compact) */
.contact-pgp-small {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.contact-pgp-small svg {
  flex-shrink: 0;
}

.contact-pgp-small__text {
  font-size: 0.875rem;
}

.contact-pgp-small__fingerprint {
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
  font-size: 0.75rem;
  color: var(--text-muted);
  background: var(--bg-elevated);
  padding: 6px 10px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.contact-pgp-small__link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
  margin-left: auto;
}

.contact-pgp-small__link:hover {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .contact-section {
    padding-top: 32px;
  }

  .contact-pgp-small {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
  }

  .contact-pgp-small__link {
    margin-left: 0;
  }

  .contact-pgp-small__fingerprint {
    word-break: break-all;
    font-size: 0.65rem;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-card__title {
    font-size: 1.125rem;
  }

  .contact-card__text {
    font-size: 0.875rem;
    margin-bottom: 16px;
  }

  .contact-card__email {
    font-size: 1rem;
  }
}

/* ========================================
   CAREERS PAGE
   ======================================== */

.careers-apply {
  text-align: center;
  padding: 32px 0;
}

.careers-apply__header {
  margin-bottom: 48px;
}

.careers-apply__header .section__label {
  justify-content: center;
}

.careers-apply__header .section__label::before {
  display: none;
}

.careers-apply__header .section__title {
  margin-bottom: 24px;
}

.careers-apply__text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 24px;
}

.careers-apply__text a {
  color: var(--text-primary);
  font-weight: 500;
  transition: color var(--transition-base);
}

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

.careers-apply__note {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .careers-apply__text {
    font-size: 15px;
  }

  .careers-apply__note {
    font-size: 12px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  :root {
    --section-padding: 48px;
  }

  .hero__content {
    padding: 120px 0 60px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__description {
    font-size: 14px;
  }

  .page-hero__title {
    font-size: 24px;
  }

  .page-hero__subtitle {
    font-size: 14px;
  }

  .section__title {
    font-size: 24px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-pgp-small__fingerprint {
    font-size: 0.6rem;
  }

  .stat__value {
    font-size: 28px;
  }

  .service {
    padding: 24px 16px;
  }

  .nav__logo img {
    height: 40px;
  }
}
