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

:root {
  --void:    #050507;
  --ink:     #0c0c10;
  --panel:   #111116;
  --surface: #18181f;
  --border:  rgba(255,255,255,.07);
  --cyan:    #00e5c8;
  --cyan-dim: rgba(0,229,200,.12);
  --white:   #ffffff;
  --off:     #e8e8ee;
  --muted:   #9ca0b0;
}

html { scroll-behavior: smooth; }

.ab2-content p,
.cr-spotlight__copy p,
.cta p {
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

body {
  background: var(--void);
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 72px;
  border-bottom: 1px solid transparent;
  transition: background .4s, border-color .4s;
}
nav.stuck {
  background: rgba(5,5,7,.92);
  border-color: var(--border);
  backdrop-filter: blur(16px);
}
.nav-wordmark {
  font-family: 'Inter', sans-serif;
  font-size: 15px; font-weight: 800; letter-spacing: .06em;
  text-transform: uppercase; color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-wordmark .nm-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
.nav-center { display: flex; gap: 40px; list-style: none; }
.nav-center a {
  font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--white); text-decoration: none; transition: color .2s;
}
.nav-center a:hover, .nav-center a.nav-here { color: var(--cyan); }
.nav-end { display: flex; align-items: center; gap: 20px; }
.nav-tel {
  font-family: 'DM Mono', monospace; font-size: 12px;
  color: var(--white); text-decoration: none; transition: color .2s;
}
.nav-tel:hover { color: var(--cyan); }
.nav-btn {
  border: 1px solid var(--cyan); color: var(--cyan);
  padding: 9px 22px; font-family: 'DM Mono', monospace;
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  text-decoration: none; transition: background .2s, color .2s;
  position: relative; overflow: hidden;
}
.nav-btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--cyan); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease; z-index: -1;
}
.nav-btn:hover { color: var(--void); }
.nav-btn:hover::before { transform: scaleX(1); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--white);
  flex-shrink: 0;
}
.nav-toggle:focus-visible { outline: 2px solid var(--cyan); outline-offset: 4px; }
.nav-toggle-bar { display: block; width: 22px; height: 2px; background: currentColor; transition: transform 0.25s ease, opacity 0.2s ease; }
.nav-backdrop { display: none; }

.ab2-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
  max-height: 960px;
  background: var(--void);
  border-bottom: 1px solid var(--border);
}
.ab2-hero__text {
  position: relative;
  padding: 120px 48px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.ab2-hero__text::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 20% 30%, rgba(0,229,200,.1) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(0,229,200,.04) 0%, transparent 50%),
    var(--void);
  pointer-events: none;
}
.ab2-hero__text::after {
  content: '';
  position: absolute; inset: 0;
  opacity: .035;
  background-image:
    linear-gradient(var(--cyan) 1px, transparent 1px),
    linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.ab2-hero__inner { position: relative; z-index: 2; max-width: 520px; }
.ab2-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 20px; display: flex; align-items: center; gap: 14px;
}
.ab2-eyebrow::before { content: '//'; opacity: .5; }
.ab2-hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 4.2vw, 64px);
  font-weight: 800; line-height: .98; letter-spacing: -.04em;
  color: var(--white);
  margin-bottom: 20px;
}
.ab2-hero h1 .hl { color: var(--cyan); }
.ab2-hero__meta {
  font-family: 'DM Mono', monospace;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.75;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 229, 200, 0.22);
  max-width: 380px;
}
.ab2-hero__visual {
  position: relative;
  min-height: 320px;
  background: var(--ink);
}
.ab2-hero__visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(55%) brightness(.68);
}
.ab2-hero__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, var(--void) 0%, rgba(5,5,7,.2) 28%, rgba(5,5,7,.1) 100%),
    linear-gradient(to top, rgba(5,5,7,.75) 0%, transparent 45%);
  pointer-events: none;
}
.ab2-hero__edge {
  position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 3px; background: linear-gradient(180deg, var(--cyan), rgba(0,229,200,.2));
  z-index: 2;
  pointer-events: none;
}

.ab2-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--panel);
  border-bottom: 1px solid var(--border);
}
.ab2-stat {
  padding: 36px 32px 40px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background .25s;
}
.ab2-stat:last-child { border-right: none; }
.ab2-stat:hover { background: var(--cyan-dim); }
.ab2-stat::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: var(--cyan); transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.ab2-stat:hover::after { transform: scaleX(1); }
.ab2-stat__num {
  font-family: 'Inter', sans-serif; font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800; letter-spacing: -.03em; color: var(--white); line-height: 1;
}
.ab2-stat__num sup { font-size: .55em; color: var(--cyan); vertical-align: super; }
.ab2-stat__label {
  font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.9); margin-top: 10px;
}

