@font-face {
  font-family: "Exo 2";
  src: url("/assets/fonts/Exo2-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("/assets/fonts/Exo2-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("/assets/fonts/Exo2-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("/assets/fonts/Exo2-SemiBoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Exo 2";
  src: url("/assets/fonts/Exo2-ExtraBoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0b0d10;
  --surface: #111318;
  --surface-strong: #171a20;
  --text: #f7f8f8;
  --muted: #a8adb7;
  --muted-strong: #cfd2d8;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.22);
  --keep: #2ee86b;
  --delete: #ff5e62;
  --aqua: #71e6ed;
  --pink: #f27fe6;
  --gold: #ffbf3f;
  --max: 1180px;
  --content: 760px;
  --radius: 8px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Exo 2", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
}

:focus-visible {
  outline: 3px solid var(--aqua);
  outline-offset: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--text);
  color: #000;
  border-radius: var(--radius);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: calc(100% - 48px);
  max-width: var(--max);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--aqua);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading h2 {
  margin-bottom: 14px;
  font-size: 3rem;
  line-height: 1.08;
  font-style: italic;
  font-weight: 800;
}

.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 800;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 22%;
  box-shadow: 0 10px 26px rgba(113, 230, 237, 0.18);
}

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

.language-switcher {
  position: relative;
  flex: 0 0 auto;
}

.language-select {
  width: 142px;
  height: 38px;
  padding: 0 30px 0 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101216;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}

.language-select:hover {
  border-color: var(--line-strong);
  color: var(--text);
}

.desktop-nav a:not(.nav-download) {
  padding: 9px 12px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
}

.desktop-nav a:not(.nav-download):hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-download,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--text);
  color: #070707;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease;
}

.nav-download {
  margin-left: 8px;
}

.nav-download:hover,
.button:hover {
  transform: translateY(-2px);
  background: var(--aqua);
}

.button-secondary {
  background: transparent;
  color: var(--text);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
}

.menu-button {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-lines::before {
  top: -6px;
}

.menu-lines::after {
  top: 6px;
}

.menu-button[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 72px 0 auto;
  z-index: 90;
  padding: 18px 24px 26px;
  border-bottom: 1px solid var(--line);
  background: #08090b;
  box-shadow: var(--shadow);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: block;
  padding: 13px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.mobile-nav .nav-download {
  margin: 18px 0 0;
  border-bottom: 0;
}

.privacy-banner {
  border-top: 1px solid rgba(113, 230, 237, 0.2);
  border-bottom: 1px solid var(--line);
  background: #0a0e10;
}

.privacy-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 18px;
  padding-block: 10px;
  text-align: center;
}

.privacy-banner p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.9rem;
}

.privacy-banner strong {
  color: var(--aqua);
}

