:root {
  color-scheme: dark;
  --bg: #071012;
  --panel: #0f1a1d;
  --panel-strong: #132428;
  --line: rgba(170, 220, 212, 0.18);
  --text: #f4fbf8;
  --muted: #a9bbb7;
  --soft: #6f8580;
  --accent: #50e3c2;
  --accent-strong: #8ff7dc;
  --amber: #f5c86b;
  --danger: #ff8f70;
  --shadow: rgba(0, 0, 0, 0.35);
  --max: 1120px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 18% 8%, rgba(80, 227, 194, 0.12), transparent 28rem),
    linear-gradient(180deg, #071012 0%, #091719 48%, #061010 100%);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background: rgba(7, 16, 18, 0.88);
  backdrop-filter: blur(16px);
}

.nav,
.topbar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex: 0 0 auto;
  min-width: 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  overflow: hidden;
  border-radius: 0.82rem;
  box-shadow: 0 0 0 1px rgba(143, 247, 220, 0.2), 0 0.9rem 2rem var(--shadow);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.58);
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  gap: 1rem;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  color: var(--muted);
  font-size: 0.95rem;
  scrollbar-width: none;
  white-space: nowrap;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-links a {
  flex: 0 0 auto;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--accent-strong);
}

.language-switcher {
  position: relative;
  z-index: 20;
  flex: 0 0 auto;
  margin-left: auto;
}

.language-switcher summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 4rem;
  min-height: 2.25rem;
  border: 1px solid rgba(170, 220, 212, 0.28);
  border-radius: 999px;
  padding: 0.35rem 0.72rem;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  list-style: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-caret {
  color: var(--soft);
  font-size: 0.7rem;
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  display: grid;
  width: min(13.5rem, calc(100vw - 2rem));
  max-height: min(24rem, calc(100dvh - 5rem));
  overflow: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(170, 220, 212, 0.22);
  border-radius: 0.55rem;
  padding: 0.35rem;
  background: rgba(9, 19, 22, 0.98);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.38);
  scrollbar-color: rgba(80, 227, 194, 0.45) rgba(255, 255, 255, 0.08);
  scrollbar-width: thin;
}

.language-switcher:not([open]) .language-menu {
  display: none;
}

.language-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2.25rem;
  border-radius: 0.38rem;
  padding: 0.45rem 0.55rem;
  color: var(--muted);
  text-decoration: none;
}

.language-option[dir="rtl"] {
  direction: rtl;
}

.language-option span {
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
}

.language-option small {
  color: var(--soft);
  font-size: 0.76rem;
  font-weight: 800;
}

.language-option:hover,
.language-option[aria-current="page"] {
  background: rgba(143, 247, 220, 0.11);
  color: var(--accent-strong);
}

