* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
body {
  margin: 0;
  background: #fff;
  color: #080808;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-underline-offset: 0.25em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
p,
h1,
h2,
h3,
figure {
  margin: 0;
}
button,
input,
textarea,
a {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid #333;
  outline-offset: 6px;
}
.page-width {
  width: calc(100% - 7rem);
  max-width: 1440px;
  margin-inline: auto;
}
.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;
}
.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 100;
  background: #fff;
  padding: 1rem;
}
.skip-link:focus {
  top: 1rem;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 2.5rem 2rem;
}
.brand {
  width: 146px;
}
.header-link {
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  gap: 1rem;
  align-items: center;
  min-height: 44px;
}
.header-link span {
  font-size: 1.25rem;
}
.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 4rem;
  align-items: center;
  padding-block: 2.25rem 5.5rem;
}
.hero-title {
  width: 100%;
  max-width: 590px;
}
.hero-title img {
  width: 100%;
}
.hero-benefit {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.04em;
  margin-top: 2rem;
}
.hero-description {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #616161;
  max-width: 350px;
  margin-top: 1.125rem;
}
.download {
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-top: 2rem;
}
.app-store-badge {
  display: block;
  width: 180px;
  height: auto;
}
.download-note {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #666;
}
.hero-art {
  align-self: stretch;
  min-height: 550px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.hero-art > img {
  width: 100%;
  height: 100%;
  min-height: 550px;
  object-fit: cover;
  object-position: 50% 50%;
}
.hero-art figcaption {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 0.75rem;
  color: #666;
}
.app-section {
  border-top: 1px solid #ddd;
  padding-block: 5rem;
}
.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.display-title {
  max-width: 375px;
}
.display-title img {
  width: 100%;
}
.intro-copy {
  max-width: 480px;
  font-size: 1.125rem;
  line-height: 1.6;
}
.intro-copy p + p {
  margin-top: 1rem;
  color: #666;
}
.site-footer {
  border-top: 1px solid #ddd;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding-block: 2.5rem;
}
.footer-brand {
  width: 105px;
}
.site-footer > p {
  font-size: 0.875rem;
  color: #686868;
}
.site-footer nav {
  display: flex;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.site-footer nav a {
  font-size: 0.875rem;
  text-decoration: none;
  padding-block: 0.5rem;
}
.site-footer nav a:hover {
  text-decoration: underline;
}
.copyright {
  grid-column: 1/-1;
  font-size: 0.75rem;
  color: #777;
}
@media (min-width: 1600px) {
  .hero-art,
  .hero-art > img {
    min-height: 640px;
  }
}
@media (max-width: 1000px) {
  .page-width {
    width: calc(100% - 4rem);
  }
  .hero {
    gap: 2.5rem;
  }
  .hero-art,
  .hero-art > img {
    min-height: 500px;
  }
  .site-footer {
    grid-template-columns: auto 1fr;
  }
  .site-footer nav {
    grid-column: 1/-1;
  }
  .hero-benefit {
    font-size: 1.625rem;
  }
}
@media (max-width: 700px) {
  .page-width {
    width: calc(100% - 2.5rem);
  }
  .site-header {
    padding-block: 1.5rem 1.75rem;
  }
  .brand {
    width: 125px;
  }
  .header-link {
    font-size: 0.8125rem;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding-block: 0.75rem 3rem;
  }
  .hero-title {
    width: 91%;
    max-width: 430px;
  }
  .hero-benefit {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-top: 1.5rem;
    letter-spacing: -0.025em;
  }
  .desktop-break {
    display: none;
  }
  .hero-description {
    font-size: 1rem;
    max-width: 340px;
  }
  .download {
    margin-top: 1.5rem;
  }
  .hero-art {
    min-height: 0;
    margin-inline: -1.25rem;
  }
  .hero-art > img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.15;
    object-position: 50% center;
  }
  .hero-art figcaption {
    margin-inline: 1.25rem;
    margin-top: 0.65rem;
    font-size: 0.625rem;
  }
  .app-section {
    padding-block: 3rem;
  }
  .section-intro {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .display-title {
    max-width: 260px;
  }
  .intro-copy {
    font-size: 1.0625rem;
    line-height: 1.6;
  }
  .site-footer {
    padding-block: 2rem;
    gap: 1.25rem;
  }
  .site-footer nav {
    gap: 1.25rem;
  }
  .site-footer > p {
    text-align: right;
  }
  .copyright {
    margin-top: 0.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
.screenshots {
  display: flex;
  justify-content: center;
  gap: clamp(2rem, 5.5vw, 6rem);
  margin-top: 4rem;
  outline-offset: 10px;
}
.screen {
  flex: 0 1 275px;
  min-width: 0;
}
.screen-image {
  width: 100%;
  height: auto;
  aspect-ratio: 369/800;
  border: 1px solid #d5d5d5;
  border-radius: 28px;
  overflow: hidden;
}
.screen figcaption {
  margin-top: 1.5rem;
}
.screen h3 {
  font-size: 1.0625rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.4;
}
.screen figcaption p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #666;
  margin-top: 0.4rem;
}
.local-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  border-top: 1px solid #ddd;
  padding-block: 5.5rem 6rem;
}
.local-title {
  max-width: 460px;
}
.local-copy {
  max-width: 480px;
  font-size: 1.125rem;
  line-height: 1.6;
}
.local-copy > p + p {
  margin-top: 1rem;
  color: #666;
}
.draft-footer {
  float: right;
}
.legal {
  max-width: 760px;
  min-height: 60vh;
  padding-block: 4rem 6rem;
}
.legal h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 750;
  line-height: 1.07;
  letter-spacing: -0.065em;
}
.legal .meta {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #666;
  margin-top: 1rem;
}
.legal-intro {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #666;
  margin-top: 1.5rem;
}
.draft-label {
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1.25rem;
}
.legal-body {
  margin-top: 3.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #555;
}
.legal-body h2 {
  font-size: 1.125rem;
  font-weight: 650;
  color: #080808;
  margin-block: 2.25rem 0.75rem;
}
.legal-body h3 {
  font-size: 1rem;
  font-weight: 650;
  color: #080808;
  margin-block: 1.75rem 0.75rem;
}
.legal-body p + p {
  margin-top: 1rem;
}
.legal-body ul {
  padding-left: 1.25rem;
  margin-block: 1rem;
}
.legal-body li + li {
  margin-top: 0.65rem;
}
.legal-body a {
  color: #080808;
  font-weight: 600;
}
.support-grid {
  min-height: 60vh;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
  padding-block: 4rem 6rem;
}
.support-copy {
  max-width: 430px;
}
.support-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 750;
  line-height: 1.07;
  letter-spacing: -0.065em;
}
.support-copy p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #666;
  margin-top: 1.5rem;
}
.support-copy .email {
  color: #080808;
  font-weight: 600;
}
.form {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid #ddd;
}
.field {
  display: grid;
  gap: 0.5rem;
}
.field label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.field input,
.field textarea {
  width: 100%;
  color: #080808;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 0.875rem 1rem;
}
.field input {
  min-height: 56px;
}
.field textarea {
  min-height: 160px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  border-color: #080808;
  outline: 2px solid rgba(0, 0, 0, 0.15);
  outline-offset: 2px;
}
.support-submit {
  min-height: 56px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: #080808;
  font-weight: 650;
  cursor: pointer;
}
.support-submit:hover {
  background: #333;
}
.form-note {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #666;
}
.form-success {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 600;
}
.contact-email {
  display: inline-block;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  text-decoration: none;
  padding-block: 1rem;
  border-bottom: 1px solid #080808;
  margin-top: 1.5rem;
  overflow-wrap: anywhere;
}
.contact-email span {
  margin-left: 1rem;
}
.contact-email:hover {
  color: #666;
}
.support-note {
  font-size: 1rem;
  line-height: 1.5;
  color: #666;
  margin-top: 1.5rem;
}
@media (max-width: 1000px) and (min-width: 701px) {
  .screenshots {
    gap: 2rem;
  }
  .screen-image {
    border-radius: 24px;
  }
}
@media (max-width: 700px) {
  .screenshots {
    justify-content: flex-start;
    gap: 1.5rem;
    margin: 2.5rem -1.25rem 0;
    padding: 0 1.25rem 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 1.25rem;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
  }
  .screen {
    flex: 0 0 78%;
    max-width: 310px;
    scroll-snap-align: start;
  }
  .screen-image {
    border-radius: 26px;
  }
  .screen figcaption {
    margin-top: 1.125rem;
  }
  .screen h3 {
    font-size: 1rem;
  }
  .screen figcaption p {
    font-size: 0.875rem;
  }
  .local-section {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    padding-block: 3rem 3.5rem;
  }
  .local-title {
    max-width: 320px;
  }
  .local-copy {
    font-size: 1.0625rem;
  }
  .local-copy .download {
    margin-top: 1.75rem;
  }
  .draft-footer {
    display: block;
    float: none;
    margin-top: 0.65rem;
    line-height: 1.5;
  }
  .legal {
    padding-block: 2rem 4rem;
  }
  .legal h1 {
    font-size: 2.75rem;
    letter-spacing: -0.045em;
  }
  .legal-intro {
    font-size: 1.0625rem;
  }
  .legal-body {
    margin-top: 2.5rem;
  }
  .legal-body h2 {
    margin-top: 1.75rem;
  }
  .support {
    min-height: 65vh;
  }
  .support-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: 2rem 4rem;
  }
  .support-copy p {
    font-size: 1rem;
  }
}

