:root {
  color-scheme: light;
  --ink: #101318;
  --muted: #5b6472;
  --quiet: #eff3f5;
  --line: #d9e0e5;
  --paper: #ffffff;
  --soft: #f6f8f8;
  --teal: #0d756f;
  --teal-dark: #084d49;
  --mint: #d8f6ef;
  --violet: #5147a6;
  --violet-soft: #ece9ff;
  --blue: #1c5d99;
  --amber: #d08a20;
  --warn: #7b2f35;
  --warn-bg: #fff1f1;
  --shadow: 0 22px 60px rgba(22, 33, 45, 0.14);
  --shadow-soft: 0 16px 38px rgba(16, 28, 36, 0.09);
  --glass: rgba(255, 255, 255, 0.76);
  --glass-strong: rgba(255, 255, 255, 0.92);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100svh;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(13, 117, 111, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(81, 71, 166, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbfb 0, #ffffff 34rem, #f3f7f8 100%);
  background-size: 96px 96px, 96px 96px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 12px auto 0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(16, 19, 24, 0.09);
  border-radius: 12px;
  background: var(--glass);
  box-shadow: 0 14px 34px rgba(16, 28, 36, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(158px, 16vw, 210px);
  height: auto;
  mix-blend-mode: multiply;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex-wrap: wrap;
}

.site-nav a {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: linear-gradient(135deg, rgba(216, 246, 239, 0.95), rgba(236, 233, 255, 0.9));
  outline: none;
}

.site-nav .store-nav-link {
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--blue));
  box-shadow: 0 10px 22px rgba(16, 28, 36, 0.12);
}

.site-nav .store-nav-link:hover,
.site-nav .store-nav-link:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--teal-dark), var(--violet));
}

.hero,
.band,
.research-callout,
.split-section,
.page-hero,
.support-grid,
.faq-section,
.policy-layout,
.developer-layout,
.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 820px);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  justify-content: center;
  padding: 72px 0 74px;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 52px;
  width: min(58vw, 620px);
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--violet), transparent);
}

.hero-copy {
  min-width: 0;
  max-width: 820px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.hero-logo {
  width: min(100%, 670px);
  height: auto;
  margin: 0 auto;
  mix-blend-mode: multiply;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--violet));
}

h1,
h2,
h3,
p,
small,
strong,
span,
li {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.4rem, 10vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.15rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero h1,
.page-hero h1 {
  color: transparent;
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal-dark) 58%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-title {
  display: none;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 560px;
  margin: 24px auto 0;
  color: #303844;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 750;
  text-decoration: none;
}

.button {
  padding: 11px 18px;
  border: 1px solid var(--ink);
  box-shadow: 0 10px 22px rgba(16, 19, 24, 0.08);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--ink), #173b3d 62%, #211d50);
}

.button.primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.button.compact {
  align-self: center;
  min-width: 148px;
  white-space: nowrap;
}

.button.secondary {
  color: var(--ink);
  background: var(--glass-strong);
}

.button.secondary:hover {
  background: var(--quiet);
}

.text-link {
  width: fit-content;
  min-height: 40px;
  margin-top: 20px;
  color: var(--teal-dark);
  border-bottom: 2px solid var(--teal);
  border-radius: 0;
}

.link-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.research-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid rgba(16, 19, 24, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(16, 19, 24, 0.96), rgba(8, 77, 73, 0.95) 58%, rgba(33, 29, 80, 0.94)),
    var(--ink);
  box-shadow: var(--shadow);
}

.research-callout .section-label,
.research-callout h2,
.research-callout p {
  color: #fff;
}