.language-option[aria-current="page"] span,
.language-option[aria-current="page"] small {
  color: var(--accent-strong);
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .language-switcher {
  direction: ltr;
}

[dir="rtl"] .language-option[dir="rtl"] {
  direction: rtl;
}

[dir="rtl"] .cta-row,
[dir="rtl"] .nav-links,
[dir="rtl"] .footer-links,
[dir="rtl"] .conversion-dock-actions {
  direction: rtl;
}

[dir="rtl"] .hub-card,
[dir="rtl"] .link-list a,
[dir="rtl"] .card,
[dir="rtl"] .page-panel,
[dir="rtl"] .analytics-consent,
[dir="rtl"] .conversion-dock-details {
  direction: rtl;
}

[dir="rtl"] .hub-card-arrow {
  transform: scaleX(-1);
}

:lang(th),
:lang(ja),
:lang(ko),
:lang(zh-Hant),
:lang(zh-Hans) {
  line-break: loose;
}

:lang(th) .button,
:lang(th) .dock-button,
:lang(th) .language-option,
:lang(it) .button,
:lang(it) .dock-button,
:lang(ru) .button,
:lang(ru) .dock-button,
:lang(ru) .language-option {
  overflow-wrap: anywhere;
}

:lang(th) .card,
:lang(th) .hub-card,
:lang(th) .page-panel,
:lang(ja) .card,
:lang(ja) .hub-card,
:lang(ko) .card,
:lang(ko) .hub-card,
:lang(zh-Hant) .card,
:lang(zh-Hant) .hub-card,
:lang(zh-Hans) .card,
:lang(zh-Hans) .hub-card {
  word-break: normal;
  overflow-wrap: anywhere;
}

.page {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(18rem, 0.78fr);
  gap: 3rem;
  align-items: start;
  min-height: calc(100vh - 5rem);
  padding: clamp(1.25rem, 4vh, 3rem) 0 3rem;
}

.hero-copy {
  align-self: start;
  padding-top: clamp(0rem, 1vh, 0.75rem);
}

.hero .cta-row {
  margin-top: 1.45rem;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--accent-strong);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  max-width: 11ch;
  font-size: clamp(3rem, 9vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lead {
  max-width: 44rem;
  color: var(--text);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  line-height: 1.35;
}

.supporting {
  max-width: 43rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2rem 0 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  min-width: 0;
  padding: 0.78rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: var(--panel);
  color: var(--text);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 1rem 2.5rem var(--shadow);
}

.button.primary {
  border-color: rgba(80, 227, 194, 0.55);
  background: linear-gradient(180deg, #64f0cf 0%, #2bb99b 100%);
  color: #05201b;
}

.button.subtle {
  background: transparent;
  box-shadow: none;
}

.button:hover {
  transform: translateY(-1px);
}

.fine-print {
  color: var(--soft);
  font-size: 0.9rem;
}

.phone-preview {
  justify-self: end;
  width: min(100%, 24rem);
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  padding: 0.85rem;
  background: linear-gradient(180deg, #101d20 0%, #061010 100%);
  box-shadow: 0 2rem 5rem var(--shadow);
}

.phone-preview.hero-shot {
  width: min(100%, 22.5rem);
  align-self: start;
}

.phone-showcase {
  justify-self: end;
  align-self: start;
  width: min(100%, 22.5rem);
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  padding: 0.85rem;
  background: linear-gradient(180deg, #101d20 0%, #061010 100%);
  box-shadow: 0 2rem 5rem var(--shadow);
}

.phone-screen {
  min-height: 37rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.1rem;
  background:
    linear-gradient(180deg, rgba(80, 227, 194, 0.12), transparent 34%),
    #0a1416;
}

.phone-screen.image-screen {
  min-height: 0;
  aspect-ratio: 720 / 1532;
}

.phone-showcase picture,
.phone-screen.image-screen picture,
.screenshot-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.phone-showcase picture {
  aspect-ratio: 720 / 1532;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.1rem;
  background: #0a1416;
}

.app-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.screen-caption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.section {
  padding: 4rem 0;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 1.6rem;
}

.section h2,
.legal-page h1 {
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.section-heading p,
.legal-page .intro {
  color: var(--muted);
  font-size: 1.04rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-width: 0;
  min-height: 100%;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(15, 26, 29, 0.88);
}

.card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.1rem;
}

.card p,
.card li {
  color: var(--muted);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.feature-list li,
.check-list li {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 0.9rem;
  background: rgba(255, 255, 255, 0.035);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.hub-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(80, 227, 194, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(15, 26, 29, 0.78);
  color: var(--muted);
  overflow-wrap: anywhere;
  text-decoration: none;
  box-shadow: 0 0.85rem 2rem rgba(0, 0, 0, 0.18);
}

.hub-card-icon {
  display: inline-grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(143, 247, 220, 0.22);
  border-radius: 0.55rem;
  background: rgba(80, 227, 194, 0.09);
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

.hub-card-copy {
  display: grid;
  min-width: 0;
  gap: 0.12rem;
}

.hub-card-kicker {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.hub-card-title {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.2;
}

.hub-card-text {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.35;
}

.hub-card-arrow {
  display: inline-grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  color: var(--accent-strong);
  font-weight: 900;
}

.hub-card:hover {
  border-color: rgba(80, 227, 194, 0.45);
  color: var(--text);
  transform: translateY(-1px);
}

.screen-story {
  display: grid;
  gap: 1.1rem;
}

.screen-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 20rem);
  gap: 1.5rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 1rem;
  background: rgba(15, 26, 29, 0.88);
  box-shadow: 0 1rem 2.5rem var(--shadow);
}

.screen-step > div {
  min-width: 0;
}

.screen-step:nth-child(even) {
  grid-template-columns: minmax(14rem, 20rem) minmax(0, 1fr);
}

.screen-step:nth-child(even) > div:first-child {
  order: 2;
}

.screen-step h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.screen-step p {
  margin-bottom: 0;
  color: var(--muted);
}

.screenshot-frame {
  width: min(100%, 20rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: #0a1416;
  aspect-ratio: 720 / 1532;
  justify-self: center;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.28);
}

.screenshot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.beta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0;
}

.beta-tags span {
  border: 1px solid rgba(80, 227, 194, 0.28);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  background: rgba(80, 227, 194, 0.08);
  color: var(--accent-strong);
  font-size: 0.9rem;
  font-weight: 800;
}

.conversion-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1rem;
}

.conversion-steps article {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.035);
}

.conversion-steps span {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(80, 227, 194, 0.12);
  color: var(--accent-strong);
  font-weight: 900;
}

.conversion-steps h3 {
  margin: 0.85rem 0 0.35rem;
  font-size: 1rem;
}

.conversion-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.discord-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(88, 101, 242, 0.42);
  border-radius: 0.65rem;
  padding: 1.1rem;
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.18), rgba(80, 227, 194, 0.08));
}

.discord-panel h3 {
  margin-bottom: 0.35rem;
  font-size: 1.3rem;
}

.discord-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  background: rgba(15, 26, 29, 0.88);
  box-shadow: 0 1rem 2.5rem var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem;
  color: var(--text);
  font-weight: 800;
}

