:root {
  color-scheme: light;
  --ink: #182133;
  --muted: #5f6675;
  --paper: #f8f6f2;
  --panel: #ffffff;
  --line: #ded8ce;
  --sand: #e8bd62;
  --coral: #d95b4f;
  --mint: #52a889;
  --mint-strong: #2f8069;
  --night: #242739;
  --shadow: 0 18px 44px rgba(30, 35, 52, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(248, 246, 242, 0.98) 48%, #eff5f0 100%),
    radial-gradient(circle at 12% 12%, rgba(232, 189, 98, 0.16), transparent 34%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: var(--mint-strong);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid rgba(222, 216, 206, 0.82);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1080px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 850;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 760;
}

.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.brand img,
.hero-badge img,
.redirect-card img {
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(24, 33, 51, 0.22);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 32px;
  align-items: center;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0 34px;
}

.support-hero {
  padding-bottom: 44px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  color: var(--night);
  font-size: 4.35rem;
}

h2 {
  color: var(--night);
  font-size: 1.22rem;
}

.lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.13rem;
}

.updated {
  margin: 18px 0 0;
  color: #78808e;
  font-size: 0.95rem;
}

.hero-badge {
  display: grid;
  justify-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--sand);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge strong {
  margin-bottom: 6px;
  color: var(--night);
  font-size: 1rem;
}

.hero-badge span {
  color: var(--muted);
  font-size: 0.95rem;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto 22px;
}

.summary-grid article,
.policy-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(30, 35, 52, 0.08);
}

.summary-grid article {
  padding: 22px;
}

.summary-grid article:nth-child(1) {
  border-top: 4px solid var(--mint);
}

.summary-grid article:nth-child(2) {
  border-top: 4px solid var(--coral);
}

.summary-grid article:nth-child(3) {
  border-top: 4px solid var(--sand);
}

.summary-grid p,
.policy-section p {
  margin: 12px 0 0;
  color: var(--muted);
}

.policy {
  display: grid;
  gap: 16px;
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 72px;
}

.support-content {
  padding-top: 8px;
}

.policy-section {
  padding: 28px;
}

.contact-panel {
  border-color: rgba(82, 168, 137, 0.42);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 248, 244, 0.94));
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 16px;
  color: #78808e;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.redirect-card {
  width: min(360px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 30px;
  box-shadow: var(--shadow);
  text-align: center;
}

.redirect-card h1 {
  margin-top: 16px;
  font-size: 2rem;
}

.redirect-card p {
  color: var(--muted);
}

.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 8px;
  border-radius: 8px;
  background: var(--mint);
  color: #ffffff;
  font-weight: 850;
  padding: 0 18px;
}

.button-link:hover {
  background: var(--mint-strong);
  text-decoration: none;
}

.button-link--ghost {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--mint-strong);
}

.button-link--ghost:hover {
  background: rgba(82, 168, 137, 0.1);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.stat-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.stat-list strong {
  color: var(--ink);
}

.section-block {
  width: min(1080px, calc(100% - 32px));
  margin: 34px auto 0;
}

.section-header h2 {
  margin: 0 0 16px;
  font-size: 2rem;
}

.section-intro {
  max-width: 880px;
  margin: 12px 0 0;
  color: var(--muted);
}

.landing-preview {
  align-self: stretch;
}

.hero-shot,
.screenshot-card {
  margin: 0;
}

.hero-shot {
  width: min(210px, 100%);
}

.hero-shot img,
.screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.hero-shot img {
  box-shadow: 0 16px 34px rgba(30, 35, 52, 0.18);
}

.screenshot-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.screenshot-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(30, 35, 52, 0.08);
}

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

.feature-grid h3,
.faq-list h3 {
  margin: 0;
  color: var(--night);
  font-size: 1.06rem;
  line-height: 1.3;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-list p {
  margin-top: 8px;
}

@media (max-width: 760px) {
  .top-nav {
    width: min(100% - 24px, 1080px);
    gap: 12px;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .nav-links {
    gap: 12px;
    font-size: 0.95rem;
  }

  .hero {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 1080px);
    padding-top: 44px;
  }

  h1 {
    font-size: 2.85rem;
  }

  .hero-badge {
    grid-template-columns: 76px 1fr;
    justify-items: start;
    padding: 18px;
    text-align: left;
  }

  .hero-badge img {
    width: 76px;
    height: 76px;
  }

  .summary-grid {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 1080px);
  }

  .screenshot-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .cta-row {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-preview {
    justify-items: start;
  }

  .policy {
    width: min(100% - 24px, 880px);
  }

  .policy-section {
    padding: 22px;
  }
}
