/* Cuwebdesign LLC - Web Design Studio Desk theme */
/* Dark palette: desk-charcoal / drafting-slate / inkwell-black / designer-yellow / pencil-grey / studio-white */

:root {
  --charcoal: #1C1F26;
  --slate: #232732;
  --ink: #12141A;
  --ink-deep: #101219;
  --yellow: #F5C518;
  --grey: #8B93A5;
  --white: #ECEEF2;
  --line: #2E3542;
}

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

html {
  scroll-behavior: smooth;
}

.nav {
  width: 100%;
  background-color: #12141A;
}

.reveal {
  opacity: 1;
  transform: none;
}

footer,
.header-plain {
  display: block;
}

a {
  color: var(--yellow);
  text-decoration: none;
}

/* fade-up is only activated when JavaScript adds the js class to html,
   guaranteeing a safe fallback for no-JS visitors */
.reveal-up {
  opacity: 1;
  transform: none;
}

html.js .reveal-up {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  html.js .reveal-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  html.js .reveal-up.in-view {
    opacity: 1;
    transform: translateY(0);
  }
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
  background-color: var(--charcoal);
  color: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

code,
.spec-tag,
.counter-num,
.ruler-num {
  font-family: "SFMono-Regular", "JetBrains Mono", Consolas, monospace;
}

/* ============================================================
   NAV - WIREFRAME-RAIL NAV
   ============================================================ */
html nav,
html header {
  display: block;
}

body nav.wireframe-rail-nav {
  background-color: var(--slate);
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
}

/* artboard ruler band across the very top */
.ruler-band {
  background-color: var(--ink);
  height: 24px;
  overflow: hidden;
  position: relative;
}

.ruler-band .ruler-tick-mark {
  position: absolute;
  bottom: 0;
  width: 1px;
  background-color: var(--white);
}

.ruler-band .ruler-num {
  position: absolute;
  top: 2px;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 8px;
  letter-spacing: 0;
  font-family: "SFMono-Regular", Consolas, monospace;
}

.ruler-band .ruler-num strong,
.ruler-band .ruler-num span {
  font-weight: 400;
}

.ruler-band .ruler-tick-mark.short {
  height: 5px;
}

.ruler-band .ruler-tick-mark.mid {
  height: 7px;
}

.ruler-band .ruler-tick-mark.tall {
  height: 10px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.browser-glyph {
  flex: 0 0 auto;
}

.browser-mini {
  width: 22px;
  height: 17px;
  border: 1.5px solid var(--yellow);
  border-radius: 3px;
  position: relative;
  background-color: var(--ink);
}

.browser-mini .dots {
  display: flex;
  gap: 2.5px;
  padding: 3px 0 0 3px;
}

.browser-mini .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
}

.browser-mini .dot.r {
  background-color: #E5675D;
}

.browser-mini .dot.y {
  background-color: var(--yellow);
}

.browser-mini .dot.g {
  background-color: #7CC07E;
}

.brand-text .wordmark {
  font-size: 19px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
}

.brand-text .sub-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--grey);
  margin-top: 1px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-links li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links .link-sep {
  color: var(--yellow);
  font-size: 9px;
  user-select: none;
}

.nav-links a {
  color: var(--grey);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 4px 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--yellow);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--yellow);
  font-size: 20px;
  width: 42px;
  height: 38px;
  cursor: pointer;
  line-height: 1;
}

/* artboard ruler bottom ticks are embedded separately in HTML */

/* ============================================================
   HERO - PEN-TABLET HERO (two-deck composition)
   ============================================================ */
.pen-tablet-hero {
  background-color: var(--charcoal);
  overflow: hidden;
}

.hero-upper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 84px 24px 48px;
  text-align: center;
}

.eyebrow-chip {
  display: inline-block;
  background-color: var(--yellow);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 26px;
}

.hero-headline {
  font-size: 52px;
  line-height: 1.08;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}

.hero-headline .hl-yellow {
  color: var(--yellow);
}

.hero-headline br {
  display: none;
}

.hero-sub {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 18px;
  color: var(--grey);
}

.hero-cta-row {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 7px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background-color: var(--yellow);
  color: var(--ink);
}

.btn-primary:hover {
  background-color: #FFD633;
  color: var(--ink);
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
}

.btn-yellow {
  background-color: var(--yellow);
  color: var(--ink);
}

.btn-yellow:hover {
  background-color: #FFD633;
}

/* --- lower deck: studio desk band (~150px) --- */
.hero-desk {
  margin-top: 46px;
  background-color: var(--slate);
  border-top: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  padding: 26px 0 10px;
  overflow: hidden;
  position: relative;
}

