@font-face {
  font-family: "Archivo";
  src: url("/static/fonts/archivo-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --bg: #07100d;
  --surface: #0d1713;
  --surface-raised: #132019;
  --surface-soft: #18261f;
  --line: rgba(226, 243, 234, 0.14);
  --line-strong: rgba(226, 243, 234, 0.24);
  --text: #f2f6f1;
  --muted: #9eaaa3;
  --quiet: #78857e;
  --lime: #a8f11a;
  --lime-hover: #b9ff2f;
  --lime-ink: #0b140b;
  --danger: #ff8c78;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  color-scheme: dark;
  font-family: "Archivo", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  background: radial-gradient(circle at 86% -12%, rgba(168, 241, 26, 0.1), transparent 32rem), var(--bg);
  color: var(--text);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.018) 50%, transparent);
  content: "";
  pointer-events: none;
}
::selection { color: var(--lime-ink); background: var(--lime); }
* { scrollbar-color: var(--surface-soft) var(--bg); scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { border: 3px solid var(--bg); border-radius: 10px; background: var(--surface-soft); }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }
img, video { max-width: 100%; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 2px solid var(--lime); outline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; clip-path: inset(50%); }

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  width: min(100% - 48px, 1392px);
  min-height: 76px;
  margin: 0 auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.logo { display: inline-flex; width: max-content; align-items: center; gap: 11px; color: var(--text); text-decoration: none; }
.logo img { width: 34px; height: 34px; border-radius: 9px; }
.logo b { font-size: 15px; font-weight: 760; letter-spacing: -0.025em; }
.site-header > nav { display: flex; align-items: center; justify-content: center; gap: 26px; }
.site-header > nav a { display: inline-flex; min-height: 44px; align-items: center; color: var(--muted); font-size: 13px; font-weight: 650; text-decoration: none; transition: color 180ms var(--ease-out); }
.site-header > nav a:hover { color: var(--text); }
.site-header .nav-contact { min-height: 42px; border: 1px solid var(--line-strong); border-radius: 10px; padding: 0 16px; color: var(--text); }
.site-header .nav-contact:hover { border-color: var(--lime); color: var(--lime); }
.site-header > :last-child:not(nav):not(.logo) { justify-self: end; }