.ab2-content {
  background: #050507;
  padding: 80px 220px;
  border-bottom: 1px solid var(--border);
}
.ab2-content__inner {
  width: 100%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.ab2-content p {
  font-size: 18px; color: rgba(255, 255, 255, 0.9);
  line-height: 1.9; font-weight: 400; margin-bottom: 22px;
}
.ab2-content p:last-child { margin-bottom: 0; }

.cr-registry {
  background: var(--ink);
  padding: 72px 56px 80px;
  border-bottom: 1px solid var(--border);
}
.cr-registry__intro {
  margin-bottom: 48px;
}
.cr-registry__eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 16px; display: flex; align-items: center; gap: 14px;
}
.cr-registry__eyebrow::before { content: '//'; opacity: .5; }
.cr-registry__intro h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(27px, 2.8vw, 40px);
  font-weight: 800; letter-spacing: -.03em; color: var(--white); line-height: 1.05;
  margin-bottom: 16px;
}
.cr-registry__intro p {
  font-family: 'Source Sans 3', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 18px; color: rgba(255, 255, 255, 0.9);
  line-height: 1.75; font-weight: 400;
}
.cr-registry__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.cr-card {
  border: 1px solid var(--border);
  background: var(--panel);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  min-width: 0;
  overflow: hidden;
  transition: border-color .25s, background .25s;
}
.cr-card:hover {
  border-color: rgba(0,229,200,.25);
  background: rgba(17,17,22,.95);
}
.cr-card__media {
  height: 110px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  overflow: hidden;
  position: relative;
}
.cr-card__media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.cr-card__body {
  padding: 16px 14px 20px;
  flex: 1;
}
.cr-card__org {
  font-family: 'DM Mono', monospace; font-size: 8px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 10px;
}
.cr-card__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(13px, 0.85vw, 15px);
  font-weight: 700; color: var(--white);
  line-height: 1.3; letter-spacing: -.01em;
}

.cr-spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ink);
  border-bottom: 1px solid var(--border);
  min-height: 360px;
}
.cr-spotlight__photo {
  position: relative;
  min-height: 320px;
  background: var(--surface);
}
.cr-spotlight__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(40%) brightness(.65);
}
.cr-spotlight__photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(12,12,16,.85) 100%);
  pointer-events: none;
}
.cr-spotlight__copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 56px 64px 56px 48px;
  border-left: 3px solid var(--cyan);
  background: linear-gradient(90deg, rgba(0,229,200,.06) 0%, transparent 70%);
}
.cr-spotlight__eyebrow {
  font-family: 'DM Mono', monospace; font-size: 9px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 20px;
}
.cr-spotlight__copy h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 800; letter-spacing: -.03em; color: var(--white);
  line-height: 1.1; margin-bottom: 20px;
}
.cr-spotlight__copy p {
  font-size: 18px; color: rgba(255, 255, 255, 0.9);
  line-height: 1.8; font-weight: 400;
}

.cta {
  background: var(--void); padding: 40px 56px;
  position: relative; overflow: hidden; text-align: center;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(0,229,200,.06) 0%, transparent 70%);
}
.cta-eyebrow {
  font-family: 'DM Mono', monospace; font-size: 10px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 28px; display: flex; align-items: center; justify-content: center; gap: 14px;
}
.cta-eyebrow::before { content: '//'; opacity: .5; }
.cta h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 5.2vw, 81px);
  font-weight: 800; letter-spacing: -.04em; color: var(--white); line-height: .88;
  margin-bottom: 32px; position: relative; z-index: 1;
}
.cta h2 em {
  font-style: normal;
  font-weight: 800;
  color: var(--cyan);
}
.cta p { font-size: 18px; color: rgba(255, 255, 255, 0.9); max-width: 500px; margin: 0 auto 52px; font-weight: 400; line-height: 1.75; position: relative; z-index: 1; }
.cta-btns { display: flex; justify-content: center; gap: 20px; position: relative; z-index: 1; flex-wrap: wrap; }
.cta-contact { margin-top: 64px; display: flex; justify-content: center; gap: 64px; position: relative; z-index: 1; flex-wrap: wrap; }
.cta-contact a {
  font-family: 'DM Mono', monospace; font-size: 12px;
  color: rgba(255, 255, 255, 0.9); text-decoration: none; transition: color .2s;
}
.cta-contact a:hover { color: var(--cyan); }
.cta-contact strong { display: block; font-size: 18px; color: rgba(255, 255, 255, 0.9); font-family: 'Inter', sans-serif; font-weight: 700; margin-bottom: 2px; }
.btn-cyan {
  background: var(--cyan); color: var(--void);
  padding: 16px 40px; font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; text-decoration: none;
  box-shadow: 0 0 40px rgba(0,229,200,.3);
  transition: box-shadow .3s, transform .2s;
}
.btn-cyan:hover { box-shadow: 0 0 60px rgba(0,229,200,.5); transform: translateY(-2px); }

