/* ============================================================
   CapQuick — paper white, ink black, signal yellow
   Editorial × Saul Bass × iOS native press kit
   ============================================================ */

:root {
  --paper:    #FAFAF7;
  --paper-2:  #F2EEE5;
  --ink:      #0A0A0A;
  --ink-2:    #5C5C5C;
  --ink-3:    #8A8A8A;
  --hairline: #DCD8D0;
  --hairline-strong: #B8B2A6;
  --yellow:   #FFE066;

  --display:  "Big Shoulders Display", "Work Sans", -apple-system, sans-serif;
  --body:     -apple-system, "SF Pro Display", "SF Pro", "DM Sans",
              system-ui, sans-serif;
  --mono:     "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --container: 1200px;
  --bezel: clamp(20px, 4vw, 56px);

  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  font-weight: 600;
  z-index: 100;
}
.skip-link:focus { left: 16px; top: 16px; outline: 2px solid var(--yellow); outline-offset: 2px; }

.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;
}

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

/* ============================================================
   Type primitives
   ============================================================ */
.mono {
  font-family: var(--mono);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.mono-eyebrow {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 16px;
}
.mono-eyebrow .num { color: var(--ink); font-weight: 600; }

.specs {
  display: flex;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.specs > * {
  padding: 8px 18px 8px 0;
  margin-right: 18px;
  border-right: 1px solid var(--hairline);
  white-space: nowrap;
}
.specs > *:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.specs strong { color: var(--ink); font-weight: 600; }

.rule { border: 0; height: 1px; background: var(--hairline); margin: 0; }
.rule-strong { background: var(--ink); height: 1px; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  padding: 14px 26px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: background 150ms, transform 150ms;
  text-decoration: none;
}
.btn:hover { background: #1c1c1c; transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--yellow); outline-offset: 3px; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* ============================================================
   Nav — paper-white, sticky, no glass
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms;
}
.nav.scrolled { border-bottom-color: var(--hairline); }
.nav-row {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
@media (min-width: 720px) {
  .nav-row { height: 88px; }
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
@media (min-width: 720px) {
  .brand-mark { width: 52px; height: 52px; border-radius: 13px; }
}
.brand-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(22px, 2vw, 26px);
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.nav-actions { display: flex; align-items: center; gap: 8px; }
.nav-actions a.lk {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 8px 14px;
  border-radius: 999px;
}
.nav-actions a.lk:hover { color: var(--ink); background: rgba(0,0,0,0.04); }
.nav .btn { padding: 10px 20px; font-size: 14px; }
@media (max-width: 540px) {
  .nav .btn { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { padding: 80px 0 64px; position: relative; }
@media (min-width: 1080px) {
  .hero { padding: 120px 0 96px; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}
.hero-meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-meta .dot {
  width: 8px; height: 8px;
  background: var(--ink);
  border-radius: 50%;
  display: inline-block;
}
.hero-meta .sep { color: var(--ink-3); }

.stack-headline {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(96px, 16vw, 220px);
  line-height: 0.82;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 40px;
}
.stack-headline span { display: block; }
.stack-headline .l1 { padding-left: 0; }
.stack-headline .l2 { padding-left: 0.18em; }
.stack-headline .l3 { padding-left: 0.05em; }

.deck {
  font-family: var(--body);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.55;
  max-width: 30em;
  color: var(--ink-2);
  margin: 0 0 36px;
}
.deck strong { color: var(--ink); font-weight: 600; }

.hero-cta-row {
  display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
  margin-bottom: 32px;
}
.hero-cta-row .meta {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}

/* ============================================================
   Phone — shows the app in action against paper.
   ============================================================ */
.phone-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}
.phone {
  width: clamp(240px, 30vw, 320px);
  aspect-ratio: 9 / 19.5;
  border-radius: 42px;
  background: linear-gradient(180deg, #1c1c1f 0%, #0c0c0e 100%);
  border: 1px solid rgba(0,0,0,0.18);
  padding: 6px;
  position: relative;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.18);
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 36px;
  background: #050505;
  position: relative;
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #000;
  border-radius: 14px;
  z-index: 4;
}
.phone-cam {
  position: absolute; right: 26px; top: 16px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(120,120,140,0.5);
  z-index: 5;
}
.phone-video-fallback {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,224,102,0.20) 0%, transparent 50%),
    linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  z-index: 0;
}
.phone-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
/* Suppress browser-native caption track rendering — our overlay handles captions */
.phone-media::cue { visibility: hidden; opacity: 0; }
video.phone-media::-webkit-media-text-track-display { display: none; }

.phone-record {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #FF3B30;
  border: 3px solid rgba(255,255,255,0.92);
  box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.5);
  animation: rec-pulse 2s ease-in-out infinite;
  z-index: 3;
}
@keyframes rec-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(255, 59, 48, 0); }
}
.phone-timer {
  position: absolute;
  top: 42px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(255,255,255,0.92);
  background: rgba(0,0,0,0.45);
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 3;
  letter-spacing: 0.02em;
}
.phone-caption {
  position: absolute;
  left: 4%; right: 4%;
  bottom: 28%;
  display: flex; justify-content: center;
  pointer-events: none;
  z-index: 3;
}
.phone-caption span {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(18px, 1.6vw, 24px);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  text-align: center;
  line-height: 1.05;
  -webkit-text-stroke: 3px #000;
  paint-order: stroke fill;
}
.phone-caption em {
  font-style: normal;
  color: var(--yellow);
}

/* ============================================================
   Section wrapper + heading pattern
   ============================================================ */
section.sec { padding: 96px 0; position: relative; }
@media (min-width: 1080px) {
  section.sec { padding: 128px 0; }
}
.sec-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 56px;
  max-width: 720px;
}
.sec-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}