.faq-list p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 0.75rem 0.9rem;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.social-link span,
.social-links-footer a span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 0.42rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.social-discord span {
  background: #5865f2;
}

.social-tiktok span,
.social-x span {
  background: #111;
}

.social-youtube span {
  background: #ff0033;
}

.social-instagram span {
  background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af);
}

.social-facebook span {
  background: #1877f2;
}

.social-reddit span {
  background: #ff4500;
}

.notice {
  border: 1px solid rgba(245, 200, 107, 0.32);
  border-radius: 0.5rem;
  padding: 1.2rem;
  background: rgba(245, 200, 107, 0.08);
}

.notice p {
  margin-bottom: 0;
  color: #f8e3ad;
}

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 4rem;
  padding: 2rem 0 6rem;
  color: var(--muted);
}

.footer-inner,
.footer-grid {
  display: grid;
  gap: 1.5rem;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.footer-inner {
  grid-template-columns: minmax(0, 1fr) auto;
}

.footer-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(12rem, 0.7fr) minmax(14rem, 0.75fr);
  align-items: start;
}

.site-footer h2 {
  margin: 0 0 0.75rem;
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  min-width: 0;
}

.footer-links a {
  min-width: 0;
  color: var(--text);
  overflow-wrap: anywhere;
  text-decoration: none;
}

.site-footer p,
.site-footer a {
  overflow-wrap: anywhere;
}

.social-links-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
  color: var(--soft);
  font-size: 0.9rem;
}

.social-links-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.65rem 0.25rem 0.32rem;
  color: var(--text);
  text-decoration: none;
}

.social-links-footer a span {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  font-size: 0.58rem;
}

.social-links-footer a:hover {
  color: var(--accent-strong);
}

.disclaimer {
  max-width: 60rem;
  margin-top: 1rem;
  color: var(--soft);
  font-size: 0.9rem;
}

.legal-page {
  max-width: 860px;
  padding: 4rem 0;
}

.content-page {
  padding: 4rem 0;
}

.content-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.62fr);
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 2rem;
}

.content-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.content-hero .lead {
  max-width: 48rem;
}

.page-panel {
  border: 1px solid var(--line);
  border-radius: 0.65rem;
  padding: 1.1rem;
  background: rgba(15, 26, 29, 0.88);
}

.visual-panel {
  display: grid;
  gap: 1rem;
}

.panel-shot {
  width: 100%;
  margin: 0 auto;
}

.panel-shot > img {
  display: block;
  width: min(100%, 16rem);
  height: auto;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: #0a1416;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.26);
}

.app-screen-frame {
  width: min(100%, 16rem);
  max-height: 70vh;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background: #0a1416;
  aspect-ratio: 720 / 1532;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.26);
}

.app-screen-frame-tall {
  aspect-ratio: 720 / 1600;
}

.app-screen-frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

.app-screen-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.panel-shot figcaption {
  margin-top: 0.55rem;
  color: var(--soft);
  font-size: 0.85rem;
  text-align: center;
}

.page-panel h2,
.page-panel h3 {
  margin-bottom: 0.45rem;
}

