:root {
  --black: #212121;
  --ink: #000;
  --muted: rgb(0 0 0 / 60%);
  --faint: rgb(0 0 0 / 5%);
  --line: rgb(0 0 0 / 10%);
  --white: #fff;
  --serif: "Instrument Serif", ui-serif, Georgia, serif;
  --sans: "Geist", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Geist Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
}

button {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.hero {
  position: relative;
  padding: 104px 16px 96px;
}

.hero-inner {
  width: min(100%, 48rem);
  margin: 0 auto;
  text-align: center;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 30px;
  padding: 8px 14px 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgb(0 0 0 / 2%);
  color: var(--ink);
}

.brand-name {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-context {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.section-label {
  margin: 0 0 22px;
  color: rgb(0 0 0 / 40%);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(3rem, 7vw, 5.875rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hero-copy {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.25rem);
  line-height: 1.7;
}

.value-section {
  border-top: 1px solid var(--faint);
  padding: 88px 16px;
}

.proof-section {
  border-top: 1px solid var(--faint);
  padding: 30px 16px;
}

.section-wrap {
  width: min(100%, 72rem);
  margin: 0 auto;
}

.proof-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.proof-lead {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  font-weight: 600;
  line-height: 1.45;
}

.proof-lead strong {
  color: var(--ink);
  font-weight: 800;
}

.proof-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.proof-list li + li {
  border-left: 1px solid var(--line);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.value-card {
  min-height: 254px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  transition: border-color 300ms ease, box-shadow 300ms ease, transform 300ms ease;
}

.value-card:hover {
  border-color: rgb(0 0 0 / 20%);
  box-shadow: 0 22px 60px rgb(0 0 0 / 7%);
  transform: translateY(-2px);
}

.value-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgb(0 0 0 / 3%);
  color: rgb(0 0 0 / 60%);
  transition: background 300ms ease, color 300ms ease;
}

.value-card:hover .value-icon {
  background: var(--ink);
  color: var(--white);
}

.value-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-card h2 {
  margin-top: 22px;
  font-size: clamp(1.7rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.value-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.sample-section {
  border-top: 1px solid var(--faint);
  padding: 104px 16px;
  background: rgb(0 0 0 / 2%);
}

.sample-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.65fr);
  gap: 56px;
  align-items: start;
}

.sample-intro {
  position: sticky;
  top: 48px;
  padding-top: 8px;
}

.sample-intro .section-label {
  margin-bottom: 18px;
}

.sample-intro h2 {
  max-width: 360px;
  font-size: clamp(2.6rem, 5vw, 4.75rem);
  line-height: 0.96;
  text-wrap: balance;
}

.sample-intro p:not(.section-label) {
  max-width: 360px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.issue-preview {
  overflow: hidden;
  padding: clamp(30px, 4vw, 56px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 28px 80px rgb(0 0 0 / 6%);
  color: #111827;
}

.issue-brand,
.issue-meta,
.issue-count,
.issue-tag {
  margin: 0;
  color: rgb(17 24 39 / 42%);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.issue-preview h3,
.issue-preview h4,
.issue-preview h5 {
  margin: 0;
  font-family: var(--sans);
  letter-spacing: 0;
}

.issue-preview h3 {
  margin-top: 36px;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
}

.issue-subtitle {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgb(17 24 39 / 62%);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 650;
  line-height: 1.38;
}

.issue-meta {
  margin-top: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.issue-section {
  padding-top: 44px;
}

.issue-count {
  margin-bottom: 18px;
}

.issue-preview h4 {
  font-size: clamp(2.15rem, 4vw, 3.45rem);
  font-weight: 800;
  line-height: 1;
}

.issue-entry {
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.issue-entry:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.issue-entry h5 {
  max-width: 760px;
  margin-top: 24px;
  font-size: clamp(1.45rem, 2.35vw, 2rem);
  font-weight: 800;
  line-height: 1.16;
}

.issue-entry h5::after {
  content: "↗";
  display: block;
  margin-top: 8px;
  font-size: 0.8em;
  line-height: 1;
}

.issue-entry p:not(.issue-tag) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgb(17 24 39 / 62%);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.55;
}

.local-section {
  border-top: 1px solid var(--faint);
  padding: 112px 16px;
}

.local-card {
  width: min(100%, 42rem);
  margin: 0 auto;
  padding: 48px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgb(0 0 0 / 4%), transparent 32%),
    var(--white);
  text-align: center;
}

.local-card .section-label {
  margin-bottom: 18px;
}

.local-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.local-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.community-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 34rem);
  margin-top: 30px;
  margin-inline: auto;
}

.community-actions .secondary-button {
  width: 100%;
  margin-top: 0;
}

.community-actions .secondary-button:first-child {
  grid-column: 1 / -1;
}

.hero-form {
  width: min(100%, 560px);
  display: flex;
  gap: 14px;
  margin: 34px auto 0;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 22px 70px rgb(0 0 0 / 7%);
}

input {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--ink);
  font: 500 16px/1.2 var(--sans);
  padding: 0 20px;
  outline: none;
}

input::placeholder {
  color: rgb(0 0 0 / 35%);
}

input:focus {
  box-shadow: inset 0 0 0 1px rgb(0 0 0 / 12%);
}

button {
  flex: 0 0 auto;
  min-height: 60px;
  gap: 10px;
  padding: 0 24px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  transition: background 180ms ease;
}

button:hover {
  background: rgb(0 0 0 / 88%);
}

button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

button:hover svg {
  transform: translate(2px, -2px);
}

.secondary-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  transition: background 180ms ease, transform 180ms ease;
}

.secondary-button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.secondary-button svg circle {
  fill: none;
}

.secondary-button svg circle[cx="4"] {
  fill: currentColor;
  stroke: none;
}

.secondary-button:hover {
  background: rgb(0 0 0 / 88%);
  transform: translateY(-1px);
}

.secondary-button-light {
  background: var(--white);
  color: var(--ink);
}

.secondary-button-light:hover {
  background: rgb(0 0 0 / 4%);
}

.site-footer {
  background: var(--black);
  padding: 56px 16px;
}

.footer-inner {
  width: min(100%, 72rem);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin: 0 auto;
}

.footer-brand {
  margin: 0;
  color: var(--white);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-copy {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgb(255 255 255 / 48%);
  font-size: 15px;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgb(255 255 255 / 62%);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.3;
  transition: color 180ms ease;
}

.footer-links svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-links svg circle {
  fill: none;
}

.footer-links svg circle[cx="4"] {
  fill: currentColor;
  stroke: none;
}

.footer-links a:hover {
  color: var(--white);
}

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

@media (max-width: 1000px) {
  .sample-section {
    padding: 76px 16px;
  }

  .sample-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sample-intro {
    position: static;
  }

  .sample-intro h2,
  .sample-intro p:not(.section-label) {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 72px;
    padding-bottom: 68px;
  }

  .proof-band {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .proof-list {
    justify-content: flex-start;
  }

  .value-section {
    padding: 64px 16px;
  }

  .value-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .value-card {
    min-height: 0;
    padding: 28px;
  }

  .local-section {
    padding: 76px 16px 92px;
  }

  .footer-inner {
    display: grid;
    gap: 28px;
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 520px) {
  .hero {
    padding-inline: 18px;
    padding-top: 56px;
    padding-bottom: 54px;
  }

  .brand-lockup {
    flex-direction: column;
    gap: 7px;
    margin-bottom: 34px;
    padding: 10px 14px;
  }

  .brand-context {
    min-height: 0;
    padding-left: 0;
    padding-top: 7px;
    border-left: 0;
    border-top: 1px solid var(--line);
    font-size: 12px;
  }

  .brand-name {
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  h1 {
    font-size: clamp(2.85rem, 13vw, 3.55rem);
    line-height: 1.02;
  }

  .hero-copy {
    max-width: 345px;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-form {
    display: grid;
    gap: 8px;
    margin-top: 28px;
    padding: 7px;
    border-radius: 16px;
    box-shadow: 0 18px 48px rgb(0 0 0 / 6%);
  }

  input {
    min-height: 50px;
    padding: 0 16px;
    font-size: 15px;
  }

  .hero-form button {
    width: 100%;
    min-height: 54px;
    border-radius: 12px;
    font-size: 15px;
  }

  .proof-section {
    padding: 26px 16px 30px;
  }

  .proof-band {
    gap: 16px;
  }

  .proof-lead {
    font-size: 16px;
    line-height: 1.45;
  }

  .proof-list {
    display: grid;
    gap: 9px;
  }

  .proof-list li {
    width: 100%;
    min-height: 0;
    justify-content: flex-start;
    padding: 0;
    font-size: 13px;
  }

  .proof-list li + li {
    border-left: 0;
  }

  .sample-section {
    padding: 64px 16px;
  }

  .issue-preview {
    border-radius: 18px;
    padding: 28px 22px;
  }

  .issue-preview h3 {
    margin-top: 32px;
    font-size: clamp(2.55rem, 12vw, 3.25rem);
  }

  .issue-subtitle {
    margin-top: 20px;
    font-size: clamp(1.05rem, 5vw, 1.25rem);
  }

  .issue-meta {
    margin-top: 34px;
    padding: 22px 0;
  }

  .issue-section {
    padding-top: 40px;
  }

  .issue-entry {
    padding: 36px 0;
  }

  .local-card {
    border-radius: 20px;
    padding: 34px 24px;
  }

  .community-actions {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .secondary-button {
    width: 100%;
  }

  .site-footer {
    padding: 48px 16px;
  }

  .footer-copy {
    font-size: 14px;
  }
}