.mobile-nav { display: none; position: relative; justify-self: end; }
.mobile-nav summary { display: grid; min-width: 48px; min-height: 44px; place-items: center; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; color: var(--text); list-style: none; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav nav { position: absolute; top: 52px; right: 0; display: grid; min-width: 220px; border: 1px solid var(--line-strong); border-radius: 12px; padding: 8px; background: #0b1511; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4); }
.mobile-nav nav a { display: flex; min-height: 44px; align-items: center; border-radius: 8px; padding: 8px 12px; color: var(--muted); text-decoration: none; }
.mobile-nav nav a:hover { color: var(--text); background: var(--surface); }

.language-switcher { position: relative; display: inline-flex; min-width: 64px; min-height: 42px; align-items: center; justify-content: center; gap: 7px; border: 1px solid var(--line); border-radius: 10px; color: var(--text); background: var(--surface); font-size: 12px; font-weight: 750; }
.language-switcher select { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.language-switcher-icon { color: var(--lime); }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; border: 1px solid var(--lime); border-radius: 10px; padding: 0 22px; color: var(--lime-ink); background: var(--lime); font-weight: 760; line-height: 1; text-align: center; text-decoration: none; white-space: nowrap; cursor: pointer; transition: background-color 180ms var(--ease-out), border-color 180ms var(--ease-out), transform 140ms var(--ease-out); }
.button:hover { border-color: var(--lime-hover); background: var(--lime-hover); }
.button:active { transform: scale(0.97); }
.button-light { border-color: var(--line-strong); color: var(--text); background: transparent; }
.button-light:hover { border-color: var(--lime); color: var(--lime); background: transparent; }
.button:disabled, .button-disabled { opacity: 0.55; cursor: not-allowed; }
.text-link { display: inline-flex; min-height: 44px; align-items: center; gap: 7px; color: var(--text); font-size: 14px; font-weight: 720; text-decoration: none; }
.text-link span:last-child { color: var(--lime); transition: transform 180ms var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .text-link:hover span:last-child { transform: translateX(5px); } }

.pill, .eyebrow { margin: 0; color: var(--lime); font-size: 11px; font-weight: 760; letter-spacing: 0.08em; text-transform: uppercase; }
.pill { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 10px; padding: 9px 11px; color: var(--muted); background: var(--surface); }
.pill i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.breadcrumbs { width: 100%; margin: 0 0 32px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li { display: flex; align-items: center; color: var(--quiet); font-size: 12px; }
.breadcrumbs li + li::before { margin-right: 8px; color: #526058; content: "/"; }
.breadcrumbs a { display: inline-flex; min-height: 40px; align-items: center; color: var(--muted); }
.hero-actions, .seo-actions, .billing-actions, .update-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.hero-note, .disclaimer { color: var(--quiet); font-size: 12px; line-height: 1.55; }
.hero-note { margin-top: 22px; }
.disclaimer { margin-top: 14px; }

.compact-footer { display: grid; width: min(100% - 48px, 1220px); margin: 110px auto 0; grid-template-columns: auto 1fr; gap: 34px 70px; align-items: start; border-top: 1px solid var(--line); padding: 38px 0 42px; }
.compact-footer > span { color: var(--quiet); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 20px; }
.footer-links a { display: inline-flex; min-height: 34px; align-items: center; color: var(--muted); font-size: 12px; text-decoration: none; }
.footer-links a:hover { color: var(--text); }

.legal, .authority-page { width: min(100% - 48px, 800px); margin: 0 auto; padding: 72px 0 0; }
.legal h1, .contact-page h1, .pricing-hero h1, .blog-hero h1, .article-hero h1, .seo-hero h1, .welcome-hero h1, .uninstall-hero h1, .update-content h1, .billing-success h1 { margin: 18px 0 28px; font-size: clamp(3rem, 7vw, 6rem); font-weight: 760; line-height: 0.94; letter-spacing: -0.04em; }
.legal > p, .legal > ul, .authority-page > p, .authority-page > ul { color: #b7c1bb; font-size: 17px; line-height: 1.78; }
.legal h2 { margin: 54px 0 14px; color: var(--text); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 720; line-height: 1.12; letter-spacing: -0.025em; }
.legal strong { color: var(--text); }
.legal a { color: var(--text); font-weight: 680; text-decoration-color: rgba(168, 241, 26, 0.55); }
.legal ul { padding-left: 22px; }
.legal li { margin: 10px 0; }

.method-table, .article-table { width: 100%; border-collapse: separate; border-spacing: 0; color: #bcc7c0; }
.method-table { margin: 24px 0 44px; }
.method-table th, .method-table td, .article-table th, .article-table td { padding: 16px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.method-table th, .article-table th { color: var(--text); background: var(--surface-raised); font-size: 13px; font-weight: 720; }
.method-table thead th:first-child, .article-table thead th:first-child { border-radius: 12px 0 0; }
.method-table thead th:last-child, .article-table thead th:last-child { border-radius: 0 12px 0 0; }
.method-table tbody tr:last-child td, .article-table tbody tr:last-child td { border-bottom: 0; }
.article-table-wrap { overflow-x: auto; margin: 24px 0; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); }
.article-table { min-width: 640px; }

.contact-page { display: grid; width: min(100% - 48px, 1120px); min-height: 680px; margin: 0 auto; padding: 76px 0 0; grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.75fr); gap: clamp(48px, 8vw, 110px); align-items: center; }
.contact-page section > p:not(.eyebrow) { max-width: 620px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.email-card { display: grid; margin: 32px 0 14px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.email-card span { color: var(--quiet); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.email-card strong { margin-top: 6px; font-size: clamp(1.25rem, 3vw, 2rem); letter-spacing: -0.025em; }
.contact-write { margin-bottom: 14px; }
.contact-page section > small { color: var(--quiet); }
.contact-page aside { border: 1px solid var(--line); border-radius: 16px; padding: 36px; background: var(--surface); }
.contact-page aside h2 { margin: 14px 0 28px; font-size: 30px; line-height: 1.04; letter-spacing: -0.03em; }
.contact-page aside ul { display: grid; margin: 0; padding: 0; gap: 16px; list-style: none; color: #bbc5bf; }
.contact-page aside li { padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.contact-page aside li:last-child { padding-bottom: 0; border-bottom: 0; }
.contact-page aside li::before { margin-right: 10px; color: var(--lime); content: "✓"; }

.pricing-page, .blog-page, .article-page, .seo-page, .ph-page, .welcome-page, .update-page { width: min(100% - 48px, 1220px); margin: 0 auto; padding-top: 64px; }
.pricing-hero, .blog-hero { max-width: 900px; }
.pricing-hero > p:not(.pill), .blog-hero > p:not(.pill) { max-width: 720px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.pricing-grid { display: grid; margin: 64px 0 80px; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.price-card { display: flex; min-height: 440px; grid-column: span 6; flex-direction: column; border: 1px solid var(--line); border-radius: 16px; padding: clamp(26px, 4vw, 42px); background: var(--surface); }
.price-card:nth-child(1) { grid-column: span 5; }
.price-card:nth-child(2) { grid-column: span 7; }
.price-card h2 { margin: 24px 0 8px; font-size: clamp(3rem, 6vw, 5.2rem); line-height: 0.9; letter-spacing: -0.04em; }
.price-card h2 span { color: var(--muted); font-size: 18px; letter-spacing: -0.02em; }
.price-note { margin: 0; color: var(--muted); }
.price-card ul { display: grid; margin: 30px 0; padding: 0; gap: 12px; list-style: none; color: #b4beb8; }
.price-card li::before { margin-right: 10px; color: var(--lime); content: "✓"; }
.price-card .button { align-self: flex-start; margin-top: auto; }
.featured-price { border-color: rgba(168, 241, 26, 0.52); background: linear-gradient(145deg, #142216, #0d1713 72%); }
.pricing-notes { width: min(100%, 800px); margin-top: 0; padding-top: 0; }

.editorial-links { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 26px; }
.editorial-links a { color: var(--text); font-size: 13px; }
.blog-grid { display: grid; margin: 64px 0 90px; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.blog-card { display: flex; min-height: 340px; grid-column: span 6; flex-direction: column; border: 1px solid var(--line); border-radius: 16px; padding: 30px; background: var(--surface); }
.blog-card:first-child { grid-column: span 7; background: linear-gradient(145deg, var(--surface-raised), var(--surface)); }
.blog-card:nth-child(2) { grid-column: span 5; }
.blog-card .eyebrow { color: var(--quiet); }
.blog-card h2 { margin: 28px 0 14px; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.02; letter-spacing: -0.035em; }
.blog-card h2 a { text-decoration: none; }
.blog-card > p:not(.eyebrow) { color: var(--muted); line-height: 1.65; }
.blog-card .text-link { margin-top: auto; }
.card-byline { font-size: 12px !important; }
.blog-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 20px 0; }
.blog-tags span { border: 1px solid var(--line); border-radius: 9px; padding: 6px 9px; color: var(--muted); font-size: 11px; font-weight: 650; }

.article-shell { width: min(100%, 860px); margin: 0 auto; }
.article-hero > p { max-width: 720px; color: var(--muted); font-size: 18px; }
.answer-block { margin: 34px 0; border-left: 1px solid var(--lime); padding: 4px 0 4px 22px; }
.answer-block h2 { margin: 0 0 8px !important; font-size: 16px !important; letter-spacing: 0 !important; }
.answer-block p { margin: 0; color: #c2cbc6; line-height: 1.7; }
.article-meta, .page-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 30px 0 22px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.article-meta div, .page-facts div { padding: 18px; border-right: 1px solid var(--line); }
.article-meta div:last-child, .page-facts div:last-child { border-right: 0; }
.article-meta dt, .page-facts dt { margin-bottom: 6px; color: var(--quiet); font-size: 10px; font-weight: 720; letter-spacing: 0.08em; text-transform: uppercase; }
.article-meta dd, .page-facts dd { margin: 0; color: var(--text); font-size: 13px; line-height: 1.45; }
.article-body { margin: 64px 0 90px; }
.article-body section { margin-bottom: 56px; }
.article-body h2, .methodology-note h2, .article-sources h2 { margin: 0 0 18px; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.05; letter-spacing: -0.035em; }
.article-body p, .article-body li { color: #b9c3bd; font-size: 17px; line-height: 1.78; }
.article-body ul { display: grid; margin: 20px 0 0; padding-left: 22px; gap: 10px; }
.article-limitations, .methodology-note, .article-sources { margin: 64px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 32px 0; }
.article-cta, .discord-callout, .welcome-help, .before-go-card, .cta-band { display: flex; align-items: center; justify-content: space-between; gap: 30px; border: 1px solid rgba(168, 241, 26, 0.25); border-radius: 16px; padding: clamp(28px, 5vw, 48px); background: linear-gradient(145deg, #172617, #0d1713 68%); }
.article-cta h2, .discord-callout h2, .welcome-help h2, .before-go-card h2, .cta-band h2 { margin: 10px 0 12px; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -0.035em; }
.article-cta p:not(.eyebrow), .discord-callout p:not(.eyebrow), .welcome-help p:not(.eyebrow), .before-go-card p:not(.eyebrow), .cta-band p:not(.eyebrow) { max-width: 620px; margin: 0; color: var(--muted); }
.related-posts { border-top: 1px solid var(--line); padding-top: 34px; }
.related-posts > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.related-posts a { border: 1px solid var(--line); border-radius: 12px; padding: 16px; background: var(--surface); font-weight: 680; line-height: 1.25; text-decoration: none; }

.seo-hero { display: grid; min-height: 660px; grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.68fr); gap: clamp(38px, 6vw, 80px); align-items: center; }
.seo-hero > div > p:not(.pill):not(.hero-note):not(.disclaimer) { max-width: 680px; color: var(--muted); font-size: 18px; }
.seo-preview { overflow: hidden; margin: 0; border: 1px solid var(--line-strong); border-radius: 16px; background: var(--surface); box-shadow: 0 36px 100px rgba(0, 0, 0, 0.38); }
.seo-preview img { display: block; width: 100%; height: auto; }
.seo-preview figcaption { display: grid; grid-template-columns: 1fr auto; gap: 4px 20px; border-top: 1px solid var(--line); padding: 14px 16px; color: var(--muted); font-size: 12px; }
.seo-preview figcaption small { grid-column: 1 / -1; color: var(--quiet); }
.page-facts { margin: 20px 0 74px; }
.seo-comparison { margin: 0 0 74px; }
.seo-comparison > h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.035em; }
.seo-content { margin: 0 0 84px; border-top: 1px solid var(--line); }
.seo-content article { display: grid; grid-template-columns: 70px minmax(220px, 0.45fr) minmax(0, 1fr); gap: 26px; border-bottom: 1px solid var(--line); padding: 34px 0; }
.seo-content article > span { color: var(--lime); font-size: 12px; font-weight: 720; }
.seo-content h2 { margin: 0; font-size: clamp(1.6rem, 3vw, 2.3rem); line-height: 1.05; letter-spacing: -0.03em; }
.seo-content article > p, .seo-content article > ul { grid-column: 3; }
.seo-content p, .seo-content li { margin-top: 0; color: #b2bdb6; line-height: 1.72; }
.seo-content ul { display: grid; padding-left: 20px; gap: 8px; }
.seo-faq { width: min(100%, 860px); margin: 0 auto 80px; }
.seo-faq > .eyebrow { margin-bottom: 20px; }
.seo-faq details { border-top: 1px solid var(--line); padding: 22px 0; }
.seo-faq details:last-child { border-bottom: 1px solid var(--line); }
.seo-faq summary { cursor: pointer; color: var(--text); font-size: 18px; font-weight: 700; }
.seo-faq p { max-width: 720px; color: var(--muted); line-height: 1.72; }
.seo-related { margin: 0 0 80px; }
.seo-related > .eyebrow { margin-bottom: 20px; }
.seo-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.seo-related-grid a { display: grid; gap: 8px; border: 1px solid var(--line); border-radius: 12px; padding: 20px; background: var(--surface); text-decoration: none; transition: border-color 180ms var(--ease-out), transform 180ms var(--ease-out); }
.seo-related-grid a:hover { border-color: rgba(168, 241, 26, 0.5); transform: translateY(-2px); }
.seo-related-grid span { color: var(--lime); font-size: 10px; font-weight: 720; letter-spacing: 0.08em; text-transform: uppercase; }
.seo-related-grid b { font-size: 19px; line-height: 1.15; }
.seo-related-grid small { color: var(--muted); line-height: 1.45; }
.seo-cta { margin: 72px 0; }
.seo-language-links { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 90px; }
.seo-language-links a { border: 1px solid var(--line); border-radius: 9px; padding: 9px 12px; color: var(--muted); font-size: 12px; font-weight: 680; text-decoration: none; }

.ph-page { width: min(100% - 48px, 1320px); }
.ph-hero { display: grid; min-height: 720px; grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr); gap: clamp(44px, 6vw, 90px); align-items: center; }
.ph-hero-copy h1 { margin: 20px 0 24px; font-size: clamp(3.4rem, 7vw, 6.6rem); font-weight: 760; line-height: 0.9; letter-spacing: -0.04em; }
.ph-subheadline { max-width: 650px; color: var(--muted); font-size: 18px; line-height: 1.68; }
.ph-preview { transform: rotate(0.5deg); }
.ph-browser { overflow: hidden; border: 1px solid var(--line-strong); border-radius: 16px; background: var(--surface); box-shadow: 0 40px 100px rgba(0, 0, 0, 0.42); }
.browser-bar { display: flex; height: 42px; align-items: center; gap: 7px; border-bottom: 1px solid var(--line); padding: 0 14px; }
.browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: #445149; }
.browser-bar span { margin-left: 8px; color: var(--quiet); font-size: 10px; }
.ph-browser img { display: block; width: 100%; height: auto; }
.ph-proof-caption { margin: 0; border-top: 1px solid var(--line); padding: 14px 16px; color: var(--muted); font-size: 12px; }
.ph-status-strip { display: grid; margin: 22px 0 112px; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ph-status-strip div { display: grid; gap: 5px; border-right: 1px solid var(--line); padding: 24px; }
.ph-status-strip div:last-child { border-right: 0; }
.ph-status-strip strong { font-size: 14px; }
.ph-status-strip span { color: var(--quiet); font-size: 11px; }
.section { width: min(100%, 1180px); margin: 110px auto; }
.section-heading { max-width: 760px; }
.section-heading h2 { margin: 14px 0 16px; font-size: clamp(2.6rem, 6vw, 5rem); line-height: 0.94; letter-spacing: -0.04em; }
.section-heading > p:last-child { max-width: 620px; color: var(--muted); }
.steps, .use-case-grid, .feature-list { display: grid; margin-top: 42px; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.steps article, .use-case-grid article, .feature-list article { grid-column: span 4; border-top: 1px solid var(--line); padding: 28px 4px 0; }
.steps article:nth-child(2), .use-case-grid article:nth-child(2), .feature-list article:nth-child(2) { grid-column: span 5; }
.steps article:nth-child(3), .use-case-grid article:nth-child(3), .feature-list article:nth-child(3) { grid-column: span 3; }
.use-case-grid article, .use-case-grid article:nth-child(2), .use-case-grid article:nth-child(3) { grid-column: span 6; }
.feature-list article, .feature-list article:nth-child(2), .feature-list article:nth-child(3) { grid-column: span 3; }
.step-icon { display: grid; width: 50px; height: 50px; margin: 22px 0; place-items: center; border: 1px solid var(--line); border-radius: 12px; color: var(--lime); background: var(--surface); }
.steps h3, .use-case-grid h3, .feature-list h3 { margin: 12px 0 10px; font-size: 21px; letter-spacing: -0.025em; }
.steps p, .use-case-grid p, .feature-list p { color: var(--muted); }
.use-case-grid article > span { color: var(--lime); font-size: 11px; font-weight: 720; text-transform: uppercase; }
.feature-set > div:first-child h2, .faq > h2 { margin: 14px 0 32px; font-size: clamp(2.6rem, 6vw, 5rem); line-height: 0.94; letter-spacing: -0.04em; }
.feature-list article > strong { display: block; margin: 14px 0 10px; font-size: 21px; line-height: 1.1; }
.ph-fit { border: 1px solid var(--line); border-radius: 16px; padding: clamp(32px, 6vw, 68px); background: var(--surface); }
.ph-fit h2 { max-width: 760px; margin: 14px 0 18px; font-size: clamp(2.6rem, 6vw, 5rem); line-height: 0.94; letter-spacing: -0.04em; }
.ph-fit p:not(.eyebrow) { max-width: 780px; color: var(--muted); font-size: 17px; }
.faq details { border-top: 1px solid var(--line); padding: 22px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-size: 18px; font-weight: 700; }
.faq p { max-width: 720px; color: var(--muted); }
.ph-final-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }

.welcome-page, .update-page { width: min(100% - 48px, 1120px); }
.welcome-hero, .uninstall-hero { max-width: 860px; }
.welcome-hero > p:not(.pill), .uninstall-hero > p { max-width: 650px; color: var(--muted); font-size: 18px; }
.welcome-quick-steps { display: grid; margin-top: 42px; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.welcome-quick-steps article { min-height: 210px; border-right: 1px solid var(--line); padding: 24px; }
.welcome-quick-steps article:last-child { border-right: 0; }
.welcome-quick-steps span { color: var(--lime); font-size: 11px; font-weight: 720; }
.welcome-quick-steps strong { display: block; margin-top: 38px; font-size: 20px; line-height: 1.1; }
.welcome-quick-steps p { color: var(--muted); font-size: 13px; }
.onboarding-section { margin-top: 100px; }
.onboarding-steps article { grid-column: span 4; }
.welcome-help { margin: 90px auto; }
.welcome-page > .discord-callout { margin-bottom: 90px; }

.uninstall-page { display: grid; width: min(100% - 48px, 1120px); margin: 0 auto; padding-top: 64px; grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr); gap: 48px; align-items: start; }
.uninstall-hero { position: sticky; top: 28px; }
.feedback-card { border: 1px solid var(--line); border-radius: 16px; padding: 32px; background: var(--surface); }
.feedback-card form { display: grid; gap: 18px; }
.feedback-card fieldset { display: grid; margin: 0; border: 0; padding: 0; gap: 10px; }
.feedback-card legend { margin-bottom: 8px; font-size: 21px; font-weight: 720; }
.feedback-card fieldset label { display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: 10px; padding: 13px; color: #bcc6c0; cursor: pointer; }
.feedback-card fieldset label:has(input:checked) { border-color: var(--lime); color: var(--text); background: rgba(168, 241, 26, 0.06); }
.feedback-card input[type="radio"] { width: 17px; height: 17px; accent-color: var(--lime); }
.field-label { margin-top: 5px; color: var(--text); font-size: 13px; font-weight: 700; }
.feedback-card textarea, .feedback-card input[type="email"] { width: 100%; border: 1px solid var(--line-strong); border-radius: 10px; padding: 14px; color: var(--text); background: #09120e; outline: none; }
.feedback-card textarea::placeholder, .feedback-card input::placeholder { color: #69766f; }
.feedback-submit { width: 100%; }
.status-message { margin: 0; color: var(--muted); }
.honeypot { position: absolute !important; left: -9999px !important; }
.turnstile-wrap { min-height: 65px; }
.uninstall-discord { grid-column: 2; }
.before-go-card { grid-column: 1 / -1; margin-top: 10px; }

.update-card { display: grid; min-height: 520px; grid-template-columns: 72px 1fr; gap: 28px; align-items: center; border: 1px solid var(--line); border-radius: 16px; padding: clamp(28px, 6vw, 64px); background: var(--surface); }
.update-status { display: grid; width: 56px; height: 56px; place-items: center; border-radius: 14px; color: var(--lime-ink); background: var(--lime); font-size: 28px; font-weight: 800; }
.update-version { color: var(--muted); font-weight: 700; }
.update-version > span + span { margin-left: 14px; color: var(--quiet); font-size: 13px; }
.update-list { display: grid; margin: 34px 0 0; padding: 0; gap: 13px; list-style: none; color: #bac5be; }
.update-list li { position: relative; padding-left: 24px; }
.update-list li::before { position: absolute; left: 0; color: var(--lime); content: "✓"; }

.billing-success { display: grid; width: min(100% - 48px, 900px); min-height: calc(100dvh - 190px); margin: 0 auto; place-items: center; }
.billing-success > div { width: 100%; border: 1px solid var(--line); border-radius: 16px; padding: clamp(32px, 7vw, 72px); background: var(--surface); }
.billing-success > div > p:not(.eyebrow):not(.billing-status) { max-width: 620px; color: var(--muted); font-size: 18px; }
.billing-status { margin-top: 28px; border-top: 1px solid var(--line); padding-top: 18px; color: var(--lime); font-size: 13px; font-weight: 680; }

@media (prefers-reduced-motion: no-preference) {
  main > :first-child { animation: page-arrive 620ms var(--ease-out) both; }
  @keyframes page-arrive { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
}
@media (max-width: 1040px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header > nav { display: none; }
  .mobile-nav { display: block; }
  .contact-page, .seo-hero, .ph-hero, .uninstall-page { grid-template-columns: 1fr; }
  .contact-page { min-height: auto; gap: 42px; }
  .seo-hero, .ph-hero { min-height: auto; }
  .seo-preview, .ph-preview { width: min(100%, 760px); }
  .uninstall-hero { position: static; }
  .uninstall-discord { grid-column: 1; }
}
@media (max-width: 760px) {
  .site-header, .compact-footer, .legal, .authority-page, .pricing-page, .blog-page, .article-page, .seo-page, .ph-page, .welcome-page, .update-page, .uninstall-page, .contact-page { width: min(100% - 32px, 100%); }
  .site-header { min-height: 68px; }
  .site-header .language-switcher { margin-left: auto; margin-right: 8px; }
  .compact-footer { margin-top: 76px; grid-template-columns: 1fr; }
  .footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); justify-content: start; }
  .legal, .authority-page, .pricing-page, .blog-page, .article-page, .seo-page, .ph-page, .welcome-page, .update-page, .uninstall-page, .contact-page { padding-top: 42px; }
  .legal h1, .contact-page h1, .pricing-hero h1, .blog-hero h1, .article-hero h1, .seo-hero h1, .welcome-hero h1, .uninstall-hero h1, .update-content h1, .billing-success h1, .ph-hero-copy h1 { font-size: clamp(2.65rem, 12vw, 4rem); }
  .price-card, .price-card:nth-child(1), .price-card:nth-child(2), .blog-card, .blog-card:first-child, .blog-card:nth-child(2) { min-height: auto; grid-column: 1 / -1; }
  .price-card .button { width: 100%; }
  .article-meta, .page-facts { grid-template-columns: 1fr 1fr; }
  .article-meta div:nth-child(2), .page-facts div:nth-child(2) { border-right: 0; }
  .article-meta div, .page-facts div { border-bottom: 1px solid var(--line); }
  .article-meta div:nth-last-child(-n + 2), .page-facts div:nth-last-child(-n + 2) { border-bottom: 0; }
  .related-posts > div, .seo-related-grid { grid-template-columns: 1fr; }
  .seo-content article { grid-template-columns: 44px 1fr; gap: 16px; }
  .seo-content article > p, .seo-content article > ul { grid-column: 1 / -1; }
  .seo-preview figcaption { flex-direction: column; }
  .ph-status-strip, .welcome-quick-steps { grid-template-columns: 1fr; }
  .ph-status-strip div, .welcome-quick-steps article { border-right: 0; border-bottom: 1px solid var(--line); }
  .ph-status-strip div:last-child, .welcome-quick-steps article:last-child { border-bottom: 0; }
  .steps, .use-case-grid, .feature-list { grid-template-columns: 1fr; }
  .steps article, .steps article:nth-child(2), .steps article:nth-child(3), .use-case-grid article, .use-case-grid article:nth-child(2), .use-case-grid article:nth-child(3), .feature-list article, .feature-list article:nth-child(2), .feature-list article:nth-child(3) { grid-column: 1; }
  .article-cta, .discord-callout, .welcome-help, .before-go-card, .cta-band { align-items: flex-start; flex-direction: column; }
  .article-cta .button, .discord-callout .button, .welcome-help .button, .before-go-card .button, .cta-band .button { width: 100%; }
  .update-card { min-height: auto; grid-template-columns: 1fr; }
  .update-version > span + span { display: block; margin: 7px 0 0; }
  .hero-actions, .seo-actions, .billing-actions, .update-actions, .ph-final-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button, .seo-actions .button, .billing-actions .button, .update-actions .button, .ph-final-actions .button { width: 100%; }
}
@media (max-width: 480px) {
  .article-meta, .page-facts { grid-template-columns: 1fr; }
  .article-meta div, .article-meta div:nth-child(2), .article-meta div:nth-last-child(-n + 2), .page-facts div, .page-facts div:nth-child(2), .page-facts div:nth-last-child(-n + 2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .article-meta div:last-child, .page-facts div:last-child { border-bottom: 0; }
  .footer-links { grid-template-columns: 1fr; }
  .feedback-card { padding: 22px; }
}
@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; }
}