.research-callout .section-label::before {
  background: linear-gradient(90deg, var(--mint), #fff0c8);
}

.research-callout h2 {
  max-width: 760px;
  font-size: clamp(1.85rem, 3.8vw, 3.1rem);
}

.research-callout p:not(.section-label) {
  max-width: 820px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
}

.marketing-panel {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(16, 19, 24, 0.12);
  border-radius: 12px;
  background: #11151d;
  box-shadow: var(--shadow);
}

.marketing-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.wide-marketing {
  min-height: clamp(300px, 38vw, 460px);
}

.wide-marketing img {
  object-position: center;
}

.band {
  padding: 74px 0;
  border-top: 1px solid var(--line);
}

.current-state {
  border-top: 1px solid rgba(16, 19, 24, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(246, 248, 248, 0.88));
}

.band.muted {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(90deg, rgba(13, 117, 111, 0.08), transparent 40%, rgba(81, 71, 166, 0.07)),
    var(--soft);
}

.section-intro {
  min-width: 0;
  max-width: 780px;
}

.section-intro p:not(.section-label),
.split-section p,
.page-hero p {
  color: var(--muted);
  font-size: 1.06rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.feature-card,
.support-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--glass-strong);
  box-shadow: var(--shadow-soft);
}

.feature-card::before,
.support-card::before,
.policy-content article::before,
.developer-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--violet));
}

.feature-card p,
.support-card p,
.support-card li,
.faq-list p,
.policy-content p,
.policy-summary p,
.site-footer p {
  color: var(--muted);
}

.feature-card p,
.support-card p {
  margin: 10px 0 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: center;
  padding: 78px 0;
  border-top: 1px solid var(--line);
}

.support-list {
  display: grid;
  gap: 12px;
}

.support-list span {
  position: relative;
  padding: 18px 20px;
  border-left: 4px solid var(--teal);
  background:
    linear-gradient(90deg, rgba(216, 246, 239, 0.72), rgba(255, 255, 255, 0.74)),
    var(--soft);
  box-shadow: 0 10px 24px rgba(16, 28, 36, 0.06);
  font-weight: 720;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.site-footer p {
  max-width: 520px;
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

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

.page-hero {
  position: relative;
  padding: 70px 0 48px;
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: min(360px, 55%);
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--violet), transparent);
}

.page-hero h1 {
  font-size: clamp(2.75rem, 6vw, 5.1rem);
}

.page-hero p:not(.section-label) {
  max-width: 800px;
  margin: 22px 0 0;
}

.privacy-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.privacy-hero-copy {
  min-width: 0;
}

.privacy-hero-art {
  min-height: clamp(280px, 34vw, 430px);
}

.privacy-hero-art img {
  object-position: center;
}

.developer-hero-copy {
  min-width: 0;
}

.developer-intro-card {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  max-width: 840px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(216, 246, 239, 0.64), rgba(255, 255, 255, 0.92) 58%, rgba(236, 233, 255, 0.54)),
    var(--paper);
  box-shadow: var(--shadow-soft);
}

.developer-photo {
  margin: 0;
  overflow: hidden;
  width: 128px;
  aspect-ratio: 1;
  border: 1px solid rgba(16, 19, 24, 0.12);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}

.developer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.developer-intro-card p {
  margin: 0;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 24px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--ink), var(--teal-dark));
  font-weight: 760;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(16, 19, 24, 0.12);
}

.profile-link:hover,
.profile-link:focus-visible {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  outline: none;
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.profile-actions .profile-link {
  margin-top: 0;
}

.secondary-profile-link {
  color: var(--ink);
  background: var(--paper);
}

.secondary-profile-link:hover,
.secondary-profile-link:focus-visible {
  color: #fff;
}

.support-hero a {
  color: var(--teal-dark);
  font-weight: 750;
}

.page-action-row {
  justify-content: flex-start;
  margin-top: 28px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 48px 0;
}

.support-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.support-card li + li {
  margin-top: 8px;
}

.support-card.urgent {
  border-color: rgba(123, 47, 53, 0.28);
  background: var(--warn-bg);
}

.support-card.urgent h2 {
  color: var(--warn);
}

.faq-section {
  padding: 56px 0 76px;
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-left: 4px solid transparent;
  border-radius: 8px;
  background: var(--glass-strong);
  box-shadow: 0 10px 24px rgba(16, 28, 36, 0.055);
}

.faq-list details[open] {
  border-left-color: var(--teal);
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 760;
}

.faq-list summary::marker {
  color: var(--violet);
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.faq-list p + p {
  padding-top: 0;
}

.faq-list a {
  color: var(--teal-dark);
  font-weight: 760;
}

.policy-page {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0, rgba(255, 255, 255, 0.72) 50%, rgba(246, 248, 248, 0.88) 50%, rgba(246, 248, 248, 0.88) 100%);
}

.policy-layout {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 48px;
  padding: 48px 0 80px;
}

.policy-summary {
  position: sticky;
  top: 20px;
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(216, 246, 239, 0.55), rgba(236, 233, 255, 0.45)),
    var(--paper);
  box-shadow: var(--shadow-soft);
}