.privacy-banner a {
  flex: 0 0 auto;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.download-badge {
  margin-top: 20px;
  text-align: center;
}

.feature-heading {
  margin-bottom: 0;
}

.guides-more {
  margin-top: 28px;
}

.hero {
  position: relative;
  isolation: isolate;
  height: calc(100svh - 88px);
  min-height: 640px;
  max-height: 840px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #030303;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, #030303 0%, #030303 43%, rgba(3, 3, 3, 0.86) 58%, rgba(3, 3, 3, 0.16) 100%);
  content: "";
}

.hero-shell {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 4;
  width: 57%;
  max-width: 690px;
  padding: 36px 0 76px;
  animation: hero-copy-in 700ms ease both;
}

.hero-product {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-product img {
  width: 34px;
  height: 34px;
  border-radius: 22%;
}

.hero h1 {
  max-width: 670px;
  margin-bottom: 22px;
  font-size: 4.85rem;
  line-height: 0.98;
  font-style: italic;
  font-weight: 800;
}

.hero h1 span {
  display: block;
  color: var(--aqua);
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--muted-strong);
  font-size: 1.2rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.app-store-badge {
  display: inline-block;
  border-radius: var(--radius);
  transition: transform 160ms ease, opacity 160ms ease;
}

.app-store-badge:hover {
  transform: translateY(-2px);
  opacity: 0.94;
}

.app-store-badge img {
  width: auto;
  height: 54px;
}

.hero-note {
  color: var(--muted);
  font-size: 0.88rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.trust-item {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted-strong);
  background: rgba(5, 5, 5, 0.48);
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-visual {
  position: absolute;
  inset: 0 -40px 0 auto;
  z-index: -2;
  width: 63%;
  animation: hero-visual-in 800ms 80ms ease both;
}

.hero-phone {
  position: absolute;
  width: 290px;
  aspect-ratio: 600 / 1298;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: #000;
  box-shadow: var(--shadow);
}

.hero-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-phone-one {
  top: 7%;
  right: 24%;
  transform: rotate(-5deg);
}

.hero-phone-two {
  top: 3%;
  right: -2%;
  transform: rotate(5deg);
}

.hero-phone-three {
  top: 35%;
  right: 9%;
  width: 245px;
  transform: rotate(1deg);
}

.scroll-cue {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 5;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  transform: translateX(-50%);
}

.download-band {
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.download-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 64px;
}

.download-copy {
  display: flex;
  align-items: center;
  gap: 22px;
}

.download-copy .app-icon-large {
  width: 112px;
  height: 112px;
  flex: 0 0 auto;
  border-radius: 22%;
  box-shadow: 0 18px 50px rgba(113, 230, 237, 0.2);
}

.download-copy h2 {
  margin-bottom: 8px;
  font-size: 2rem;
  font-style: italic;
  font-weight: 800;
}

.download-copy p {
  margin-bottom: 0;
  color: var(--muted);
}

.download-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.download-fact {
  min-width: 0;
  padding: 15px 12px;
  text-align: center;
}

.download-fact + .download-fact {
  border-left: 1px solid var(--line);
}

.download-fact strong,
.download-fact span {
  display: block;
}

.download-fact strong {
  font-size: 1.05rem;
}

.download-fact span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.screenshot-section {
  overflow: hidden;
  background: #050505;
}

.screenshot-track {
  display: flex;
  gap: 18px;
  padding: 2px max(24px, calc((100% - var(--max)) / 2)) 28px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--line-strong) transparent;
}

.screenshot-item {
  width: 292px;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.screenshot-item img {
  width: 100%;
  aspect-ratio: 600 / 1298;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.42);
}

.screenshot-item p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.steps-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.step {
  min-height: 250px;
  padding: 30px;
}

.step + .step {
  border-left: 1px solid var(--line);
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--aqua);
  font-weight: 700;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 800;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 72px;
}

.feature-media {
  position: relative;
  min-height: 650px;
}

.feature-media img {
  position: absolute;
  width: 280px;
  aspect-ratio: 600 / 1298;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-media img:first-child {
  top: 0;
  left: 0;
  transform: rotate(-3deg);
}

.feature-media img:last-child {
  right: 0;
  bottom: 0;
  transform: rotate(3deg);
}

.feature-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.feature-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-list strong {
  color: var(--aqua);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.feature-list span {
  color: var(--muted-strong);
}

.guides-section {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

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

.guide-card {
  display: flex;
  min-height: 255px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.guide-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: var(--surface-strong);
}

.guide-card .guide-tag {
  margin-bottom: 36px;
  color: var(--aqua);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.guide-card h3 {
  margin-bottom: 10px;
  font-size: 1.32rem;
  line-height: 1.25;
  font-style: italic;
  font-weight: 800;
}

.guide-card p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.94rem;
}

.guide-card .text-link {
  margin-top: auto;
}

.text-link {
  color: var(--text);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(113, 230, 237, 0.55);
  text-underline-offset: 4px;
}

.text-link:hover {
  color: var(--aqua);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faq-item {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.faq-item summary {
  position: relative;
  padding: 21px 52px 21px 22px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--aqua);
  font-size: 1.3rem;
  content: "+";
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-answer p {
  margin-bottom: 12px;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.cta-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #07090a;
}

.cta-section::after {
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--aqua), var(--pink), var(--delete), var(--gold), var(--keep));
  content: "";
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
}

.cta-copy h2 {
  margin-bottom: 14px;
  font-size: 3.2rem;
  line-height: 1.05;
  font-style: italic;
  font-weight: 800;
}

.cta-copy p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.site-footer {
  padding: 42px 0;
  background: #030303;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 48px;
}

.footer-brand p {
  max-width: 360px;
  margin: 16px 0 0;
  font-size: 0.9rem;
}

.footer-column h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 0.88rem;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  font-size: 0.9rem;
}

.footer-column a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

/* Legal pages */
.legal-page {
  min-height: 70vh;
  padding: 72px 0 96px;
  background: var(--bg);
}

.legal-shell {
  max-width: 860px;
}

.legal-page h1 {
  margin-bottom: 8px;
  font-size: 3.5rem;
  line-height: 1.05;
  font-style: italic;
  font-weight: 800;
  hyphens: auto;
  overflow-wrap: anywhere;
}

.legal-page h2 {
  margin: 42px 0 14px;
  font-size: 1.55rem;
  line-height: 1.2;
  font-style: italic;
  font-weight: 800;
}

.legal-page p,
.legal-page li {
  color: #d3d6dc;
}

.legal-page a {
  color: var(--aqua);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-date {
  color: var(--muted) !important;
}

.legal-intro {
  margin: 28px 0;
  font-size: 1.08rem;
}

.legal-highlight,
.legal-operator {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.legal-highlight {
  border-left: 4px solid var(--aqua);
  color: var(--muted-strong);
}

.legal-operator {
  margin-top: 54px;
}

.legal-operator p:last-child {
  margin-bottom: 0;
}

/* Guide pages */
.guide-hero {
  padding: 82px 0 58px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.8rem;
}

.breadcrumbs a:hover {
  color: var(--text);
}

.guide-hero h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: 4rem;
  line-height: 1.05;
  font-style: italic;
  font-weight: 800;
}

.guide-dek {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--muted-strong);
  font-size: 1.22rem;
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.8rem;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--content)) 240px;
  justify-content: center;
  gap: 72px;
  padding: 72px 0 96px;
}

.guide-content {
  min-width: 0;
}

.guide-content h2 {
  margin: 56px 0 18px;
  font-size: 2.05rem;
  line-height: 1.2;
  font-style: italic;
  font-weight: 800;
}

.guide-content h2:first-child {
  margin-top: 0;
}

.guide-content h3 {
  margin: 34px 0 12px;
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 700;
}

.guide-content p,
.guide-content li {
  color: #d3d6dc;
  font-size: 1.03rem;
}

.guide-content p {
  margin-bottom: 18px;
}

.guide-content ul,
.guide-content ol {
  margin: 0 0 22px;
  padding-left: 24px;
}

.guide-content li + li {
  margin-top: 9px;
}

.answer-box {
  margin-bottom: 34px;
  padding: 22px 24px;
  border-left: 4px solid var(--aqua);
  background: var(--surface);
}

.answer-box strong {
  display: block;
  margin-bottom: 8px;
  color: var(--aqua);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.answer-box p:last-child {
  margin-bottom: 0;
}

.warning-box {
  margin: 28px 0;
  padding: 20px 22px;
  border: 1px solid rgba(255, 191, 63, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 191, 63, 0.07);
}

.warning-box strong {
  color: var(--gold);
}

.guide-figure {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0;
}

.guide-figure img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.guide-figure figcaption {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.82rem;
}

.inline-cta {
  display: grid;
  grid-template-columns: 145px 1fr;
  align-items: center;
  gap: 26px;
  margin: 48px 0;
  padding: 26px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.inline-cta img.app-preview {
  width: 145px;
  aspect-ratio: 600 / 1298;
  border-radius: var(--radius);
  object-fit: cover;
}

.inline-cta h2,
.inline-cta h3 {
  margin: 0 0 10px;
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 800;
}

.inline-cta p {
  margin-bottom: 18px;
  color: var(--muted);
}

.inline-cta .app-store-badge img {
  width: auto;
  height: 44px;
}

.guide-sidebar {
  position: sticky;
  top: 104px;
  align-self: start;
}

.guide-sidebar h2 {
  margin-bottom: 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.guide-sidebar a {
  display: block;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
}

.guide-sidebar a:hover {
  color: var(--text);
}

.related-guides {
  padding: 72px 0;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}

.related-guides h2 {
  margin-bottom: 28px;
  font-size: 2rem;
  font-style: italic;
  font-weight: 800;
}

.guides-index-hero {
  padding: 92px 0 68px;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.guides-index-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 4rem;
  line-height: 1.05;
  font-style: italic;
  font-weight: 800;
}

.guides-index-hero p {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted-strong);
  font-size: 1.15rem;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-visual-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero-content {
    width: 67%;
  }

  .hero h1 {
    font-size: 4.25rem;
  }

  .hero-visual {
    right: -120px;
    width: 70%;
    opacity: 0.72;
  }

  .download-grid,
  .feature-band {
    gap: 40px;
  }

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

  .guide-layout {
    grid-template-columns: minmax(0, var(--content));
  }

  .guide-sidebar {
    display: none;
  }
}

@media (max-width: 820px) {
  .shell {
    width: calc(100% - 36px);
  }

  .section {
    padding: 74px 0;
  }

  .section-heading h2 {
    font-size: 2.45rem;
  }

  .hero::before {
    background: linear-gradient(90deg, #030303 0%, rgba(3, 3, 3, 0.96) 46%, rgba(3, 3, 3, 0.62) 76%, rgba(3, 3, 3, 0.28) 100%);
  }

  .hero-content {
    width: 82%;
  }

  .hero h1 {
    font-size: 3.65rem;
  }

  .hero-lead {
    font-size: 1.05rem;
  }

  .hero-visual {
    right: -210px;
    width: 86%;
  }

  .download-grid,
  .feature-band,
  .cta-inner {
    grid-template-columns: 1fr;
  }

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

  .step {
    min-height: 0;
  }

  .step + .step {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .feature-media {
    min-height: 560px;
  }

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

  .cta-copy h2 {
    font-size: 2.55rem;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .guide-hero h1,
  .guides-index-hero h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 64px;
  }

  .mobile-nav {
    inset: 64px 0 auto;
  }

  .privacy-banner-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    min-height: 0;
    padding-block: 11px;
    text-align: left;
  }

  .privacy-banner p {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .privacy-banner a {
    font-size: 0.8rem;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
  }

  .nav-shell {
    gap: 10px;
  }

  .language-select {
    width: 122px;
    padding-left: 8px;
    font-size: 0.74rem;
  }

  .legal-page {
    padding: 56px 0 72px;
  }

  .legal-page h1 {
    font-size: 2rem;
  }

  .hero {
    height: calc(100svh - 110px);
    min-height: 580px;
    max-height: 720px;
  }

  .hero-shell {
    align-items: flex-start;
  }

  .hero-content {
    width: 100%;
    padding: 38px 0 24px;
  }

  .hero-product {
    margin-bottom: 10px;
  }

  .hero h1 {
    max-width: 430px;
    margin-bottom: 16px;
    font-size: 2.65rem;
    line-height: 1.02;
  }

  .hero-lead {
    max-width: 410px;
    margin-bottom: 18px;
    font-size: 0.94rem;
  }

  .hero-actions {
    gap: 12px;
  }

  .app-store-badge img {
    height: 46px;
  }

  .hero-note {
    font-size: 0.78rem;
  }

  .trust-row {
    max-width: 310px;
    gap: 6px;
    margin-top: 16px;
  }

  .trust-item {
    padding: 5px 7px;
    font-size: 0.72rem;
  }

  .hero-visual {
    inset: auto -90px -280px auto;
    width: 680px;
    height: 650px;
    opacity: 0.46;
  }

  .hero-phone {
    width: 220px;
  }

  .hero-phone-one {
    top: 0;
    right: 37%;
  }

  .hero-phone-two {
    top: 4%;
    right: 4%;
  }

  .hero-phone-three {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .download-copy {
    align-items: flex-start;
  }

  .download-copy .app-icon-large {
    width: 80px;
    height: 80px;
  }

  .download-copy h2 {
    font-size: 1.55rem;
  }

  .download-facts {
    grid-template-columns: 1fr;
  }

  .download-fact + .download-fact {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .screenshot-item {
    width: 244px;
  }

  .feature-media {
    min-height: 470px;
  }

  .feature-media img {
    width: 210px;
  }

  .feature-list li {
    grid-template-columns: 1fr;
    gap: 5px;
  }

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

  .guide-card {
    min-height: 220px;
  }

  .cta-copy h2 {
    font-size: 2.15rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .guide-hero,
  .guides-index-hero {
    padding: 60px 0 44px;
  }

  .guide-hero h1,
  .guides-index-hero h1 {
    font-size: 2.55rem;
  }

  .guide-dek,
  .guides-index-hero p {
    font-size: 1.05rem;
  }

  .guide-layout {
    padding: 52px 0 72px;
  }

  .guide-content h2 {
    font-size: 1.75rem;
  }

  .guide-figure {
    grid-template-columns: 1fr;
  }

  .inline-cta {
    grid-template-columns: 1fr;
  }

  .inline-cta img.app-preview {
    width: 150px;
  }
}

@media (max-width: 360px) {
  .nav-shell .brand span {
    display: none;
  }
}

@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;
  }
}