.desk-stage {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 150px;
  position: relative;
  padding: 0 24px;
}

/* pen tablet + stylus */
.pen-tablet {
  position: absolute;
  left: 3%;
  top: 18px;
  width: 210px;
  height: 252px;
  background-color: var(--ink);
  border: 1px solid var(--slate);
  border-radius: 22px;
  box-shadow:
    0 24px 40px -18px #000000,
    inset 0 0 0 6px #1B1F28;
  transform: rotate(-2.5deg);
}

  .pen-tablet::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 2px solid var(--grey);
  border-radius: 14px;
  background-image: radial-gradient(circle at 90% 8%, #2A2E38 0, #232732 30%);
}

.pen-tablet .pen-btn {
  position: absolute;
  right: -2px;
  top: 96px;
  width: 14px;
  height: 42px;
  background-color: #3A4250;
  border-radius: 0 6px 6px 0;
}

.pen-tablet .pen-btn.upper {
  top: 96px;
  height: 20px;
}

/* stylus resting diagonally */
.stylus {
  position: absolute;
  left: 152px;
  top: 12px;
  width: 320px;
  height: 14px;
  background-color: var(--yellow);
  border-radius: 7px;
  transform: rotate(-24deg);
  transform-origin: center;
  box-shadow: 0 10px 16px -8px #000000;
  z-index: 2;
}

.stylus::before {
  content: "";
  position: absolute;
  right: -9px;
  top: 1px;
  width: 10px;
  height: 12px;
  background-color: var(--ink);
  border-radius: 50%;
}

.stylus::after {
  content: "";
  position: absolute;
  left: 6px;
  top: -2px;
  width: 30px;
  height: 18px;
  background-color: var(--ink);
  border-radius: 7px 4px 4px 7px;
}

/* browser wireframe sheet propped at an angle */
.browser-sheet {
  position: absolute;
  left: 34%;
  top: 8px;
  width: 300px;
  background-color: var(--white);
  border: 1px solid #C9CFDA;
  border-radius: 10px;
  padding: 10px;
  transform: rotate(1.6deg);
  box-shadow: 0 26px 40px -18px #000000;
}

.browser-sheet .sheet-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-bottom: 7px;
}

.browser-sheet .sb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--grey);
}

.browser-sheet .sb-dot.on {
  background-color: var(--yellow);
}

.browser-sheet .sheet-hero {
  height: 44px;
  background-color: #C6CBD6;
  border-radius: 3px;
  margin-bottom: 7px;
}

.browser-sheet .sheet-line {
  height: 5px;
  background-color: #D5D9E2;
  border-radius: 3px;
  margin-bottom: 5px;
}

.browser-sheet .sheet-pics {
  display: flex;
  gap: 6px;
  margin: 8px 0 7px;
}

.sheet-pics .pic-x {
  flex: 1;
  height: 40px;
  background-color: #C9CFDA;
  border: 1px dashed var(--grey);
  position: relative;
  border-radius: 3px;
}

.sheet-pics .pic-x::before,
.sheet-pics .pic-x::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 32px;
  height: 1px;
  background-color: var(--grey);
}

.sheet-pics .pic-x::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sheet-pics .pic-x::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sheet-line.short-width {
  width: 60%;
}

/* sticky notes */
.sticky-note {
  position: absolute;
  width: 92px;
  height: 92px;
  background-color: var(--yellow);
  box-shadow: 0 14px 24px -12px #000000;
}

.sticky-note.note-a {
  right: 16%;
  top: 30px;
  transform: rotate(7deg);
}

.sticky-note.note-b {
  right: 6%;
  top: 64px;
  transform: rotate(-6deg);
  background-color: #FFD633;
}

.sticky-note.note-a::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 20px;
  height: 20px;
  background-color: #C29C0E;
  transform: rotate(45deg);
  box-shadow: inset 0 0 0 1px #1A1E26;
}

.sticky-note .note-line {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 3px;
  background-color: #9C7D0C;
  border-radius: 2px;
}

.sticky-note .note-line.n1 {
  top: 26px;
}

.sticky-note .note-line.n2 {
  top: 42px;
}

.sticky-note .note-line.n3 {
  top: 58px;
  width: 50%;
}

/* marker highlighter lying flat */
.desk-marker {
  position: absolute;
  right: 30%;
  top: 8px;
  width: 150px;
  height: 16px;
  background-color: var(--yellow);
  border-radius: 8px;
  transform: rotate(-4deg);
  box-shadow: 0 8px 14px -6px #000000;
}

