/* palette: bg=#FFFFFF fg=#0B0B0F accent=#4B3BE8 */
/* fonts: display="Space Grotesk" body="Inter" mono="IBM Plex Mono" */

:root {
  --bg: #FFFFFF;
  --bg-alt: #F3F3F6;
  --ink: #060608;        /* deep-black section background */
  --ink-soft: #101015;
  --fg: #0B0B0F;
  --fg-soft: #26262E;
  --muted: #6C6C76;
  --muted-dark: #9B9BA8; /* muted text on dark sections */
  --accent: #4B3BE8;
  --accent-deep: #2E22B8;
  --accent-glow: #6F5CFF;
  --border: rgba(0, 0, 0, 0.12);
  --border-dark: rgba(255, 255, 255, 0.14);
  --serif: 'Space Grotesk', ui-sans-serif, sans-serif;
  --sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --maxw: 1240px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  line-height: 1.75;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
section { padding: clamp(80px, 12vw, 160px) 0; }
.section-tight { padding: clamp(56px, 8vw, 110px) 0; }

.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--accent); display: inline-block; }
.eyebrow--light { color: var(--accent-glow); }
.eyebrow--light::before { background: var(--accent-glow); }

.lead { font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--fg-soft); line-height: 1.7; max-width: 60ch; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.header[data-scrolled="true"] {
  box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 8px 30px -18px rgba(0,0,0,0.25);
  border-color: var(--border);
}
.header__bar { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-weight: 600; font-size: 19px; letter-spacing: -0.02em; }
.brand__mark {
  width: 30px; height: 30px; border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, var(--accent-glow), var(--accent) 42%, var(--ink) 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
  flex: none;
}
.nav { display: none; gap: 34px; }
@media (min-width: 900px) { .nav { display: flex; } }
.nav a { font-size: 14px; color: var(--fg-soft); position: relative; padding: 6px 0; transition: color .2s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--accent); transition: width .3s var(--ease); }
.nav a:hover { color: var(--fg); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--fg); }

.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }

.menu-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
@media (min-width: 900px) { .menu-toggle { display: none; } }
.menu-toggle span { width: 22px; height: 2px; background: var(--fg); transition: transform .3s var(--ease), opacity .3s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 72px 0 0; z-index: 99;
  background: var(--bg);
  padding: 32px 24px;
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.mobile-menu[data-open="true"] { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a { display: block; font-family: var(--serif); font-size: 30px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 28px; width: 100%; justify-content: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border-radius: 9999px;
  font-size: 14px; font-weight: 500;
  background: var(--accent); color: #fff;
  transition: transform .25s var(--ease), background .25s, box-shadow .25s;
  box-shadow: 0 8px 24px -10px rgba(75,59,232,0.6);
}
.btn:hover { transform: translateY(-2px); background: var(--accent-deep); }
.btn--ghost { background: transparent; color: var(--fg); border: 1px solid var(--border); box-shadow: none; }
.btn--ghost:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn--light { background: #fff; color: var(--ink); box-shadow: none; }
.btn--light:hover { background: var(--accent-glow); color: #fff; }
.arrow-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-family: var(--mono); text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--fg); transition: gap .25s var(--ease), color .25s;
}
.arrow-link span { transition: transform .25s var(--ease); }
.arrow-link:hover { color: var(--accent); }
.arrow-link:hover span { transform: translateX(5px); }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: var(--ink); color: #fff;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero__orb {
  position: absolute; top: 50%; left: 50%;
  width: min(90vw, 820px); aspect-ratio: 1; border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.08);
  background:
    radial-gradient(circle at 36% 30%, var(--accent-glow) 0%, var(--accent) 22%, #1b1750 55%, #06060b 78%);
  filter: blur(2px);
  opacity: 0.92;
  animation: heroZoom 8s var(--ease) forwards;
}
.hero__orb::after {
  content: ""; position: absolute; inset: 12%; border-radius: 50%;
  background: radial-gradient(circle at 60% 65%, rgba(255,255,255,0.08), transparent 60%);
}
.hero__grain { position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(6,6,11,0.85) 100%); }
@keyframes heroZoom { from { transform: translate(-50%, -50%) scale(1.18); } to { transform: translate(-50%, -50%) scale(1); } }

