:root {
  color-scheme: dark;
  --bg: #05070c;
  --bg-deep: #020307;
  --panel: rgba(14, 22, 36, 0.78);
  --panel-solid: #101827;
  --text: #f5f7fb;
  --muted: #b9c2d0;
  --subtle: #7d8798;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --red: #f12b3f;
  --red-deep: #9d111f;
  --blue: #2d6fca;
  --red-glow: rgba(241, 43, 63, 0.28);
  --blue-glow: rgba(45, 111, 202, 0.18);
  --max: 1160px;
  --read: 900px;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% -8%, rgba(241, 43, 63, 0.2), transparent 26rem),
    radial-gradient(circle at 88% 2%, rgba(45, 111, 202, 0.18), transparent 28rem),
    linear-gradient(180deg, #09111d 0%, var(--bg) 42%, var(--bg-deep) 100%);
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 100% 6px, 6px 100%;
  mask-image: linear-gradient(180deg, black 0%, transparent 72%);
  opacity: 0.45;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

p {
  margin: 0;
}

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

.site-header {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - 32px), var(--max));
  margin: 12px auto 0;
  padding: 10px 12px;
  background: rgba(5, 8, 14, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34), 0 0 34px rgba(241, 43, 63, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  color: var(--text);
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo-wrap {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  background: #020307;
  border: 1px solid rgba(241, 43, 63, 0.36);
  border-radius: var(--radius);
  box-shadow: 0 0 26px rgba(241, 43, 63, 0.25);
}

.brand-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a {
  min-height: 38px;
  padding: 8px 11px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.1);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

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

h1 {
  font-size: clamp(3rem, 8vw, 5.9rem);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

h3 {
  font-size: 1.1rem;
}

.eyebrow {
  margin: 0 0 12px;
  color: #ff7f8a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero,
.section,
.benefit-grid,
.notice-section,
.home-support-banner,
.home-support-line,
.page-main,
.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding-right: 24px;
  padding-left: 24px;
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  padding-top: 64px;
  padding-bottom: 54px;
}

.home-hero::before {
  position: absolute;
  top: 30px;
  right: 6%;
  z-index: -1;
  width: min(760px, 70vw);
  height: 430px;
  content: "";
  background:
    radial-gradient(circle at 66% 38%, rgba(241, 43, 63, 0.2), transparent 36%),
    radial-gradient(circle at 36% 58%, rgba(45, 111, 202, 0.13), transparent 48%);
  filter: blur(4px);
}

.home-hero-copy {
  display: grid;
  justify-items: start;
  align-content: center;
}

.home-hero h1 {
  max-width: 720px;
  font-size: clamp(2.65rem, 3.9vw, 3.85rem);
}

.hero-logo {
  width: 108px;
  height: 108px;
  margin-bottom: 18px;
  object-fit: cover;
  border: 1px solid rgba(241, 43, 63, 0.32);
  border-radius: var(--radius);
  box-shadow: 0 0 34px rgba(241, 43, 63, 0.2);
}

.hero-subtitle {
  max-width: 660px;
  margin-top: 14px;
  color: var(--text);
  font-size: clamp(1.24rem, 2.4vw, 1.85rem);
  font-weight: 850;
}

.hero-text,
.page-hero p,
.passion-section p,
.feature-copy p,
.final-cta p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.home-hero .hero-text {
  max-width: 500px;
  font-size: clamp(1.03rem, 1.5vw, 1.22rem);
}

.format-strip {
  margin-top: 20px;
  padding: 8px 13px;
  color: #d9e0eb;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 28px;
}

.home-hero .button {
  white-space: nowrap;
}

.home-hero-visual {
  position: relative;
  overflow: hidden;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(5, 9, 17, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.34), 0 0 40px rgba(241, 43, 63, 0.08);
}

.home-hero-visual::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
}

.home-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  border-radius: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 16px 42px rgba(241, 43, 63, 0.3);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid var(--line);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: 2px solid rgba(255, 255, 255, 0.18);
  outline-offset: 3px;
}

.feature-media,
.benefit-card,
.content-card,
.contact-panel,
.content-panel,
.final-cta,
.passion-section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026)),
    linear-gradient(135deg, rgba(241, 43, 63, 0.045), rgba(45, 111, 202, 0.05));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.feature-media::before,