.policy-summary h2,
.policy-content h2,
.support-card h2 {
  font-size: 1.35rem;
  line-height: 1.18;
}

.policy-summary p {
  margin: 12px 0 0;
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-content article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--glass-strong);
  box-shadow: 0 12px 28px rgba(16, 28, 36, 0.06);
}

.policy-content p {
  margin: 12px 0 0;
}

.policy-content a {
  color: var(--teal-dark);
  font-weight: 760;
}

.developer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: 20px;
  padding: 48px 0 84px;
}

.developer-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--glass-strong);
  box-shadow: var(--shadow-soft);
}

.developer-card.lead {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(216, 246, 239, 0.78), rgba(255, 255, 255, 0.88) 54%, rgba(236, 233, 255, 0.62)),
    var(--paper);
}

.developer-card h2 {
  font-size: 1.5rem;
  line-height: 1.16;
}

.developer-card p,
.developer-card li {
  color: var(--muted);
}

.developer-card p {
  margin: 12px 0 0;
}

.developer-card a {
  color: var(--teal-dark);
  font-weight: 760;
}

.check-list {
  margin: 14px 0 0;
  padding-left: 20px;
}

.check-list li + li {
  margin-top: 8px;
}

.not-found {
  min-height: calc(100svh - 76px);
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 44px;
    padding-bottom: 54px;
  }

  .feature-grid,
  .support-grid,
  .split-section,
  .policy-layout,
  .developer-layout {
    grid-template-columns: 1fr;
  }

  .policy-page {
    background: var(--paper);
  }

  .policy-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }

  main,
  .hero,
  .hero-copy,
  .hero-text {
    max-width: 100%;
    min-width: 0;
  }

  .site-header {
    width: calc(100% - 28px);
    max-width: 362px;
    margin-left: 14px;
    margin-right: 14px;
    min-height: 94px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
  }

  .brand img {
    width: 164px;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .site-nav a {
    min-height: 36px;
    padding: 8px 6px;
    text-align: center;
    font-size: 0.9rem;
  }

  .hero,
  .band,
  .research-callout,
  .split-section,
  .page-hero,
  .support-grid,
  .faq-section,
  .policy-layout,
  .developer-layout,
  .site-footer {
    width: calc(100% - 28px);
    max-width: 362px;
    margin-left: 14px;
    margin-right: 14px;
  }

  h1 {
    font-size: clamp(3rem, 13vw, 3.75rem);
  }

  .page-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.75rem, 10vw, 3rem);
  }

  .button-row,
  .site-footer,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .research-callout {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .button.compact {
    width: 100%;
  }

  .developer-card.lead {
    grid-row: auto;
  }
}

.hero-logo {
  mix-blend-mode: normal;
}

@media (max-width: 900px) {
  .privacy-hero,
  .campaign-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .marketing-panel,
  .hero-logo {
    max-width: 100%;
    min-width: 0;
  }

  .hero-logo {
    width: min(100%, 330px);
  }

  .privacy-hero-art,
  .wide-marketing {
    min-height: 220px;
  }

  .developer-intro-card {
    grid-template-columns: 80px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    padding: 14px;
  }

  .developer-photo {
    width: 80px;
  }

  .developer-intro-card > div {
    min-width: 0;
  }

  .developer-intro-card .profile-link {
    width: 100%;
    margin-top: 12px;
  }
}