/* ============================================================
   Problem section
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 980px) {
  .problem-grid { grid-template-columns: 1.2fr 1fr; gap: 80px; }
}
.problem-narrative p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.problem-narrative p:last-child {
  color: var(--ink);
  font-weight: 500;
}
.timer-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mono);
  font-size: 13px;
}
.timer-table th {
  font-weight: 500;
  text-align: left;
  color: var(--ink-3);
  padding: 12px 0;
  border-bottom: 1px solid var(--hairline);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
}
.timer-table td {
  padding: 18px 0;
  border-bottom: 1px solid var(--hairline);
  vertical-align: baseline;
}
.timer-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}
.timer-table td:nth-child(2) {
  font-family: var(--display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.02em;
  color: var(--ink);
  width: 30%;
  line-height: 1;
}
.timer-table tr.bad td:nth-child(2) {
  color: var(--ink-3);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}
.timer-table td:last-child {
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}

/* ============================================================
   Solution / 4 steps
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--hairline);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 720px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1080px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
  padding: 40px 32px 40px 0;
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  position: relative;
}
@media (min-width: 1080px) {
  .step:last-child { border-right: 0; }
}
.step .num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 80px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 16px;
}
.step h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  line-height: 1;
}
.step p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
  max-width: 22ch;
}
.step .tick {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: block;
}

.solution-tagline {
  margin-top: 56px;
  font-family: var(--mono);
  font-size: 14px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}
.solution-tagline strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   Features
   ============================================================ */
.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 720px) {
  .features { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1080px) {
  .features { grid-template-columns: 1fr 1fr 1fr; }
}
.feat {
  padding: 36px 32px 36px 0;
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
}
@media (min-width: 1080px) {
  .feat:nth-child(3n) { border-right: 0; }
}
@media (max-width: 1079px) and (min-width: 720px) {
  .feat:nth-child(2n) { border-right: 0; }
}
.feat .feat-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.feat h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  margin: 0 0 10px;
  line-height: 1.05;
}
.feat p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 32ch;
}