.hero__inner { position: relative; z-index: 2; width: 100%; padding: 120px 0 80px; }
.hero h1 {
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 400; line-height: 0.96; letter-spacing: -0.03em;
  max-width: 14ch; margin: 0 0 28px;
}
.hero h1 em { font-style: normal; color: var(--accent-glow); }
.hero__sub { color: var(--muted-dark); font-size: clamp(1.05rem, 1.8vw, 1.25rem); max-width: 48ch; line-height: 1.65; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.hero__scroll { position: absolute; bottom: 28px; left: 0; right: 0; z-index: 2; text-align: center; font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-dark); }

/* page hero (interior) */
.page-hero { background: var(--ink); color: #fff; padding: clamp(120px, 18vw, 220px) 0 clamp(70px, 10vw, 120px); position: relative; overflow: hidden; }
.page-hero .hero__orb { width: min(70vw, 560px); top: 30%; left: 88%; opacity: 0.55; }
.page-hero h1 { position: relative; z-index: 2; font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 400; line-height: 1; letter-spacing: -0.03em; max-width: 16ch; }
.page-hero h1 em { font-style: normal; color: var(--accent-glow); }
.page-hero p { position: relative; z-index: 2; color: var(--muted-dark); max-width: 52ch; margin-top: 26px; font-size: 1.1rem; }

/* ---------- generic section heading ---------- */
.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 72px); }
.section-head h2 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 400; line-height: 1.02; }
.section-head p { margin-top: 22px; color: var(--muted); font-size: 1.1rem; max-width: 56ch; }
.section-head--split { display: grid; gap: 28px; max-width: none; }
@media (min-width: 900px) { .section-head--split { grid-template-columns: 1fr 1fr; align-items: end; } .section-head--split p { margin-top: 0; } }

/* ---------- intro statement ---------- */
.intro p { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 4vw, 2.9rem); line-height: 1.22; letter-spacing: -0.02em; max-width: 22ch; }
.intro p span { color: var(--accent); }
.intro__meta { margin-top: 40px; display: grid; gap: 28px; }
@media (min-width: 700px) { .intro__meta { grid-template-columns: repeat(3, 1fr); } }
.intro__meta dt { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 8px; }
.intro__meta dd { margin: 0; color: var(--fg-soft); font-size: 0.96rem; }