/* Campaign refresh: places and real people, with readable responsive copy. */
.hero-benefit{font-size:clamp(1.35rem,2vw,1.9rem);line-height:1.3;max-width:520px}
.hero-description{max-width:410px}
.hero-art>img{object-position:51% 45%}
.community-title{font-size:clamp(2rem,3.5vw,3.5rem);font-weight:800;line-height:1.08;letter-spacing:-.05em;max-width:650px}
.campaign-artworks{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:2rem}
.campaign-artworks .screen{max-width:none}
.artwork-link{display:block;border-radius:0;overflow:hidden;text-decoration:none}
.campaign-artworks .screen-image{aspect-ratio:8/9;border-radius:0;border:1px solid #ddd}
.campaign-artworks .screen h3{font-size:1.125rem}
.campaign-artworks .screen figcaption p{font-size:1rem;line-height:1.55;max-width:360px}
.site-domain{font-weight:650;letter-spacing:.06em}
@media(max-width:700px){
 .hero-art{margin-inline:0}
 .hero-art>img{aspect-ratio:4/5;object-position:center}
 .community-title{font-size:2.15rem;max-width:340px}
 .campaign-artworks{display:flex;gap:1.25rem}
 .campaign-artworks .screen{flex:0 0 86%;max-width:360px}
 .campaign-artworks .screen figcaption{padding-right:.25rem}
 .campaign-artworks .screen h3{font-size:1.0625rem}
}

@media(min-width:701px){
 .hero{align-items:start;padding-top:1.5rem}
 .hero-title{max-width:460px}
 .hero-art{height:clamp(520px,44vw,640px);min-height:0}
 .hero-art>img{min-height:0;height:100%;object-fit:cover}
}
