/* ==========================================================
   propxpraman — minimal monochrome design system
   Pure black & white. No color. No noise.
   ========================================================== */

/* ----- TOKENS ----- */
:root {
  --black: #000000;
  --ink: #0A0A0A;
  --ink-2: #1A1A1A;
  --ink-3: #2A2A2A;
  --mid: #555555;
  --mid-2: #767676;
  --gray: #999999;
  --gray-2: #C4C4C4;
  --line: #E5E5E5;
  --line-2: #EFEFEF;
  --panel: #F7F7F7;
  --panel-2: #FAFAFA;
  --white: #FFFFFF;

  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  --max-w: 1200px;
  --max-w-text: 720px;
  --gutter: 28px;

  --h1: clamp(40px, 6vw, 88px);
  --h2: clamp(32px, 4vw, 56px);
  --h3: clamp(22px, 2.5vw, 32px);
  --h4: 19px;
  --body: 16px;
  --small: 13px;
  --micro: 11px;
}

/* ----- RESET ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; padding: 0; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--ink); color: var(--white); }

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--black);
}
h1 { font-size: var(--h1); letter-spacing: -0.035em; }
h2 { font-size: var(--h2); letter-spacing: -0.025em; }
h3 { font-size: var(--h3); letter-spacing: -0.02em; }
h4 { font-size: var(--h4); }
p { margin: 0; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--micro);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mid);
}
.lead {
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--ink-2);
}
.mono { font-family: var(--font-mono); }
em { font-style: italic; font-family: var(--font-display); font-weight: 400; }
strong { font-weight: 600; }

/* ----- LAYOUT ----- */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap-text { max-width: var(--max-w-text); margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; }
.section { padding: clamp(72px, 10vh, 128px) 0; }
.section-tight { padding: clamp(48px, 7vh, 80px) 0; }
.section + .section { border-top: 1px solid var(--line); }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ----- NAV ----- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--black);
}
.brand-text-light { color: var(--mid); font-weight: 400; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 14px;
  color: var(--ink-2);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--black);
  transition: width 0.25s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 18px;
  background: var(--black);
  color: var(--white) !important;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.15s ease;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--ink-3); transform: translateY(-1px); }

.nav-burger {
  display: none;
  width: 28px;
  height: 22px;
  position: relative;
  background: none;
  border: none;
}
.nav-burger span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--black);
  transition: all 0.3s ease;
}
.nav-burger span:nth-child(1) { top: 2px; }
.nav-burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-burger span:nth-child(3) { bottom: 2px; }
.nav-burger.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-links {
    position: fixed;
    inset: 60px 0 0 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 32px var(--gutter);
    border-top: 1px solid var(--line);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    align-items: flex-start;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 22px; padding: 16px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-cta { margin-top: 16px; width: 100%; text-align: center; }
  .nav-burger { display: block; }
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); }
.btn-light {
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
}
.btn-light:hover { background: var(--black); color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--black);
  padding: 14px 0;
  border-bottom: 1px solid var(--black);
}
.btn-ghost:hover { gap: 14px; }
.btn .arrow { transition: transform 0.2s ease; }
.btn-dark:hover .arrow,
.btn-light:hover .arrow { transform: translateX(4px); }

/* ----- HERO ----- */
.hero {
  padding: clamp(64px, 10vh, 120px) 0 clamp(56px, 8vh, 96px);
  position: relative;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  margin-bottom: 32px;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--black);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-eyebrow span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.hero h1 { max-width: 1000px; margin-bottom: 28px; }