@media (max-width: 700px) {
  body {
    background-size: 82px 82px, 82px 82px, auto;
  }

  .site-header {
    position: relative;
    top: auto;
    width: min(calc(100% - 28px), 430px);
    max-width: none;
    min-height: 0;
    margin: 12px auto 0;
    padding: 12px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
  }

  .brand {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    justify-content: center;
  }

  .brand img {
    width: min(220px, 72vw);
    max-height: 64px;
    object-fit: contain;
  }

  .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }

  .site-nav a {
    min-width: 0;
    min-height: 38px;
    padding: 9px 2px;
    font-size: 0.82rem;
    line-height: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-nav .store-nav-link {
    grid-column: 1 / -1;
  }

  .hero,
  .band,
  .band.muted,
  .research-callout,
  .split-section,
  .page-hero,
  .support-grid,
  .faq-section,
  .policy-layout,
  .developer-layout,
  .site-footer {
    width: min(calc(100% - 32px), 430px);
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    padding: 36px 0 48px;
    text-align: center;
  }

  .hero::before {
    top: 18px;
    width: min(74%, 300px);
  }

  .hero .section-label {
    justify-content: center;
  }

  .section-label {
    gap: 8px;
    margin-bottom: 12px;
    font-size: 0.72rem;
  }

  .section-label::before {
    width: 26px;
  }

  .hero-logo {
    width: min(100%, 335px);
    max-height: 100px;
    object-fit: contain;
    margin: 0 auto;
    mix-blend-mode: multiply;
  }

  .hero-title {
    display: block;
    font-size: clamp(3.65rem, 17vw, 4.6rem);
    line-height: 0.92;
    font-weight: 900;
    text-align: center;
  }

  .hero-logo {
    display: none;
  }

  .hero-text {
    max-width: 23rem;
    margin-top: 20px;
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .button-row {
    gap: 10px;
    margin-top: 26px;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .band,
  .band.muted {
    padding: 48px 0;
    background: transparent;
  }

  .feature-grid,
  .support-grid,
  .developer-layout,
  .policy-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-grid {
    margin-top: 24px;
  }

  .feature-card,
  .support-card,
  .policy-summary,
  .policy-content article,
  .developer-card {
    padding: 20px;
    border-radius: 10px;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 0;
  }

  .support-list span {
    padding: 15px 16px;
  }

  .page-hero {
    padding: 46px 0 34px;
    text-align: center;
  }

  .page-hero::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .page-hero .section-label {
    justify-content: center;
  }

  .page-hero h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.2rem);
    line-height: 0.98;
  }

  .page-hero p:not(.section-label) {
    max-width: 100%;
    margin-top: 18px;
    font-size: 1.02rem;
  }

  .privacy-hero {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .privacy-hero-art {
    aspect-ratio: 1.18;
    min-height: 0;
  }

  .privacy-hero-art img {
    object-fit: cover;
    object-position: center;
  }

  .policy-layout,
  .developer-layout {
    padding: 38px 0 64px;
  }

  .support-grid {
    padding: 38px 0;
  }

  .faq-section {
    padding: 46px 0 62px;
  }

  .developer-intro-card {
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    max-width: 100%;
    padding: 14px;
    text-align: left;
  }

  .developer-photo {
    width: 88px;
    border-radius: 10px;
  }

  .developer-intro-card > div {
    min-width: 0;
  }

  .profile-link {
    width: 100%;
    min-height: 46px;
    margin-top: 12px;
    font-size: 0.94rem;
  }

  .profile-actions {
    margin-top: 12px;
  }

  .site-footer {
    flex-direction: column;
    align-items: stretch;
    padding: 32px 0;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 360px) {
  .brand img {
    width: min(198px, 70vw);
  }

  .site-nav a {
    font-size: 0.76rem;
  }

  .developer-intro-card {
    grid-template-columns: 1fr;
  }

  .developer-photo {
    width: 96px;
  }
}
