:root {
  --paper: #f1eee7;
  --ink: #11110f;
  --orange: #ff5c35;
  --blue: #3157ff;
  --rule: rgba(17, 17, 15, 0.24);
  --pad: clamp(1.25rem, 4vw, 4.75rem);
  --display: Arial, "Helvetica Neue", sans-serif;
  --mono: Consolas, "Courier New", monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { background: var(--blue); color: #fff; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: white;
  transition: top 160ms ease;
}
.skip-link:focus { top: 1rem; }

.site-header {
  height: 72px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.wordmark, .header-cta { text-decoration: none; }
.wordmark { display: flex; align-items: center; gap: 0.65rem; font-weight: 500; }
.mark-dot { width: 0.65rem; height: 0.65rem; background: var(--orange); border-radius: 50%; }
.header-center { opacity: 0.58; }
.header-cta { justify-self: end; display: flex; gap: 0.5rem; border-bottom: 1px solid currentColor; padding-bottom: 0.18rem; }

.hero { min-height: calc(100vh - 72px); display: flex; flex-direction: column; padding: 1.35rem var(--pad) 0; }
.hero-meta, .section-kicker {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font: 0.66rem/1.4 var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hero-meta span:nth-child(2) { opacity: 0.55; }
.hero-title-wrap { position: relative; margin: auto 0; padding: clamp(3.5rem, 6vw, 7rem) 0 2rem; }
h1 {
  margin: 0;
  font-size: clamp(3.7rem, 10.5vw, 10.5rem);
  line-height: 0.82;
  letter-spacing: -0.085em;
  font-weight: 800;
}
.outline { color: transparent; -webkit-text-stroke: clamp(1px, 0.12vw, 2px) var(--ink); }
.approval-stamp {
  position: absolute;
  right: 2%;
  top: 3%;
  z-index: 2;
  width: clamp(7rem, 11vw, 10rem);
  aspect-ratio: 1;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transform: rotate(9deg);
  font: 0.6rem var(--mono);
  letter-spacing: 0.08em;
}
.approval-stamp strong { font-size: clamp(0.65rem, 1vw, 0.9rem); margin-top: 0.25rem; }
.hero-footer {
  padding: 1.75rem 0 2.25rem;
  border-top: 1px solid var(--ink);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1fr;
  align-items: end;
  gap: 3rem;
}
.hero-summary { max-width: 43rem; margin: 0; font-size: clamp(1rem, 1.6vw, 1.35rem); line-height: 1.45; font-weight: 500; }
.hero-actions { display: flex; gap: 0.75rem; justify-content: flex-end; flex-wrap: wrap; }
.button {
  min-height: 52px;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.25rem;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms ease, color 180ms ease;
}
.button:hover { transform: translate(-3px, -3px); box-shadow: 4px 4px 0 var(--ink); }
.button:active { transform: translate(0); box-shadow: none; }
.button-dark { background: var(--ink); color: white; }
.button-ghost { background: transparent; color: var(--ink); }
.button-ghost:hover { background: var(--orange); }
.ticker { margin: 0 calc(var(--pad) * -1); overflow: hidden; background: var(--orange); border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 2rem; padding: 0.75rem 1rem; animation: ticker 23s linear infinite; font: 0.7rem var(--mono); letter-spacing: 0.09em; }
.ticker-track i { width: 7px; height: 7px; border-radius: 50%; background: var(--ink); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-pad { padding: clamp(5rem, 10vw, 10rem) var(--pad); }
.section-kicker { padding-bottom: 1rem; border-bottom: 1px solid var(--rule); }
.section-kicker span:last-child { opacity: 0.55; }
.section-title { margin: clamp(2rem, 5vw, 5rem) 0; font-size: clamp(3rem, 7.3vw, 8rem); line-height: 0.88; letter-spacing: -0.075em; font-weight: 800; }
.section-title em { color: var(--orange); font-style: normal; }

.evidence-grid { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid var(--ink); }
.evidence-card { min-height: 27rem; padding: clamp(1.5rem, 3vw, 3rem); display: flex; flex-direction: column; border: 1px solid var(--ink); margin: -1px 0 0 -1px; }
.evidence-card h3 { max-width: 11ch; margin: auto 0 1rem; font-size: clamp(2rem, 3.3vw, 4.2rem); line-height: 0.95; letter-spacing: -0.055em; }
.evidence-card p { max-width: 35rem; margin: 0 0 2.5rem; font-size: 0.95rem; line-height: 1.6; }
.card-number, .card-tag { font: 0.65rem var(--mono); text-transform: uppercase; letter-spacing: 0.08em; }
.card-tag { align-self: flex-start; padding: 0.5rem 0.65rem; border: 1px solid currentColor; }
.card-orange { background: var(--orange); }
.card-blue { background: var(--blue); color: white; }
.card-invert { background: var(--ink); color: white; }

.numbers { background: var(--ink); color: var(--paper); }
.light { color: var(--paper); }
.numbers .section-kicker { border-color: rgba(255,255,255,0.25); }
.numbers-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(3rem, 8vw, 9rem); align-items: end; }
.numbers-note { max-width: 39rem; margin: 0; color: rgba(255,255,255,0.6); line-height: 1.7; }
.stats { margin: 0; }
.stat { padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.22); display: flex; justify-content: space-between; align-items: end; gap: 2rem; }
.stat:first-child { border-top-color: white; }
.stat dt { max-width: 11rem; font: 0.68rem/1.5 var(--mono); text-transform: uppercase; letter-spacing: 0.07em; opacity: 0.62; }
.stat dd { margin: 0; font-size: clamp(3.5rem, 7vw, 7rem); line-height: 0.8; font-weight: 700; letter-spacing: -0.07em; color: var(--orange); }

.profile-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(3rem, 8vw, 9rem); }
.profile-intro { position: sticky; top: 2rem; align-self: start; }
.profile .section-title { font-size: clamp(2.8rem, 5.7vw, 6.7rem); }
.profile-copy { max-width: 34rem; font-size: clamp(1.05rem, 1.5vw, 1.35rem); line-height: 1.55; }
.trait { display: grid; grid-template-columns: 3rem 1fr; padding: 2rem 0; border-top: 1px solid var(--ink); }
.trait:last-child { border-bottom: 1px solid var(--ink); }
.trait > span { grid-row: span 2; font: 0.7rem var(--mono); color: var(--orange); }
.trait h3 { margin: 0 0 0.6rem; font-size: clamp(1.6rem, 2.5vw, 2.8rem); letter-spacing: -0.045em; }
.trait p { margin: 0; opacity: 0.6; line-height: 1.55; }

.credentials { background: var(--blue); color: white; }
.credentials .section-kicker { border-color: rgba(255,255,255,0.28); }
.credentials-head { display: grid; grid-template-columns: 1.3fr 0.7fr; align-items: end; gap: 3rem; }
.credentials-head .section-title { font-size: clamp(3rem, 6.7vw, 7.5rem); }
.credentials-disclaimer { max-width: 31rem; margin: 0 0 clamp(2rem, 5vw, 5rem); font: 0.68rem/1.7 var(--mono); text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.62); }
.career-list { border-top: 1px solid white; }
.career-row { min-height: 10rem; padding: 1.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.32); display: grid; grid-template-columns: 0.6fr 1.2fr 1.5fr auto; gap: clamp(1rem, 3vw, 3rem); align-items: center; }
.career-year, .career-status { font: 0.64rem/1.5 var(--mono); text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.58); }
.career-company { font-size: clamp(2rem, 4.2vw, 4.8rem); line-height: 0.9; font-weight: 800; letter-spacing: -0.06em; }
.career-role h3 { margin: 0 0 0.45rem; font-size: clamp(1rem, 1.6vw, 1.35rem); }
.career-role p { max-width: 35rem; margin: 0; color: rgba(255,255,255,0.64); font-size: 0.82rem; line-height: 1.55; }
.career-status { padding: 0.55rem 0.65rem; border: 1px solid rgba(255,255,255,0.52); color: white; white-space: nowrap; }
.career-row.current { color: var(--orange); }
.career-row.current .career-role p, .career-row.current .career-year { color: rgba(255,92,53,0.72); }
.career-row.current .career-status { color: var(--orange); border-color: var(--orange); }
.qualification-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(4rem, 8vw, 8rem); border: 1px solid rgba(255,255,255,0.5); }
.qualification { min-height: 15rem; padding: 1.5rem; border: 1px solid rgba(255,255,255,0.5); margin: -1px 0 0 -1px; display: flex; flex-direction: column; }
.qualification > span { font: 0.62rem var(--mono); opacity: 0.5; }
.qualification h3 { margin: auto 0 0.7rem; font-size: clamp(1.35rem, 2vw, 2.2rem); letter-spacing: -0.04em; }
.qualification p { min-height: 3.6em; margin: 0; font-size: 0.78rem; line-height: 1.55; color: rgba(255,255,255,0.62); }