/* ============================================================
   Pricing
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
@media (min-width: 820px) {
  .pricing { grid-template-columns: 1fr 1fr; }
}
.price {
  padding: 56px 48px 56px 0;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 820px) {
  .price + .price {
    padding-left: 48px;
    border-left: 1px solid var(--hairline);
  }
}
.price-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 16px;
  display: inline-block;
  align-self: flex-start;
}
.price.pro .price-tag {
  background: var(--ink);
  color: var(--paper);
  padding: 4px 10px;
}
.price-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 56px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 24px;
}
.price-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(72px, 10vw, 140px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 0 0 8px;
}
.price-sub {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  margin: 0 0 32px;
}
.price ul {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 14px;
}
.price li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: baseline;
  font-size: 16px;
  color: var(--ink);
}
.price li::before {
  content: "✓";
  font-family: var(--mono);
  font-weight: 700;
  color: var(--ink);
}
.price .cta { margin-top: auto; align-self: flex-start; }
.pricing-note {
  padding: 32px 0 0;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: 0.04em;
}
.pricing-note strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { border-top: 1px solid var(--ink); }
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 28px 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  list-style: none;
  gap: 24px;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 32px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
  line-height: 1.05;
  color: var(--ink);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:focus-visible { outline: 2px solid var(--yellow); outline-offset: -2px; }
.faq-q .num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  font-weight: 500;
  width: 48px;
  flex-shrink: 0;
}
.faq-q .text { flex: 1; }
.faq-q .arrow {
  font-family: var(--mono);
  font-size: 20px;
  color: var(--ink);
  transition: transform 200ms;
  flex-shrink: 0;
}
.faq-item[open] .faq-q .arrow { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 28px 48px;
  max-width: 720px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  padding: 64px 0 40px;
  border-top: 1px solid var(--ink);
}
.footer-cta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 48px;
}
@media (min-width: 820px) {
  .footer-cta { grid-template-columns: 1.5fr 1fr; }
}
.footer-cta h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.footer-cta p {
  font-size: 17px;
  color: var(--ink-2);
  margin: 0;
}
.footer-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 720px) {
  .footer-row {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: end;
  }
}
.footer .brand-mark { width: 32px; height: 32px; border-radius: 8px; }
.footer .brand-name { font-size: 20px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-links a {
  color: var(--ink-2);
  padding: 6px 16px 6px 0;
  margin-right: 16px;
  border-right: 1px solid var(--hairline);
  transition: color 150ms;
}
.footer-links a:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.footer-links a:hover { color: var(--ink); }
.footer-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-align: left;
}
@media (min-width: 720px) {
  .footer-meta { text-align: right; }
}

/* ============================================================
   Long-form pages: Support, Privacy, Terms
   ============================================================ */
.page-hero {
  position: relative;
  padding: 80px 0 32px;
}
@media (min-width: 1080px) {
  .page-hero { padding: 120px 0 48px; }
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(72px, 10vw, 160px);
  line-height: 0.85;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin: 0 0 24px;
  color: var(--ink);
}
.page-hero p.lead {
  font-family: var(--body);
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-2);
  max-width: 640px;
  margin: 0;
  line-height: 1.5;
}
.page-hero p.lead strong { color: var(--ink); font-weight: 600; }

.page-body {
  padding: 32px 0 96px;
  position: relative;
}
@media (min-width: 1080px) {
  .page-body { padding: 48px 0 128px; }
}
.prose {
  max-width: 720px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
}
.prose h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 56px 0 18px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}
.prose h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 32px 0 12px;
}
.prose p { margin: 0 0 18px; color: var(--ink-2); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
  transition: text-decoration-color 150ms, background 150ms;
}
.prose a:hover {
  background: var(--yellow);
  text-decoration-color: var(--ink);
}
.prose ul, .prose ol {
  margin: 0 0 24px;
  padding-left: 22px;
  color: var(--ink-2);
}
.prose li { margin-bottom: 10px; }
.prose li::marker { color: var(--ink-3); }
.prose hr {
  border: 0;
  height: 1px;
  background: var(--ink);
  margin: 56px 0;
}
.prose code, .prose .mono-inline {
  font-family: var(--mono);
  font-size: 14px;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  padding: 2px 8px;
  border-radius: 0;
  color: var(--ink);
}

.contact-card,
.prose a.contact-card,
.prose a.contact-card:hover {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: var(--ink);
  color: var(--paper);
  margin: 0 0 32px;
  transition: background 150ms;
  text-decoration: none;
}
.contact-card:hover,
.prose a.contact-card:hover { background: #1c1c1c; }
.contact-card .ico {
  width: 44px; height: 44px;
  border: 1px solid var(--paper);
  color: var(--paper);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card a, .contact-card span {
  color: var(--paper);
  font-family: var(--mono);
  font-size: 16px;
  text-decoration: none;
}
.contact-card .meta {
  display: block;
  margin-top: 4px;
  color: rgba(250,250,247,0.65);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.page-tagline {
  text-align: left;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-top: 56px;
  text-transform: uppercase;
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