.desk-marker::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 34px;
  height: 100%;
  background-color: var(--ink);
  border-radius: 0 8px 8px 0;
}

.desk-marker::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 14px;
  height: 10px;
  background-color: #15171E;
  border-radius: 3px;
}

/* cutting mat sliver along bottom */
.cut-mat {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 44px;
  background-color: #2B3140;
  border-top: 1px solid var(--line);
}

.cut-mat .grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, #3A4150 0 1px, transparent 1px 22px),
    repeating-linear-gradient(0deg, #3A4150 0 1px, transparent 1px 22px);
}

.cut-mat .grid-lines.dense {
  background-image:
    repeating-linear-gradient(90deg, #333A47 0 1px, transparent 1px 6px),
    repeating-linear-gradient(0deg, #333A47 0 1px, transparent 1px 6px);
}

/* desk "working" ambient text annotation */
.desk-cap {
  position: absolute;
  right: 40px;
  bottom: 6px;
  color: var(--grey);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ============================================================
   GRID-PAPER ROWS
   ============================================================ */
.grid-paper-rows {
  background-color: var(--charcoal);
  padding: 90px 24px 70px;
}

.section-head {
  max-width: 1200px;
  margin: 0 auto 46px;
  position: relative;
}

.section-kicker {
  color: var(--yellow);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-head h2 {
  font-size: 40px;
  color: var(--white);
  margin-top: 8px;
  line-height: 1.12;
}

.section-lead {
  color: var(--grey);
  max-width: 640px;
  margin-top: 14px;
  font-size: 17px;
}

.rows-stack {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.service-row {
  background-color: var(--slate);
  border: 1px solid var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: stretch;
  min-height: 150px;
  position: relative;
  overflow: hidden;
}

/* artboard column carrying a wireframe thumbnail */
.artboard-column {
  flex: 0 0 128px;
  background-color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
}

.wireframe-thumb {
  width: 70px;
  height: 92px;
  background-color: var(--slate);
  border: 1px solid var(--grey);
  position: relative;
}

.wireframe-thumb .wf-nav {
  position: absolute;
  top: 7px;
  left: 6px;
  right: 6px;
  height: 6px;
  background-color: var(--grey);
  border-radius: 1px;
}

.wireframe-thumb .wf-body {
  position: absolute;
  top: 18px;
  left: 6px;
  width: 56px;
  height: 26px;
  background-color: #3A4150;
  border-radius: 2px;
}

.wireframe-thumb .wf-b {
  position: absolute;
  left: 6px;
  width: 30px;
  height: 6px;
  background-color: var(--grey);
  border-radius: 1px;
}

.wireframe-thumb .wf-line-group {
  position: absolute;
  height: 30px;
  top: 52px;
  left: 6px;
  right: 6px;
}

.wireframe-thumb .wf-line-group .wf-b {
  position: static;
  display: block;
  width: 100%;
  margin-bottom: 3px;
  background-color: #3A4150;
}

/* layout variants */
.wf-split .wf-body {
  width: 26px;
}

.wf-split .wf-right-col {
  position: absolute;
  top: 18px;
  left: 36px;
  width: 26px;
  height: 26px;
  background-color: #6E5E1A;
  border-radius: 2px;
}

.wf-grid .wf-cells {
  position: absolute;
  top: 18px;
  left: 6px;
  width: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background-color: transparent;
}

.wf-grid .wf-cells span {
  height: 11px;
  background-color: #3A4150;
  border-radius: 2px;
}

.wf-sidebar .wf-body {
  width: 30px;
  height: 22px;
}

.wf-sidebar .wf-side {
  position: absolute;
  top: 18px;
  right: 6px;
  width: 20px;
  height: 50px;
  background-color: #6E5E1A;
  border-radius: 2px;
}

.wf-dashboard .wf-cells.long {
  grid-template-columns: 1fr;
  top: 20px;
}

.service-body {
  flex: 1;
  padding: 26px 26px 24px;
}

.service-body h3 {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-body p {
  color: var(--grey);
  max-width: 720px;
}

.spec-tag {
  flex: 0 0 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 9px;
  border-left: 1px solid var(--line);
  background-color: var(--ink-deep);
  padding: 18px;
}

.spec-tag span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.spec-tag .dot {
  width: 6px;
  height: 6px;
  background-color: var(--yellow);
  border-radius: 50%;
}

/* ============================================================
   METRIC BAND
   ============================================================ */
.metric-band {
  background-color: var(--ink);
  padding: 54px 24px;
}

.metric-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.metric-cell {
  padding: 18px 30px;
  text-align: center;
  position: relative;
}

.metric-cell + .metric-cell::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background-color: var(--yellow);
}

.counter-num {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.metric-cell .metric-label {
  margin-top: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--yellow);
  font-weight: 700;
}

/* ============================================================
   STATEMENT BAND
   ============================================================ */
.statement-band {
  background-color: var(--slate);
  padding: 78px 24px;
}

.statement-inner {
  max-width: 900px;
  margin: 0 auto;
  border-left: 4px solid var(--yellow);
  padding: 6px 0 6px 40px;
}

.statement-inner p {
  font-size: 26px;
  line-height: 1.45;
  color: var(--white);
  font-weight: 600;
}

.statement-attr {
  margin-top: 22px;
  color: var(--grey);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background-color: var(--charcoal);
  padding: 90px 24px;
  text-align: center;
}

.cta-inner {
  max-width: 820px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-size: 40px;
  color: var(--yellow);
  line-height: 1.15;
}

.cta-inner .cta-sub {
  color: var(--grey);
  font-size: 18px;
  margin: 18px auto 32px;
  max-width: 620px;
}

/* ============================================================
   FOOTER - STYLUS-CLIP FOOTER
   ============================================================ */
.stylus-clip-footer {
  background-color: var(--ink);
  border-top: 1px solid var(--line);
}

/* marker tray strip on top */
.marker-tray {
  background-color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding: 18px 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.tray-ledger {
  height: 5px;
  background-color: var(--charcoal);
  border-radius: 3px;
}

.marker-bar {
  width: 96px;
  height: 15px;
  border-radius: 4px;
  position: relative;
}

.marker-bar .cap {
  position: absolute;
  right: 0;
  top: 0;
  width: 22px;
  height: 100%;
  background-color: var(--ink);
  border-radius: 0 4px 4px 0;
}

.marker-yellow {
  background-color: var(--yellow);
}

.marker-white {
  background-color: var(--white);
}

.marker-grey {
  background-color: var(--grey);
}

.mark-cap {
  margin-top: -4px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.mark-cap .tray-cap {
  height: 5px;
  background-color: var(--white);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 46px 24px 26px;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.2fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.footer-zone .f-glyph {
  margin-bottom: 14px;
}

.footer-zone .f-wordmark {
  font-size: 18px;
  letter-spacing: 0.16em;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.footer-zone .descriptor {
  color: var(--grey);
  font-size: 14px;
  max-width: 250px;
}

.link-groups {
  display: flex;
  gap: 44px;
}

.link-group h4 {
  color: var(--grey);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
}

.link-group a {
  display: block;
  color: var(--white);
  font-size: 15px;
  margin-bottom: 8px;
}

.link-group a:hover {
  color: var(--yellow);
}

.contact-stack {
  color: var(--white);
  font-size: 15px;
  line-height: 1.9;
}

.contact-stack .contact-item {
  display: block;
}

.contact-stack a {
  color: var(--white);
}

.contact-stack a:hover {
  color: var(--yellow);
}

.footer-legal {
  border-top: 1px solid var(--line);
}

.footer-legal-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  text-align: center;
  color: var(--grey);
  font-size: 13px;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}

/* decorative watermark behind content must be hidden */
.footer-watermark,
.footer-deco {
  visibility: hidden;
}

/* ============================================================
   REUSABLE section helper
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-headline {
    font-size: 42px;
  }
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
  .metric-cell + .metric-cell::before {
    display: none;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .service-row {
    flex-wrap: wrap;
  }
  .artboard-column {
    flex-basis: 100%;
    height: 90px;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .spec-tag {
    flex-basis: 100%;
    flex-direction: row;
    border-left: none;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
  }
  .sticky-note,
  .desk-marker,
  .browser-sheet,
  .pen-tablet,
  .stylus {
    display: none;
  }
  .desk-stage {
    min-height: 40px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }
  .nav-right {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--ink);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 22px;
    display: none;
  }
  body.nav-open .nav-right {
    display: flex;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .nav-links .link-sep {
    display: none;
  }
  .nav-links a {
    font-size: 16px;
  }
  .hero-headline {
    font-size: 36px;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .statement-inner p {
    font-size: 21px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ruler-num {
    font-size: 7px;
  }
}

@media (max-width: 520px) {
  .metric-grid {
    grid-template-columns: 1fr;
  }
  .marker-tray .marker-bar {
    width: 70px;
  }
}

/* ============================================================
   INNER PAGE (services / contact) shared blocks
   ============================================================ */
.inner-hero {
  background-color: var(--charcoal);
  border-bottom: 2px solid var(--yellow);
  padding: 70px 24px 64px;
}

.inner-hero h1 {
  font-size: 44px;
  color: var(--white);
  letter-spacing: 0.01em;
  max-width: 900px;
}

.inner-hero .inner-sub {
  color: var(--grey);
  font-size: 18px;
  max-width: 720px;
  margin-top: 18px;
}

.inner-hero .section-kicker {
  margin-bottom: 12px;
}

.detail-section {
  background-color: var(--charcoal);
  padding: 70px 24px;
}

.detail-section + .detail-section {
  border-top: 1px solid var(--line);
}

.detail-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.detail-body h2 {
  font-size: 32px;
  color: var(--white);
  margin-bottom: 14px;
}

.detail-body h2 .n {
  color: var(--yellow);
  margin-right: 10px;
  font-size: 22px;
  font-weight: 700;
}

.detail-body p {
  color: var(--grey);
  margin-bottom: 14px;
}

.detail-body ul.feature-list {
  list-style: none;
  margin: 12px 0 0;
  padding-left: 0;
}

.detail-body ul.feature-list li {
  position: relative;
  padding: 6px 0 6px 26px;
  color: var(--white);
  border-left: 3px solid var(--yellow);
  text-indent: 0;
  margin: 0;
}

.detail-body ul.feature-list li:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.detail-note {
  background-color: var(--slate);
  border: 1px solid var(--yellow);
  border-radius: 10px;
  padding: 18px 22px;
}

.detail-note h4 {
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.detail-note p {
  color: var(--white);
  margin: 6px 0;
  font-size: 15px;
}

/* process steps */
.process-band {
  background-color: var(--ink);
  padding: 70px 24px;
}

.process-band .section-head h2 {
  color: var(--white);
}

.process-steps {
  max-width: 1100px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.process-step {
  background-color: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  position: relative;
}

.process-step .step-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 26px;
  font-weight: 800;
  color: var(--grey);
  font-family: "SFMono-Regular", Consolas, monospace;
}

.process-step h3 {
  color: var(--yellow);
  font-size: 16px;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--grey);
  font-size: 15px;
}

.prose-cta {
  color: var(--grey);
  max-width: 900px;
  line-height: 1.7;
}

@media (max-width: 760px) {
  .inner-hero h1 {
    font-size: 34px;
  }
  .detail-body h2 {
    font-size: 26px;
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: start;
}

.contact-info h2 {
  font-size: 28px;
  color: var(--white);
  margin: 0 0 18px;
}

.contact-card {
  background-color: var(--slate);
  border: 1px solid var(--yellow);
  border-radius: 12px;
  padding: 26px;
  margin-bottom: 26px;
}

.contact-card h3 {
  color: var(--yellow);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

.contact-card .detail-line {
  color: var(--white);
  font-size: 16px;
  line-height: 1.8;
  display: block;
}

.contact-card .detail-line a {
  color: var(--white);
}

.contact-card .detail-line a:hover {
  color: var(--yellow);
}

.contact-card .detail-label {
  color: var(--grey);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 12px;
}

.contact-desc {
  color: var(--grey);
  margin-bottom: 26px;
  font-size: 16px;
}

/* form */
.form-panel {
  background-color: var(--slate);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
}

.form-panel h2 {
  color: var(--white);
  font-size: 26px;
  margin-bottom: 6px;
}

.form-panel .form-intro {
  color: var(--grey);
  font-size: 15px;
  margin-bottom: 22px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-group label span {
  color: var(--yellow);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  color: var(--white);
  background-color: var(--charcoal);
  border: 1px solid #39404E;
  border-radius: 7px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 2px solid var(--yellow);
  outline-offset: 1px;
  border-color: var(--yellow);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-status {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 7px;
  font-size: 15px;
  display: none;
}

.form-status.success {
  display: block;
  background-color: #2A3A2C;
  color: #Dff2E0;
  border: 1px solid #4C7A50;
}

.form-status.error {
  display: block;
  background-color: #4A2B24;
  color: #F3D7CC;
  border: 1px solid #8A4634;
}

/* FAQ */
.faq-section {
  background-color: var(--charcoal);
  padding: 0 24px 80px;
}

.faq-section h2 {
  color: var(--white);
  font-size: 30px;
  margin-bottom: 26px;
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--slate);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item + .faq-item {
  border-top: 1px solid var(--line);
}

.faq-item .faq-q {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  font-family: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item .faq-q .faq-trigger {
  color: var(--yellow);
  font-size: 22px;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.faq-item .faq-q[aria-expanded="true"] .faq-trigger {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-a p {
  padding: 0 22px 20px;
  color: var(--grey);
  line-height: 1.7;
}

.faq-item .faq-a p {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

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