.page-panel p,
.page-panel li {
  color: var(--muted);
}

.link-list {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  list-style: none;
}

.link-list a {
  display: block;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.link-list a:hover {
  border-color: rgba(80, 227, 194, 0.45);
}

.seo-copy {
  display: grid;
  gap: 1rem;
}

.seo-copy h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
}

.seo-copy p,
.seo-copy li {
  color: var(--muted);
}

.direct-answer {
  border: 1px solid rgba(80, 227, 194, 0.26);
  border-radius: 0.65rem;
  padding: 1.35rem;
  background:
    linear-gradient(135deg, rgba(80, 227, 194, 0.1), rgba(245, 200, 107, 0.055)),
    rgba(15, 26, 29, 0.88);
  box-shadow: 0 1rem 2.5rem var(--shadow);
}

.direct-answer h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.direct-answer p {
  max-width: 58rem;
  margin-bottom: 0;
  color: var(--text);
  font-size: 1.08rem;
}

.checklist-wide {
  margin: 0;
}

.legal-page h2 {
  margin-top: 2.3rem;
  margin-bottom: 0.6rem;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
}

.legal-page code,
.bug-template {
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.04);
}

.bug-template {
  overflow: auto;
  padding: 1rem;
  color: var(--text);
}

@media (min-width: 861px) and (max-height: 780px) {
  .hero {
    min-height: auto;
    gap: 2rem;
    padding-top: 1rem;
  }

  .hero h1 {
    margin-bottom: 0.75rem;
    font-size: clamp(3rem, 7vw, 4.9rem);
  }

  .hero .lead {
    font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  }

  .hero .supporting {
    font-size: 0.98rem;
  }

  .hero .cta-row {
    margin-top: 1rem;
  }

  .phone-preview.hero-shot {
    width: min(100%, 19rem);
  }
}

html.analytics-consent-locked,
body.analytics-consent-locked {
  overflow: hidden;
}

.analytics-consent-backdrop {
  position: fixed;
  inset: 0;
  z-index: 44;
  background:
    radial-gradient(circle at 50% 42%, rgba(80, 227, 194, 0.12), transparent 24rem),
    rgba(2, 7, 8, 0.76);
  backdrop-filter: blur(5px);
}

.analytics-consent-backdrop[hidden] {
  display: none;
}

.analytics-consent {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 46;
  display: grid;
  width: min(28rem, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  gap: 0.75rem;
  overflow: auto;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(143, 247, 220, 0.4);
  border-radius: 0.5rem;
  padding: 0.85rem;
  background: linear-gradient(180deg, rgba(19, 36, 40, 0.98) 0%, rgba(8, 18, 20, 0.98) 100%);
  box-shadow:
    0 1rem 2.8rem rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(80, 227, 194, 0.08),
    0 0 2rem rgba(80, 227, 194, 0.08);
  backdrop-filter: blur(20px);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(143, 247, 220, 0.35));
}

.analytics-consent-main {
  display: grid;
  grid-template-columns: 2.45rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
}

.analytics-consent-icon {
  display: block;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(143, 247, 220, 0.18);
  border-radius: 0.45rem;
  background:
    url("/icon-192.png") center / 145% no-repeat,
    rgba(15, 26, 29, 0.9);
  box-shadow: 0 0.55rem 1.35rem rgba(0, 0, 0, 0.3);
}

.analytics-consent-kicker {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0.35rem;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.analytics-consent-copy strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
}

.analytics-consent-copy p {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.analytics-consent-details {
  border: 1px solid rgba(170, 220, 212, 0.11);
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
}

.analytics-consent-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.55rem 0.65rem;
  color: var(--accent-strong);
  font-size: 0.83rem;
  font-weight: 800;
  list-style: none;
}

.analytics-consent-details summary::-webkit-details-marker {
  display: none;
}

.analytics-consent-details summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: rgba(80, 227, 194, 0.08);
  color: var(--accent-strong);
  font-weight: 900;
}

.analytics-consent-details[open] summary::after {
  content: "-";
}

.analytics-consent-details p {
  margin: 0;
  padding: 0 0.65rem 0.65rem;
  color: var(--soft);
  font-size: 0.82rem;
  line-height: 1.4;
}

.analytics-consent-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  align-items: center;
}