.benefit-card::before,
.content-card::before,
.contact-panel::before,
.content-panel::before,
.final-cta::before,
.passion-section::before {
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);
}

.passion-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
  max-width: 980px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.passion-section h2 {
  max-width: 560px;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.passion-section p {
  margin-top: 0;
}

.download-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  gap: 28px;
  align-items: center;
  max-width: 980px;
  margin: 28px auto 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.072), rgba(255, 255, 255, 0.026)),
    linear-gradient(135deg, rgba(241, 43, 63, 0.065), rgba(45, 111, 202, 0.045));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3), 0 0 42px rgba(241, 43, 63, 0.08);
}

.download-copy p:not(.eyebrow) {
  max-width: 640px;
  margin-top: 14px;
  color: var(--muted);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.play-store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  padding: 12px 18px;
  color: var(--text);
  background: rgba(5, 8, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28), 0 0 24px rgba(241, 43, 63, 0.08);
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.play-store-button:hover,
.play-store-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(12, 17, 28, 0.86);
  border-color: rgba(241, 43, 63, 0.34);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.34), 0 0 34px rgba(241, 43, 63, 0.12);
  outline: none;
}

.play-store-icon {
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 15px solid var(--red);
  filter: drop-shadow(0 0 8px rgba(241, 43, 63, 0.55));
}

.download-mockup {
  display: grid;
  justify-items: center;
}

.mockup-phone {
  width: min(100%, 300px);
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.026)),
    #060a12;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 28px 70px rgba(0, 0, 0, 0.34);
}

.mockup-topbar {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: 0.9rem;
}

.mockup-topbar span {
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(241, 43, 63, 0.72);
}