.quotes { display: grid; grid-template-columns: 1fr 0.65fr; grid-template-rows: 1fr auto; padding: 0 var(--pad) clamp(5rem, 10vw, 10rem); }
.quote-card { padding: clamp(2rem, 5vw, 5rem); border: 1px solid var(--ink); margin: -1px 0 0 -1px; display: flex; flex-direction: column; justify-content: space-between; min-height: 20rem; }
.quote-card p { margin: 0 0 4rem; font-size: clamp(1.75rem, 4vw, 4.75rem); line-height: 1; font-weight: 600; letter-spacing: -0.055em; }
.quote-card footer { font: 0.68rem var(--mono); text-transform: uppercase; letter-spacing: 0.06em; }
.quote-main { grid-row: span 2; background: var(--blue); color: white; min-height: 44rem; }
.quote-side { background: var(--orange); }
.quote-small { min-height: 13rem; }
.quote-small p { font-size: clamp(1.4rem, 2.3vw, 2.5rem); }

.objections { background: #dbd7cd; }
.accordion { border-top: 1px solid var(--ink); }
.accordion-item { border-bottom: 1px solid var(--ink); }
.accordion-item h3 { margin: 0; }
.accordion-item button { width: 100%; padding: 1.5rem 0; border: 0; background: transparent; color: inherit; text-align: left; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: clamp(1.15rem, 2.1vw, 2.15rem); font-weight: 600; letter-spacing: -0.03em; }
.accordion-icon { width: 2.5rem; height: 2.5rem; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; transition: transform 250ms var(--ease), background 250ms ease; }
.accordion-item button[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); background: var(--orange); }
.accordion-panel { overflow: hidden; }
.accordion-panel p { max-width: 54rem; margin: 0; padding: 0 4rem 2rem 0; font-size: 1rem; line-height: 1.7; }