footer { background: var(--panel); border-top: 1px solid var(--border); padding: 80px 56px 0; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
.footer-brand-word {
  font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 800;
  letter-spacing: .04em; color: var(--white); text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.footer-brand-word .fd { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); }
footer .f-tag { font-size: 13px; color: rgba(255, 255, 255, 0.9); line-height: 1.7; max-width: 220px; font-weight: 400; }
.f-wbe { margin-top: 20px; font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan); border: 1px solid rgba(0,229,200,.2); display: inline-block; padding: 6px 12px; text-decoration: none; transition: border-color .2s, background .2s; }
.f-wbe:hover { border-color: rgba(0,229,200,.45); background: rgba(0,229,200,.08); }
footer h5 { font-family: 'DM Mono', monospace; font-size: 9px; letter-spacing: .22em; text-transform: uppercase; color: rgba(255, 255, 255, 0.9); margin-bottom: 20px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
footer ul a { font-size: 13px; color: rgba(255, 255, 255, 0.9); text-decoration: none; transition: color .2s; }
footer ul a:hover { color: var(--cyan); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-family: 'DM Mono', monospace; font-size: 10px; color: rgba(255, 255, 255, 0.9); letter-spacing: .08em; }

@media (max-width: 1200px) {
  .ab2-content { padding: 64px 80px; }
  .cr-registry__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
  .cr-card__body { padding: 18px 16px 22px; }
  .cr-card__title { font-size: clamp(14px, 1.2vw, 16px); }
}

@media (max-width: 1024px) {
  .ab2-hero { grid-template-columns: 1fr; max-height: none; min-height: 60vh; }
  .ab2-hero__text { padding: 120px 40px 48px; order: 1; }
  .ab2-hero__visual { order: 0; min-height: 38vh; max-height: 420px; }
  .ab2-hero__edge { top: 10%; bottom: 10%; }
  .ab2-content { padding: 64px 40px; }
  .cr-registry__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
  .cr-spotlight { grid-template-columns: 1fr; }
  .cr-spotlight__photo { min-height: 280px; order: 0; }
  .cr-spotlight__photo::after {
    background: linear-gradient(to top, rgba(12,12,16,.85) 0%, transparent 55%);
  }
  .cr-spotlight__copy { order: 1; padding: 40px 32px 48px; border-left: none; border-top: 3px solid var(--cyan); }
}

@media (max-width: 768px) {
  nav {
    padding: 0 20px; min-height: 64px; height: auto;
    padding-top: 10px; padding-bottom: 10px; flex-wrap: nowrap; align-items: center;
  }
  .nav-wordmark { order: 1; z-index: 202; position: relative; font-size: 12px; gap: 8px; }
  .nav-end { order: 2; margin-left: auto; z-index: 202; position: relative; gap: 10px; }
  .nav-tel { font-size: 11px; }
  .nav-btn { padding: 8px 14px; font-size: 10px; }
  .nav-toggle { display: flex; order: 3; margin-left: 6px; z-index: 202; position: relative; }
  .nav-center {
    position: fixed; left: 0; right: 0; top: 72px; bottom: 0; z-index: 199;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    margin: 0; padding: 8px 0 32px; list-style: none;
    background: rgba(17, 17, 22, 0.98); border-top: 1px solid var(--border);
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    transform: translateX(100%); visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s;
  }
  nav.nav-open .nav-center { transform: translateX(0); visibility: visible; }
  .nav-center li { border-bottom: 1px solid var(--border); }
  .nav-center li:last-child { border-bottom: none; }
  .nav-center a { display: block; padding: 16px 24px; font-size: 12px; letter-spacing: 0.12em; }
  nav.nav-open .nav-backdrop { display: block; position: fixed; inset: 0; z-index: 198; background: rgba(0,0,0,.55); cursor: pointer; }
  nav.nav-open > .nav-wordmark, nav.nav-open > .nav-end, nav.nav-open > .nav-toggle { z-index: 203; }
  nav.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  nav.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  body.nav-menu-open { overflow: hidden; touch-action: none; }
  .ab2-stats { grid-template-columns: 1fr; }
  .ab2-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .ab2-stat:last-child { border-bottom: none; }
  .ab2-content { padding: 56px 24px; }
  .cr-registry { padding: 48px 24px 56px; }
  .cr-registry__grid { grid-template-columns: 1fr; gap: 20px; }
  .cr-card__body { padding: 20px 18px 24px; }
  .cr-card__title { font-size: 17px; }
  .cta { padding: 40px 24px; }
  .cta-contact { flex-direction: column; gap: 28px; margin-top: 48px; }
  footer { padding: 56px 24px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding-bottom: 44px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .nav-wordmark { font-size: 11px; }
  .nav-tel { font-size: 10px; }
  .nav-center { top: 68px; }
  .ab2-hero__text { padding: 100px 16px 40px; }
  .ab2-content { padding: 48px 16px; }
  .cr-registry { padding: 40px 16px 48px; }
  .cta { padding: 40px 16px; }
  footer { padding: 44px 16px 0; }
}