.mockup-card {
  margin-top: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.mockup-card small,
.mockup-card span {
  display: block;
  color: var(--muted);
}

.mockup-card strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 1.45rem;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.mockup-grid span {
  min-height: 34px;
  padding: 7px 8px;
  color: #ffd7db;
  background: rgba(241, 43, 63, 0.11);
  border: 1px solid rgba(241, 43, 63, 0.22);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.mockup-scan {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 12px;
  background: rgba(45, 111, 202, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
}

.mockup-scan span {
  width: 38px;
  height: 20px;
  background: linear-gradient(90deg, transparent, rgba(241, 43, 63, 0.8), transparent);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(241, 43, 63, 0.42);
}

.mockup-scan p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 22px;
  padding-bottom: 34px;
}

.benefit-card {
  min-height: 168px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    radial-gradient(circle at 24px 24px, rgba(241, 43, 63, 0.075), transparent 112px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover,
.feature-showcase:hover,
.content-card:hover {
  transform: translateY(-3px);
  border-color: rgba(241, 43, 63, 0.28);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.34), 0 0 36px rgba(241, 43, 63, 0.08);
}

.feature-icon {
  display: inline-grid;
  width: 44px;
  height: 36px;
  place-items: center;
  margin-bottom: 16px;
  color: #ffffff;
  background: rgba(241, 43, 63, 0.12);
  border: 1px solid rgba(241, 43, 63, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 0 24px rgba(241, 43, 63, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
}

.home-feature-icon {
  position: relative;
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(241, 43, 63, 0.075);
  border: 1px solid rgba(241, 43, 63, 0.28);
  border-radius: 14px;
  box-shadow: 0 0 24px rgba(241, 43, 63, 0.1);
}

.home-feature-icon::before,
.home-feature-icon::after {
  position: absolute;
  content: "";
  border-color: rgba(255, 73, 90, 0.95);
  border-style: solid;
  filter: drop-shadow(0 0 8px rgba(241, 43, 63, 0.46));
}

.home-feature-icon-collection::before {
  width: 18px;
  height: 22px;
  border-width: 0 2px;
}

.home-feature-icon-collection::after {
  width: 28px;
  height: 18px;
  border-width: 0 2px;
}

.home-feature-icon-scan::before {
  width: 26px;
  height: 18px;
  border-width: 0 2px;
}

.home-feature-icon-scan::after {
  width: 2px;
  height: 26px;
  background: rgba(255, 73, 90, 0.95);
  border: 0;
}

.home-feature-icon-stats::before {
  width: 24px;
  height: 24px;
  border-width: 0 0 2px 2px;
}

.home-feature-icon-stats::after {
  width: 20px;
  height: 22px;
  background:
    linear-gradient(to top, rgba(255, 73, 90, 0.95) 0 30%, transparent 30% 100%) 0 100% / 4px 100% no-repeat,
    linear-gradient(to top, rgba(255, 73, 90, 0.95) 0 58%, transparent 58% 100%) 8px 100% / 4px 100% no-repeat,
    linear-gradient(to top, rgba(255, 73, 90, 0.95) 0 82%, transparent 82% 100%) 16px 100% / 4px 100% no-repeat;
  border: 0;
}

.home-feature-icon-save::before {
  width: 24px;
  height: 18px;
  border-width: 2px;
  border-radius: 8px;
}

.home-feature-icon-save::after {
  width: 10px;
  height: 10px;
  border-width: 0 2px 2px 0;
  transform: translateY(-4px) rotate(45deg);
}

.benefit-card h2,
.content-card h2,
.content-panel h2 {
  font-size: 1.16rem;
}

.benefit-card p,
.content-card p,
.content-panel p,
.contact-panel p,
.check-list {
  margin-top: 12px;
  color: var(--muted);
}

.notice-section {
  margin-bottom: 44px;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.notice-section h2 {
  font-size: 1.06rem;
}

.notice-section p {
  margin-top: 8px;
  color: var(--muted);
}

.home-support-banner {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  margin-top: 2px;
  margin-bottom: 14px;
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-support-banner h2 {
  font-size: clamp(1.12rem, 2.1vw, 1.42rem);
}

.home-support-banner p {
  margin-top: 7px;
  color: var(--muted);
}

.home-support-line {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 0.94rem;
}

.home-support-line p {
  margin: 0;
}

.home-support-line a {
  color: var(--text);
  font-weight: 850;
  text-decoration: none;
}

.home-support-line a:hover,
.home-support-line a:focus-visible {
  color: #ff7f8a;
}

.page-main {
  padding-top: 58px;
  padding-bottom: 70px;
}

.page-hero {
  max-width: var(--read);
  margin-bottom: 30px;
}

.page-hero h1 {
  font-size: clamp(2.35rem, 7vw, 4.6rem);
}

.features-page {
  display: grid;
  gap: 22px;
}

.feature-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 28px;
  align-items: center;
  padding: 22px;
  background: rgba(8, 13, 22, 0.48);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-showcase-alt .feature-media {
  order: 2;
}

.feature-media {
  align-self: stretch;
  min-height: 420px;
  background: #03050a;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), 0 0 44px rgba(45, 111, 202, 0.08);
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
}

.feature-copy {
  padding: 12px 8px;
}

.check-list {
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 25px;
}

.check-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  background: linear-gradient(135deg, var(--red), #ffffff);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(241, 43, 63, 0.45);
  content: "";
}

.final-cta {
  max-width: var(--read);
  padding: 30px;
  margin: 16px auto 0;
  text-align: center;
}

.final-cta p {
  margin-right: auto;
  margin-left: auto;
}

.final-cta .button {
  margin-top: 24px;
}

.content-panel {
  max-width: var(--read);
  padding: 34px;
}

.legal-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.024)),
    linear-gradient(90deg, rgba(241, 43, 63, 0.05), transparent 36%);
}

.content-panel h2 + p,
.content-panel p + p {
  margin-top: 10px;
}

.content-panel h2 {
  margin-top: 32px;
  padding-top: 2px;
}

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

.content-panel h2::before {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(241, 43, 63, 0.7);
  content: "";
  vertical-align: 0.08em;
}

.content-panel a,
.site-footer a,
.contact-email,
.related-link a {
  color: #ff818b;
  text-underline-offset: 4px;
}

.last-updated,
.muted {
  color: var(--subtle);
}

.last-updated {
  padding-top: 26px;
  font-weight: 800;
}

.related-link {
  margin-top: 18px;
  font-weight: 800;
}

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

.content-card {
  padding: 30px;
}

.update-card {
  min-height: 360px;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 16px;
  padding: 5px 10px;
  color: #ffd7db;
  background: linear-gradient(180deg, rgba(241, 43, 63, 0.18), rgba(241, 43, 63, 0.07));
  border: 1px solid rgba(241, 43, 63, 0.28);
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-panel {
  max-width: var(--read);
  padding: 32px;
  margin-bottom: 24px;
}

.contact-page {
  display: grid;
  gap: 22px;
}

.page-hero-note {
  max-width: 760px;
  color: var(--muted);
  font-size: 1rem;
}

.contact-main-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  margin-bottom: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.024)),
    linear-gradient(135deg, rgba(241, 43, 63, 0.055), rgba(45, 111, 202, 0.035));
}

.contact-main-card h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.contact-email {
  display: inline-block;
  margin-top: 8px;
  color: #f4c7cc;
  font-size: clamp(1.02rem, 2.5vw, 1.32rem);
  font-weight: 850;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.contact-reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: var(--read);
}

.contact-reason-card {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  background: rgba(14, 22, 36, 0.64);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-reason-card:hover {
  transform: translateY(-2px);
  border-color: rgba(241, 43, 63, 0.24);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28), 0 0 26px rgba(241, 43, 63, 0.07);
}

.contact-reason-card h2 {
  font-size: 1rem;
}

.contact-reason-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: auto;
  padding: 8px 12px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
}

.contact-action:hover,
.contact-action:focus-visible {
  color: #ffffff;
  background: rgba(241, 43, 63, 0.13);
  border-color: rgba(241, 43, 63, 0.3);
  outline: none;
}

.contact-note {
  max-width: var(--read);
  margin: 0;
  color: var(--subtle);
  font-size: 0.94rem;
}

.support-page {
  display: grid;
  gap: 24px;
  max-width: var(--max);
  overflow-x: clip;
  isolation: isolate;
}

.support-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(28px, 3.8vw, 48px);
  align-items: center;
  max-width: 100%;
  min-height: min(660px, calc(100vh - 150px));
  padding: clamp(18px, 3.2vw, 36px) 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.support-hero::before {
  position: absolute;
  inset: -90px -54px -52px;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 83% 30%, rgba(241, 43, 63, 0.16), transparent 330px),
    radial-gradient(circle at 8% 82%, rgba(241, 43, 63, 0.09), transparent 270px),
    radial-gradient(circle at 20% 18%, rgba(45, 111, 202, 0.075), transparent 300px);
  filter: blur(2px);
  opacity: 0.9;
}