.hero .lead { max-width: 600px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.hero-meta {
  display: flex;
  gap: 0;
  margin-top: 72px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-meta-item {
  flex: 1;
  min-width: 140px;
  padding-right: 24px;
  border-right: 1px solid var(--line);
}
.hero-meta-item:last-child { border-right: none; }
.hero-meta-item .num {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.hero-meta-item .lbl {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media (max-width: 700px) {
  .hero-meta { flex-direction: column; gap: 20px; }
  .hero-meta-item { border-right: none; padding-right: 0; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
  .hero-meta-item:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ----- SECTION HEADS ----- */
.section-head { margin-bottom: clamp(40px, 6vh, 64px); max-width: 800px; }
.section-head .eyebrow { display: inline-block; margin-bottom: 18px; }
.section-head .lead { margin-top: 18px; }

/* ----- TWO-COL ----- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.two-col.center { align-items: center; }
.two-col.split-3-2 { grid-template-columns: 3fr 2fr; }
.two-col.split-2-3 { grid-template-columns: 2fr 3fr; }
@media (max-width: 900px) {
  .two-col, .two-col.split-3-2, .two-col.split-2-3 {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ----- FEATURE GRID ----- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.feature-grid > * {
  background: var(--white);
  padding: 36px 32px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: block;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.2;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--mid);
  line-height: 1.6;
}

/* ----- STEPS ----- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step-card { padding-top: 28px; border-top: 2px solid var(--black); }
.step-card .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 10px;
}
.step-card p { font-size: 14px; color: var(--mid); line-height: 1.55; }

/* ----- PRICING ----- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
  transition: all 0.2s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--black);
}
.price-card.featured {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.price-card.featured::before {
  content: "POPULAR";
  position: absolute;
  top: -10px;
  left: 32px;
  background: var(--white);
  color: var(--black);
  padding: 3px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  font-weight: 500;
  border: 1px solid var(--black);
}
.price-tier {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
}
.price-card.featured .price-tier { color: var(--gray-2); }
.price-amt {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.price-unit { font-size: 13px; color: var(--mid); margin-bottom: 8px; }
.price-card.featured .price-unit { color: var(--gray-2); }
.price-target {
  font-size: 13.5px;
  color: var(--ink-2);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.price-card.featured .price-target {
  color: var(--gray-2);
  border-color: rgba(255,255,255,0.15);
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.price-features li {
  font-size: 13.5px;
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.price-features li::before {
  content: "—";
  color: var(--mid);
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card.featured .price-features li::before { color: var(--gray-2); }
.price-card .btn { width: 100%; justify-content: center; }
.price-card.featured .btn-dark { background: var(--white); color: var(--black); }
.price-card.featured .btn-dark:hover { background: var(--gray-2); }

/* ----- FAQ ----- */
.faq { max-width: 880px; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.faq-q {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-size: 24px;
  color: var(--black);
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.65;
  margin-top: 14px;
  max-width: 720px;
}

/* ----- VERIFY MOCK ----- */
.verify-stage {
  background: var(--panel-2);
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
}
.verify-tabs {
  display: flex;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.verify-tab {
  flex: 1;
  padding: 18px 20px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  border-right: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.verify-tab:last-child { border-right: none; }
.verify-tab.active {
  color: var(--black);
  background: var(--panel-2);
}
.verify-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--black);
}
.verify-panel { padding: 48px; min-height: 380px; }
@media (max-width: 600px) { .verify-panel { padding: 32px 24px; } }
.verify-panel.hidden { display: none; }

.upload-zone {
  border: 2px dashed var(--gray-2);
  padding: 40px;
  text-align: center;
  background: var(--white);
  transition: all 0.2s ease;
  cursor: pointer;
}
.upload-zone:hover {
  border-color: var(--black);
  background: var(--panel);
}
.upload-zone .icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 16px;
  stroke: var(--ink-2);
}
.upload-zone h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 8px;
}
.upload-zone p {
  font-size: 13px;
  color: var(--mid);
}
.uploaded-list { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.uploaded-doc {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--line);
}
.uploaded-doc .doc-ico {
  width: 24px;
  height: 24px;
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.uploaded-doc .doc-name { flex: 1; font-size: 13.5px; }
.uploaded-doc .doc-status {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mid);
  letter-spacing: 0.1em;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
}
.process-step .check {
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.process-step.done .check {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.process-step.active .check { border-color: var(--black); }
.process-step .check svg { width: 12px; height: 12px; }
.process-step h5 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.process-step p { font-size: 12.5px; color: var(--mid); }

.report-preview .report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.report-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--mid);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.report-addr {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 6px;
}
.report-loc { font-size: 13px; color: var(--mid); }
.report-score-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}
.report-score-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 4px;
}
.report-modules {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-bottom: 28px;
}
@media (max-width: 700px) { .report-modules { grid-template-columns: 1fr 1fr; } }
.report-module-cell {
  background: var(--white);
  padding: 20px 18px;
}
.report-module-cell .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.report-module-cell .val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 6px;
}
.report-module-cell .sub { font-size: 12px; color: var(--mid); }

.verdict-box {
  padding: 28px;
  background: var(--black);
  color: var(--white);
}
.verdict-box .verdict-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 16px;
}
.verdict-box p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--white);
}