.verdict { position: relative; overflow: hidden; min-height: 92vh; padding: clamp(5rem, 9vw, 9rem) var(--pad); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: var(--orange); color: var(--ink); }
.verdict-noise { position: absolute; left: 50%; top: 49%; transform: translate(-50%, -50%); color: transparent; -webkit-text-stroke: 1px rgba(17,17,15,0.14); font-size: clamp(20rem, 57vw, 60rem); font-weight: 800; letter-spacing: -0.12em; line-height: 0.8; pointer-events: none; }
.verdict > *:not(.verdict-noise) { position: relative; z-index: 1; }
.verdict-kicker { font: 0.7rem var(--mono); text-transform: uppercase; letter-spacing: 0.1em; }
.verdict h2 { margin: 2rem 0; font-size: clamp(3.7rem, 9vw, 9.4rem); line-height: 0.84; letter-spacing: -0.08em; }
.verdict h2 span { color: var(--paper); }
.verdict-copy { max-width: 46rem; margin: 0 0 2.5rem; line-height: 1.6; font-weight: 600; }
.verdict-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.button-light { background: var(--paper); color: var(--ink); }
.button-large { min-width: min(100%, 25rem); min-height: 62px; }
.copy-button { border: 0; border-bottom: 1px solid currentColor; background: transparent; cursor: pointer; padding: 0.2rem 0; font: 0.68rem var(--mono); text-transform: uppercase; letter-spacing: 0.06em; }
.vote-counter { margin-top: 2.5rem; display: flex; align-items: center; gap: 0.45rem; font: 0.68rem var(--mono); text-transform: uppercase; letter-spacing: 0.05em; }
.live-dot { width: 0.55rem; height: 0.55rem; border-radius: 50%; background: var(--blue); box-shadow: 0 0 0 5px rgba(49,87,255,0.15); }