.analytics-consent-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  width: 100%;
  border-radius: 0.42rem;
  padding: 0.62rem 0.7rem;
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
}

.analytics-consent-button:hover {
  transform: translateY(-1px);
}

.analytics-consent-accept {
  border-color: rgba(80, 227, 194, 0.58);
  background: linear-gradient(180deg, #64f0cf 0%, #2bb99b 100%);
  color: #05201b;
}

.analytics-consent-decline {
  background: rgba(255, 255, 255, 0.028);
  color: var(--muted);
}

.analytics-consent-decline:hover {
  border-color: rgba(170, 220, 212, 0.28);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.analytics-consent-footer {
  display: flex;
  justify-content: center;
}

.analytics-consent-link {
  color: var(--soft);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.analytics-consent-link:hover {
  color: var(--accent-strong);
  text-decoration: underline;
}

.conversion-dock {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: grid;
  width: auto;
  gap: 0.75rem;
}

.conversion-dock-details {
  display: grid;
  width: min(23rem, calc(100vw - 2rem));
  gap: 0.65rem;
  border: 1px solid rgba(80, 227, 194, 0.32);
  border-radius: 0.75rem;
  padding: 0.9rem;
  background: rgba(7, 16, 18, 0.94);
  box-shadow: 0 1.25rem 3.5rem rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(18px);
}

.conversion-dock-details:not([open]) {
  width: auto;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.conversion-dock-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.1rem;
  margin: 0;
  cursor: pointer;
  list-style: none;
}

.conversion-dock-details summary::-webkit-details-marker {
  display: none;
}

.conversion-dock-details:not([open]) summary {
  justify-content: center;
  width: 4.1rem;
  height: 4.1rem;
  border: 1px solid rgba(80, 227, 194, 0.5);
  border-radius: 999px;
  padding: 0;
  background:
    url("/icon-192.png") center / 128% no-repeat,
    rgba(7, 16, 18, 0.94);
  box-shadow: 0 0.9rem 2.4rem rgba(0, 0, 0, 0.42);
}

.conversion-dock-details:not([open]) .dock-summary-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.conversion-dock-details:not([open]) .dock-summary-indicator {
  display: none;
}

.dock-summary-copy {
  display: grid;
  min-width: 0;
  gap: 0.1rem;
}

.dock-summary-copy strong {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.2;
}

.dock-summary-copy span,
.dock-copy {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.dock-copy {
  margin: 0;
}

.dock-summary-indicator {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.85rem;
  height: 1.85rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  color: var(--accent-strong);
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease;
}

.conversion-dock-details[open] .dock-summary-indicator {
  transform: rotate(45deg);
}

.conversion-dock-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.dock-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  padding: 0.55rem 0.65rem;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: none;
}

.dock-button:hover {
  border-color: rgba(80, 227, 194, 0.5);
  transform: translateY(-1px);
}

.dock-primary {
  border-color: rgba(80, 227, 194, 0.58);
  background: linear-gradient(180deg, #64f0cf 0%, #2bb99b 100%);
  color: #05201b;
}

@media (max-width: 860px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    background: rgba(7, 16, 18, 0.96);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2rem;
  }

  .content-hero {
    grid-template-columns: 1fr;
  }

  .phone-preview,
  .phone-showcase {
    justify-self: stretch;
    width: min(100%, 22rem);
    margin: 0 auto;
  }

  .phone-screen {
    min-height: 29rem;
  }

  .grid,
  .grid.two,
  .feature-list,
  .social-grid,
  .hub-grid,
  .conversion-steps,
  .check-list,
  .footer-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .screen-step,
  .screen-step:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .screen-step:nth-child(even) > div:first-child {
    order: 0;
  }

  .screenshot-frame {
    width: min(100%, 18.5rem);
  }

  .panel-shot {
    width: 100%;
  }

  .app-screen-frame {
    width: min(100%, 16rem);
    max-height: 68vh;
  }

  .hub-card {
    min-height: 0;
    padding: 0.9rem;
  }

  .nav,
  .topbar {
    align-items: stretch;
    flex-direction: column;
    gap: 0.55rem;
    position: relative;
    width: min(100% - 1.25rem, var(--max));
    padding: 0.55rem 0 0.6rem;
  }

  .brand {
    align-self: flex-start;
    min-width: 0;
    gap: 0.65rem;
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 2.8rem;
    height: 2.8rem;
    border-radius: 0.65rem;
  }

  .nav-links {
    width: 100%;
    max-width: none;
    gap: 0.45rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.05rem 0.05rem 0.45rem;
    scrollbar-color: rgba(80, 227, 194, 0.45) rgba(255, 255, 255, 0.08);
    scrollbar-width: thin;
    white-space: nowrap;
  }

  .nav-links::-webkit-scrollbar {
    height: 0.35rem;
  }

  .nav-links::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-links::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(80, 227, 194, 0.5);
  }

  .nav-links a {
    flex: 0 0 auto;
    border: 1px solid rgba(170, 220, 212, 0.14);
    border-radius: 999px;
    padding: 0.38rem 0.65rem;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.15;
  }

  .language-switcher {
    position: absolute;
    top: 0.58rem;
    right: 0;
  }

  .language-switcher summary {
    min-width: 3.55rem;
    min-height: 2rem;
    padding: 0.28rem 0.55rem;
    font-size: 0.74rem;
  }

  .language-menu {
    width: min(12.5rem, calc(100vw - 2rem));
  }

  .language-option {
    min-height: 2.1rem;
    padding: 0.42rem 0.5rem;
  }

  .language-option span,
  .language-option small {
    font-size: 0.74rem;
  }

  .discord-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .analytics-consent {
    top: 50%;
    right: 0.75rem;
    bottom: auto;
    left: 0.75rem;
    width: auto;
    max-height: calc(100dvh - 1.5rem);
    padding: 0.85rem;
    transform: translateY(-50%);
  }

  .analytics-consent-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .analytics-consent-link {
    grid-column: 1 / -1;
    text-align: center;
  }

  .conversion-dock {
    right: 0.85rem;
    bottom: 0.85rem;
    left: auto;
    width: auto;
    grid-template-columns: minmax(0, 1fr);
  }

  .conversion-dock-details {
    width: min(20rem, calc(100vw - 1.7rem));
    gap: 0.55rem;
    border: 1px solid rgba(80, 227, 194, 0.32);
    border-radius: 0.75rem;
    padding: 0.75rem;
    background: rgba(7, 16, 18, 0.95);
    box-shadow: 0 1rem 2.8rem rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(18px);
  }

  .conversion-dock-details:not([open]) summary {
    width: 3.65rem;
    height: 3.65rem;
  }
}

@media (max-width: 520px) {
  .cta-row,
  .button {
    width: 100%;
  }

  h1 {
    font-size: 3.15rem;
  }

  .brand-mark {
    width: 2.55rem;
    height: 2.55rem;
  }

  .nav,
  .topbar {
    gap: 0.5rem;
    padding: 0.5rem 0 0.55rem;
  }

  .brand {
    gap: 0.55rem;
    font-size: 0.92rem;
  }

  .nav-links {
    max-width: none;
    gap: 0.4rem;
    font-size: 0.8rem;
  }

  .nav-links a {
    padding: 0.34rem 0.55rem;
  }

  .screen-step {
    padding: 0.85rem;
  }

  .phone-preview,
  .phone-showcase {
    width: min(100%, 20rem);
    padding: 0.65rem;
  }

  .screenshot-frame,
  .panel-shot {
    width: min(100%, 17.25rem);
  }

  .panel-shot {
    width: 100%;
  }

  .app-screen-frame {
    width: min(100%, 14.75rem);
    max-height: 64vh;
  }

  .hub-card {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.7rem;
  }

  .hub-card-icon {
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 0.48rem;
  }

  .hub-card-arrow {
    display: none;
  }

  .hub-card-text {
    font-size: 0.88rem;
  }

  .analytics-consent {
    max-height: calc(100dvh - 1.5rem);
    padding-bottom: calc(0.85rem + env(safe-area-inset-bottom));
  }

  .analytics-consent-main {
    grid-template-columns: 2.2rem minmax(0, 1fr);
  }

  .analytics-consent-icon {
    width: 2.2rem;
    height: 2.2rem;
  }

  .analytics-consent-actions {
    grid-template-columns: 1fr;
  }

  .conversion-dock {
    gap: 0.55rem;
  }

  .conversion-dock-details summary {
    gap: 0.45rem;
  }

  .dock-summary-copy {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.45rem;
    align-items: baseline;
  }

  .dock-summary-copy span,
  .dock-copy {
    font-size: 0.76rem;
  }
}