/* ----- FOOTER ----- */
.footer {
  padding: 72px 0 32px;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand .brand-text { font-size: 22px; }
.footer-tagline {
  color: var(--mid);
  font-size: 14px;
  margin-top: 12px;
  max-width: 280px;
  line-height: 1.55;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mid);
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: 13.5px; }
.footer-col a {
  color: var(--ink-2);
  transition: color 0.2s;
  position: relative;
}
.footer-col a:hover { color: var(--black); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--mid);
  font-family: var(--font-mono);
  flex-wrap: wrap;
  gap: 12px;
}

/* ----- ARTICLE / GUIDE PAGES ----- */
.article {
  padding: clamp(48px, 8vh, 80px) 0 clamp(64px, 10vh, 120px);
}
.article-header { max-width: 720px; margin: 0 auto 56px; }
.article-breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.article-breadcrumb a { color: var(--mid); transition: color 0.2s; }
.article-breadcrumb a:hover { color: var(--black); }
.article-breadcrumb .sep { margin: 0 8px; color: var(--gray); }
.article h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.article-meta {
  display: flex;
  gap: 16px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.article-meta .dot { width: 3px; height: 3px; background: var(--gray); border-radius: 50%; }
.article-summary {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-2);
  padding: 24px 28px;
  background: var(--panel-2);
  border-left: 3px solid var(--black);
  margin-bottom: 0;
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--ink);
}
.article-body h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 56px 0 20px;
  letter-spacing: -0.02em;
}
.article-body h3 {
  font-size: clamp(20px, 2.4vw, 24px);
  margin: 40px 0 14px;
}
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 24px; padding-left: 24px; }
.article-body li { margin-bottom: 10px; }
.article-body a {
  color: var(--black);
  border-bottom: 1px solid var(--gray-2);
  transition: border-color 0.2s;
}
.article-body a:hover { border-color: var(--black); }
.article-body code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--panel);
  padding: 2px 6px;
  border: 1px solid var(--line);
}
.article-body blockquote {
  margin: 32px 0;
  padding: 0 0 0 24px;
  border-left: 3px solid var(--black);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.45;
  font-weight: 400;
  color: var(--black);
  font-style: italic;
}
.article-body .callout {
  margin: 32px 0;
  padding: 24px 28px;
  background: var(--panel);
  border-left: 3px solid var(--black);
}
.article-body .callout h4 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 10px;
}
.article-body .callout p:last-child { margin-bottom: 0; }
.article-related {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.article-related h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin-bottom: 24px;
}
.related-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 700px) { .related-list { grid-template-columns: 1fr; } }
.related-link {
  background: var(--white);
  padding: 24px 28px;
  transition: background 0.2s;
}
.related-link:hover { background: var(--panel); }
.related-link .tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.related-link h4 {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.article-cta {
  margin: 64px 0 0;
  padding: 48px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}
.article-cta h3 {
  color: var(--white);
  margin-bottom: 12px;
}
.article-cta p {
  color: var(--gray-2);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.article-cta .btn-light { border-color: var(--white); }

/* ----- CONTACT FORM ----- */
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--black);
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

/* ----- LEGAL PAGES (privacy/terms) ----- */
.legal-page { padding: clamp(48px, 7vh, 80px) 0; }
.legal-page h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 24px;
}
.legal-page .legal-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 48px;
}
.legal-page h2 {
  font-size: 22px;
  margin: 40px 0 16px;
}
.legal-page p, .legal-page li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 14px;
}

/* ----- REVEAL ----- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ----- UTILITY ----- */
.text-center { text-align: center; }
.text-mid { color: var(--mid); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 32px; }
.hide-mobile { }
@media (max-width: 600px) { .hide-mobile { display: none; } }