.support-title {
  max-width: 620px;
  font-size: clamp(3.15rem, 5.5vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.support-hero .hero-subtitle {
  max-width: 500px;
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  font-weight: 400;
  line-height: 1.55;
}

.support-copy p:not(.eyebrow):not(.hero-subtitle) {
  max-width: 480px;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 400;
}

.support-actions {
  margin-top: 28px;
}

.support-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 272px;
  min-height: 56px;
  padding: 0 36px;
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 88, 92, 0.98), rgba(201, 20, 43, 0.98));
  border: 1px solid rgba(255, 126, 126, 0.5);
  border-radius: 15px;
  box-shadow:
    0 22px 54px rgba(237, 30, 55, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.support-cta span[aria-hidden="true"] {
  font-size: 1.4rem;
  line-height: 1;
}

.support-cta:hover,
.support-cta:focus-visible {
  color: #fff;
  filter: brightness(1.06);
  box-shadow:
    0 26px 60px rgba(237, 30, 55, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.support-cta:active {
  filter: brightness(0.98);
  transform: translateY(0);
}

.support-cta:focus-visible {
  outline: 2px solid rgba(255, 125, 125, 0.85);
  outline-offset: 4px;
}

.support-secure {
  margin-top: 16px;
  font-size: 0.92rem;
}

.support-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.support-visual img {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  object-fit: contain;
  border-radius: 28px;
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(237, 30, 55, 0.08);
}

.support-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 100%;
}

.support-points article {
  min-height: 114px;
  padding: 18px 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.support-points article:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.support-points span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  margin-bottom: 10px;
  background: rgba(241, 43, 63, 0.075);
  border: 1px solid rgba(241, 43, 63, 0.16);
  border-radius: 50%;
}

.support-points span::before {
  width: 7px;
  height: 7px;
  content: "";
  background: #ff6f7d;
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(241, 43, 63, 0.45);
}

.support-points h2 {
  font-size: 1.08rem;
}

.support-points p {
  margin-top: 10px;
  color: var(--muted);
}

.support-thanks {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.support-thanks h2 {
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
}

.support-thanks p {
  margin-top: 8px;
  color: var(--muted);
}

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

.compact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: var(--read);
  padding-right: 0;
  padding-left: 0;
}

.feature-card {
  min-height: 160px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.feature-card h2 {
  font-size: 1.12rem;
}

.feature-card p {
  margin-top: 10px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(280px, 1.3fr) minmax(230px, 0.95fr);
  gap: 18px;
  align-items: center;
  max-width: var(--max);
  margin: 72px auto 0;
  padding: 26px 24px 30px;
  color: var(--muted);
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer strong {
  display: block;
  margin-bottom: 3px;
  color: var(--text);
  font-size: 0.98rem;
}

.site-footer p,
.site-footer a {
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 14px;
}

.footer-links a {
  color: #aeb8c8;
}

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 6px;
  text-align: right;
}

.footer-meta p {
  max-width: 360px;
  color: var(--subtle);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1020px) {
  .home-hero,
  .feature-showcase,
  .download-section,
  .support-hero,
  .two-column {
    grid-template-columns: 1fr;
  }

  .feature-showcase-alt .feature-media {
    order: 0;
  }

  .benefit-grid,
  .features-grid,
  .compact-grid,
  .contact-reason-grid,
  .support-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-hero {
    padding-top: 38px;
  }

  .home-hero-copy {
    max-width: 720px;
  }

  .home-hero-visual {
    max-width: 780px;
  }

  .support-hero {
    min-height: 0;
    gap: 30px;
  }

  .support-copy {
    max-width: 720px;
  }

  .support-visual {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 0;
    width: 100%;
    margin-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    top: 69px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 6px;
    padding: 12px;
    background: rgba(6, 9, 16, 0.96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px;
  }

  .home-hero,
  .section,
  .benefit-grid,
  .notice-section,
  .page-main,
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 54px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-meta {
    justify-items: center;
    text-align: center;
  }

  .home-hero {
    gap: 24px;
    padding-top: 34px;
    padding-bottom: 38px;
    text-align: center;
  }

  .home-hero-copy {
    justify-items: center;
  }

  .home-hero .hero-text {
    max-width: 100%;
  }

  .home-hero-visual {
    width: 100%;
    padding: 7px;
    border-radius: 18px;
  }

  .home-hero-visual img {
    border-radius: 13px;
  }

  .passion-section {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .download-actions,
  .button {
    width: 100%;
  }

  .home-hero .button {
    white-space: normal;
  }

  .home-support-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    text-align: center;
  }

  .home-support-line {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .support-hero {
    gap: 24px;
    padding: 26px 18px 10px;
  }

  .support-title {
    max-width: 100%;
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .support-hero .hero-subtitle,
  .support-copy p:not(.eyebrow):not(.hero-subtitle) {
    max-width: 100%;
  }

  .support-cta {
    width: 100%;
  }

  .support-visual {
    justify-content: center;
  }

  .support-visual img {
    border-radius: 20px;
  }

  .play-store-button {
    width: 100%;
  }

  .benefit-grid,
  .features-grid,
  .compact-grid,
  .contact-reason-grid,
  .support-points {
    grid-template-columns: 1fr;
  }

  .feature-showcase,
  .download-section,
  .support-hero,
  .content-panel,
  .content-card,
  .contact-panel,
  .final-cta,
  .passion-section {
    padding: 22px;
  }

  .contact-main-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-main-card .button {
    width: 100%;
  }

  .feature-media,
  .feature-media img {
    min-height: 0;
  }

  .feature-media img {
    aspect-ratio: 9 / 16;
    object-fit: cover;
  }

  .floating-badge {
    position: static;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
  }
}

@media (max-width: 460px) {
  body {
    font-size: 15px;
  }

  .brand-logo-wrap {
    width: 44px;
    height: 44px;
  }

  .hero-logo {
    width: 74px;
    height: 74px;
  }

  h1 {
    font-size: clamp(2.65rem, 17vw, 4.1rem);
  }

  .home-hero h1 {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }
}