.site-footer { min-height: 9rem; padding: 2rem var(--pad); background: var(--ink); color: white; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: end; gap: 2rem; font: 0.68rem/1.5 var(--mono); text-transform: uppercase; letter-spacing: 0.05em; }
.site-footer div { display: flex; flex-direction: column; }
.site-footer p { margin: 0; text-align: center; opacity: 0.5; }
.site-footer a { justify-self: end; }

.toast { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 50; min-width: min(23rem, calc(100vw - 2.5rem)); padding: 1rem 1.15rem; border: 1px solid var(--ink); background: var(--paper); box-shadow: 6px 6px 0 var(--ink); display: flex; flex-direction: column; transform: translateY(calc(100% + 3rem)); opacity: 0; transition: transform 350ms var(--ease), opacity 250ms ease; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast strong { font-size: 0.85rem; }
.toast span { margin-top: 0.2rem; font: 0.66rem var(--mono); opacity: 0.6; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

@media (max-width: 860px) {
  .site-header { grid-template-columns: 1fr 1fr; }
  .header-center { display: none; }
  .hero-meta span:nth-child(2) { display: none; }
  .hero-footer, .numbers-layout, .profile-grid { grid-template-columns: 1fr; }
  .credentials-head { grid-template-columns: 1fr; gap: 0; }
  .career-row { grid-template-columns: 0.65fr 1.35fr; }
  .career-role { grid-column: 1 / -1; }
  .career-status { grid-column: 2; grid-row: 1; justify-self: end; }
  .qualification-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { justify-content: flex-start; }
  .evidence-grid { grid-template-columns: 1fr; }
  .evidence-card { min-height: 23rem; }
  .profile-intro { position: static; }
  .quotes { grid-template-columns: 1fr; grid-template-rows: auto; }
  .quote-main { grid-row: auto; min-height: 31rem; }
  .site-footer { grid-template-columns: 1fr auto; }
  .site-footer p { display: none; }
}

@media (max-width: 560px) {
  :root { --pad: 1rem; }
  .site-header { height: 62px; }
  .header-cta { font-size: 0; }
  .header-cta span { font-size: 1rem; }
  .hero { min-height: calc(100svh - 62px); }
  .hero-meta span:last-child { text-align: right; }
  .hero-title-wrap { padding-top: 5rem; }
  h1 { font-size: clamp(3.3rem, 17vw, 5.8rem); }
  .approval-stamp { top: 0; right: 0; width: 6rem; }
  .hero-footer { gap: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .section-title { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .manifesto .section-title { font-size: clamp(2.1rem, 9vw, 3.25rem); }
  .credentials-head .section-title { font-size: clamp(2.1rem, 9vw, 3rem); }
  .evidence-card { padding: 1.35rem; min-height: 21rem; }
  .evidence-card h3 { font-size: 2.25rem; }
  .stat dd { font-size: 3.8rem; }
  .quotes { padding-left: 0; padding-right: 0; }
  .quote-card { border-left: 0; border-right: 0; }
  .quote-main { min-height: 28rem; }
  .trait { grid-template-columns: 2.2rem 1fr; }
  .career-row { grid-template-columns: 1fr auto; gap: 1rem; }
  .career-year { grid-column: 1; }
  .career-company { grid-column: 1 / -1; }
  .career-role { grid-column: 1 / -1; }
  .career-status { grid-column: 2; grid-row: 1; }
  .qualification-grid { grid-template-columns: 1fr; }
  .qualification { min-height: 13rem; }
  .verdict h2 { font-size: clamp(3.5rem, 16vw, 5.7rem); }
  .site-footer { min-height: 8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
