/* ===========================
   BBCS — BlueBeard CyberSecurity
   Refined dark aesthetic, editorial typography
   =========================== */

:root {
  /* Color system — refined from original */
  --bg: #0A0F1C;
  --bg-elevated: #0F1729;
  --bg-card: #131C30;
  --border: rgba(77, 166, 255, 0.12);
  --border-strong: rgba(77, 166, 255, 0.25);

  --text: #E7F0FF;
  --text-muted: #8A9AB5;
  --text-dim: #5C6B85;

  --accent: #4DA6FF;
  --accent-bright: #66B3FF;
  --accent-deep: #0177E3;
  --accent-glow: rgba(77, 166, 255, 0.15);

  --success: #4ADE80;
  --warning: #FBBF24;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --max-w: 1200px;
  --container-px: clamp(1.25rem, 4vw, 2.5rem);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;

  /* Subtle ambient gradient background */
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(77, 166, 255, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(1, 119, 227, 0.04), transparent);
  background-attachment: fixed;
}

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

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

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

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  font-variation-settings: "opsz" 144;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  color: var(--text-muted);
  line-height: 1.7;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent);
}

.lead {
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  max-width: 60ch;
}

/* ===========================
   HEADER / NAV
   =========================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.brand-name span {
  color: var(--accent);
}

.brand-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  display: block;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-menu a {
  color: var(--text-muted);
  font-size: 0.925rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s var(--ease);
}

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

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.25rem;
  background: var(--accent);
  color: var(--bg);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--accent);
  transition: all 0.2s var(--ease);
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-bright);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px -8px var(--accent-glow);
}

.nav-cta::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}

.nav-cta:hover::after {
  transform: translateX(3px);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 6px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .nav-menu, .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100dvh;
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  z-index: 200;
  padding: 1.5rem;
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.mobile-drawer-close {
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 42px;
  height: 42px;
  border-radius: 6px;
  cursor: pointer;
}

.mobile-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-drawer ul a {
  display: block;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.15s var(--ease);
}

.mobile-drawer ul a:hover {
  background: var(--bg-card);
}

.mobile-drawer .nav-cta {
  display: inline-flex;
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}

.drawer-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.975rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-bright);
  color: var(--bg);
  transform: translateY(-1px);
  box-shadow: 0 12px 32px -8px var(--accent-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-bright);
  background: var(--accent-glow);
}

.btn::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}

.btn:hover::after {
  transform: translateX(3px);
}

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

.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.hero .eyebrow {
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.1s forwards;
}

.hero h1 {
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.25s forwards;
}

.hero h1 em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-bright);
  font-variation-settings: "opsz" 144;
}

.hero .lead {
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.4s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.55s forwards;
}

.hero-meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.7s forwards;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-meta-item .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.hero-meta-item .value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
}

.hero-meta-item .value span {
  color: var(--accent);
}

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

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

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-header {
  margin-bottom: 4rem;
  max-width: 720px;
}

.section-header .eyebrow {
  margin-bottom: 1.25rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

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

/* ===========================
   WHY BBCS — Feature cards
   =========================== */

.why-section {
  position: relative;
  border-top: 1px solid var(--border);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-glow);
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.975rem;
  line-height: 1.65;
}

/* ===========================
   SERVICES LIST
   =========================== */

.services-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.25s var(--ease);
  cursor: pointer;
}

.service-row:hover {
  padding-left: 1rem;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.service-name {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color 0.25s var(--ease);
}

.service-row:hover .service-name {
  color: var(--accent-bright);
}

.service-arrow {
  color: var(--text-dim);
  font-size: 1.5rem;
  transition: all 0.25s var(--ease);
}

.service-row:hover .service-arrow {
  color: var(--accent);
  transform: translateX(6px);
}

@media (max-width: 600px) {
  .service-row {
    grid-template-columns: 50px 1fr auto;
    gap: 1rem;
    padding: 1.5rem 0;
  }
}

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

.cta-block {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, var(--accent-glow), transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta-content h2 {
  margin-bottom: 1.25rem;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.cta-content .btn {
  margin-top: 0.5rem;
}

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

.site-footer {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  margin-top: 0;
}

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

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 32ch;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--accent-bright);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* ===========================
   PAGE HEADER (sub-pages)
   =========================== */

.page-header {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--border);
  position: relative;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 80% at 50% 0%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 50% 0%, black, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
}

.page-header-content {
  position: relative;
  max-width: 760px;
}

.page-header .eyebrow {
  margin-bottom: 1.25rem;
}

.page-header h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

/* ===========================
   PROSE (article content)
   =========================== */

.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose h2 {
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose p {
  margin-bottom: 1.5rem;
  font-size: 1.075rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.prose ul, .prose ol {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.prose li {
  margin-bottom: 0.5rem;
  line-height: 1.75;
}

.prose strong {
  color: var(--text);
  font-weight: 600;
}

.prose a {
  color: var(--accent-bright);
  border-bottom: 1px solid var(--border-strong);
  transition: all 0.2s var(--ease);
}

.prose a:hover {
  border-bottom-color: var(--accent);
}

.prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info-list li {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.contact-info-list li:last-child {
  border-bottom: none;
}

.contact-info-list .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
  display: block;
}

.contact-info-list .value {
  font-size: 1.125rem;
  color: var(--text);
}

.contact-info-list .value a {
  color: var(--text);
}

.contact-info-list .value a:hover {
  color: var(--accent-bright);
}

.booking-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.booking-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--accent-glow), transparent 50%);
  pointer-events: none;
}

.booking-card-content {
  position: relative;
}

.booking-card h3 {
  margin-bottom: 1rem;
}

.booking-card p {
  margin-bottom: 1.75rem;
}

/* ===========================
   SERVICES DETAIL (services page)
   =========================== */

.services-detail {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.service-detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 3rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  position: relative;
  transition: padding 0.3s var(--ease);
}

.service-detail:hover {
  padding-left: 1rem;
}

.service-detail:hover::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
}

.service-detail-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  padding-top: 0.6rem;
}

.service-detail-content h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.service-detail-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 60ch;
  font-weight: 300;
}

.service-detail-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-detail-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text);
  font-size: 0.975rem;
  line-height: 1.6;
}

.service-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 12px;
  height: 1px;
  background: var(--accent);
}

@media (max-width: 700px) {
  .service-detail {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2.5rem 0;
  }

  .service-detail-num {
    padding-top: 0;
  }
}

/* ===========================
   ABOUT PAGE
   =========================== */

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 5rem;
  align-items: start;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.about-grid-label {
  position: sticky;
  top: 6rem;
}

.about-grid-label .eyebrow {
  margin-bottom: 1rem;
}

.about-grid-label h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.about-lead {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 3rem;
  max-width: 60ch;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.about-list li:first-child {
  border-top: 1px solid var(--border);
}

.about-list-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  padding-top: 0.4rem;
}

.about-list h3 {
  font-size: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.about-list p {
  font-size: 0.975rem;
  line-height: 1.65;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-grid-label {
    position: static;
  }
}

@media (max-width: 600px) {
  .about-list li {
    grid-template-columns: 40px 1fr;
    gap: 1rem;
  }
}

/* THE STORY SECTION */

.story-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  pointer-events: none;
}

.story-content {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.story-content .eyebrow {
  margin-bottom: 1.25rem;
  justify-content: center;
}

.story-content .eyebrow::before {
  display: none;
}

.story-content h2 {
  margin-bottom: 2rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.story-lead {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.story-content p {
  font-size: 1.075rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

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

/* ===========================
   ACCESSIBILITY
   =========================== */

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