/* ---------- orb service grid (dark) ---------- */
.orbs { background: var(--ink); color: #fff; }
.orbs .section-head h2 { color: #fff; }
.orbs .section-head p { color: var(--muted-dark); }
.orb-grid { display: grid; gap: 1px; background: var(--border-dark); border: 1px solid var(--border-dark); }
@media (min-width: 640px) { .orb-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .orb-grid { grid-template-columns: repeat(3, 1fr); } }
.orb-card { background: var(--ink); padding: 38px 32px 44px; position: relative; transition: background .35s var(--ease); }
.orb-card:hover { background: var(--ink-soft); }
.orb-figure { width: 100%; aspect-ratio: 16/11; margin-bottom: 30px; border-radius: 4px; position: relative; overflow: hidden; background: #000; display: grid; place-items: center; }
.orb-shape { width: 64%; aspect-ratio: 1; border-radius: 50%; position: relative; }
.orb-shape::before, .orb-shape::after { content: ""; position: absolute; border-radius: 50%; }
/* variant orbs (white-on-black, mirrors reference) */
.orb-v1 { background: #fff; }
.orb-v1::before { inset: 26%; background: #000; }
.orb-v1::after { width: 22%; aspect-ratio: 1; right: 16%; top: 20%; background: #fff; }
.orb-v2 { border: 12px solid #fff; }
.orb-v2::before { inset: 14%; border: 6px solid #fff; }
.orb-v3 { background: conic-gradient(#fff 0 50%, transparent 50% 100%); }
.orb-v3::before { inset: 30%; background: #000; }
.orb-v4 { background: radial-gradient(circle at 38% 34%, var(--accent-glow), var(--accent) 50%, #0b0a26 100%); }
.orb-v5 { background: #fff; clip-path: circle(50%); }
.orb-v5::before { inset: 0; background: repeating-conic-gradient(#000 0 12deg, transparent 12deg 24deg); }
.orb-v6 { border: 10px solid #fff; }
.orb-v6::after { width: 40%; aspect-ratio: 1; left: 8%; bottom: 8%; background: var(--accent-glow); }
.orb-card h3 { font-size: 1.4rem; color: #fff; margin-bottom: 12px; }
.orb-card p { color: var(--muted-dark); font-size: 0.98rem; line-height: 1.7; }
.orb-card .orb-no { position: absolute; top: 22px; right: 26px; font-family: var(--mono); font-size: 11px; color: var(--muted-dark); letter-spacing: 0.1em; }

/* ---------- manifesto (dark band) ---------- */
.manifesto { background: var(--ink); color: #fff; text-align: center; }
.manifesto .quote-mark { font-family: var(--serif); font-size: clamp(5rem, 14vw, 11rem); line-height: 0.6; color: var(--accent); display: block; margin-bottom: 10px; }
.manifesto p { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 5vw, 4rem); line-height: 1.2; letter-spacing: -0.02em; max-width: 900px; margin: 0 auto; }
.manifesto p em { font-style: normal; color: var(--accent-glow); }
.manifesto cite { display: block; margin-top: 36px; font-style: normal; font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-dark); }

/* ---------- stats ---------- */
.stats-grid { display: grid; gap: 1px; background: var(--border); border-block: 1px solid var(--border); }
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat { background: var(--bg); padding: 44px 28px; }
.stat strong { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem, 6vw, 4rem); letter-spacing: -0.03em; line-height: 1; }
.stat span { display: block; margin-top: 14px; color: var(--muted); font-size: 0.92rem; }

/* ---------- work grid ---------- */
.work { background: var(--bg-alt); }
.work-grid { display: grid; gap: 28px; }
@media (min-width: 700px) { .work-grid { grid-template-columns: repeat(2, 1fr); } }
.work-card { background: var(--bg); border: 1px solid var(--border); border-radius: 6px; overflow: hidden; transition: transform .35s var(--ease), box-shadow .35s var(--ease); box-shadow: 0 4px 24px -4px rgba(0,0,0,0.08); }
.work-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px -8px rgba(0,0,0,0.14); }
.work-card__img { aspect-ratio: 16/10; overflow: hidden; background: var(--ink); }
.work-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.work-card:hover .work-card__img img { transform: scale(1.05); }
.work-card__body { padding: 28px 30px 32px; }
.work-card__tag { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); }
.work-card__body h3 { font-size: 1.5rem; margin: 14px 0 12px; font-weight: 500; }
.work-card__body p { color: var(--muted); font-size: 0.96rem; }

/* ---------- principles (text-only list) ---------- */
.principles-list { display: grid; gap: 0; border-top: 1px solid var(--border); }
.principle { display: grid; gap: 14px; padding: 38px 0; border-bottom: 1px solid var(--border); transition: padding-left .3s var(--ease); }
@media (min-width: 800px) { .principle { grid-template-columns: 90px 1fr 1.2fr; gap: 40px; align-items: start; } }
.principle:hover { padding-left: 10px; }
.principle__no { font-family: var(--mono); font-size: 13px; color: var(--accent); letter-spacing: 0.1em; }
.principle h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 400; }
.principle p { color: var(--muted); font-size: 1rem; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--border); max-width: 880px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px; text-align: left; padding: 28px 0; font-family: var(--serif); font-size: clamp(1.15rem, 2.4vw, 1.55rem); font-weight: 400; }
.faq-q .plus { flex: none; width: 26px; height: 26px; position: relative; }
.faq-q .plus::before, .faq-q .plus::after { content: ""; position: absolute; background: var(--accent); transition: transform .3s var(--ease); }
.faq-q .plus::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item[data-open="true"] .plus::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { color: var(--muted); padding-bottom: 28px; max-width: 64ch; font-size: 1rem; }
.faq-item[data-open="true"] .faq-a { max-height: 320px; }

/* ---------- CTA band ---------- */
.cta { background: var(--ink); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta .hero__orb { width: min(80vw, 640px); top: 120%; opacity: 0.4; animation: none; transform: translate(-50%, -50%); }
.cta h2 { position: relative; z-index: 2; font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 400; line-height: 1.05; max-width: 18ch; margin: 0 auto; }
.cta h2 em { font-style: normal; color: var(--accent-glow); }
.cta p { position: relative; z-index: 2; color: var(--muted-dark); margin: 24px auto 38px; max-width: 50ch; }
.cta__actions { position: relative; z-index: 2; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- contact ---------- */
.contact-grid { display: grid; gap: 52px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 80px; } }
.contact-info dl { display: grid; gap: 26px; margin: 0; }
.contact-info dt { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 6px; }
.contact-info dd { margin: 0; font-size: 1.05rem; color: var(--fg-soft); }
.form { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; font: inherit; font-size: 15px;
  border: 1px solid var(--border); border-radius: 4px; background: var(--bg); color: var(--fg);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(75,59,232,0.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form .btn { justify-self: start; margin-top: 6px; }

/* ---------- legal / prose ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 500; margin: 48px 0 16px; }
.prose h3 { font-size: 1.2rem; font-weight: 600; margin: 30px 0 10px; }
.prose p, .prose li { color: var(--fg-soft); font-size: 1rem; line-height: 1.78; }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- thanks ---------- */
.thanks { min-height: 80vh; display: grid; place-items: center; text-align: center; background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.thanks .hero__orb { width: min(70vw, 480px); opacity: 0.5; }
.thanks__inner { position: relative; z-index: 2; max-width: 560px; padding: 40px 24px; }
.thanks h1 { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 400; }
.thanks p { color: var(--muted-dark); margin: 22px 0 34px; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: #fff; padding: clamp(64px, 9vw, 110px) 0 40px; }
.footer__top { display: grid; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--border-dark); }
@media (min-width: 800px) { .footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; } }
.footer__brand .brand { color: #fff; margin-bottom: 20px; }
.footer__brand p { color: var(--muted-dark); max-width: 34ch; font-size: 0.95rem; }
.footer__col h4 { font-family: var(--mono); font-weight: 400; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-glow); margin-bottom: 18px; }
.footer__col a { display: block; color: var(--muted-dark); font-size: 0.95rem; padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-direction: column; gap: 14px; padding-top: 28px; color: var(--muted-dark); font-size: 0.84rem; }
@media (min-width: 700px) { .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[style*="--i"] { transition-delay: calc(var(--i) * 80ms); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__orb { animation: none; transform: translate(-50%, -50%); }
  html { scroll-behavior: auto; }
}

/* ---------- cookie popup ---------- */
.cookie-popup { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-end; justify-content: flex-start; padding: 24px; background: rgba(0,0,0,0.4); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.cookie-popup[data-open="true"] { opacity: 1; pointer-events: all; }
.cookie-popup__card { background: var(--bg); padding: 32px 36px; max-width: 480px; border-radius: 6px; box-shadow: 0 24px 70px -20px rgba(0,0,0,0.5); }
.cookie-popup__label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 14px; }
.cookie-popup__card h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 500; }
.cookie-popup__card p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }
.cookie-popup__actions { display: flex; gap: 12px; margin-top: 20px; }
.cookie-popup__actions button { padding: 11px 24px; border: 1px solid var(--border); cursor: pointer; font-size: 14px; border-radius: 9999px; transition: background .2s, color .2s; }
.cookie-popup__actions button:first-child:hover { background: var(--bg-alt); }
.cookie-popup__actions button:last-child { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.cookie-popup__actions button:last-child:hover { background: var(--accent); border-color: var(--accent); }

/* skip link */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--accent); color: #fff; padding: 10px 18px; z-index: 200; border-radius: 0 0 6px 0; }
.skip-link:focus { left: 0; }
