/* ─── Reset & Variables ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Helvetica Neue", Arial, sans-serif;
  --white:   #ffffff;
  --black:   #000000;
  --gray-1:  #f5f5f7;
  --gray-2:  #e8e8ed;
  --gray-3:  #6e6e73;
  --gray-4:  #1d1d1f;
  --accent:  #1BDBDB;
  --radius:  14px;
  --max-w:   1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--gray-4);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Header ────────────────────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-2);
  height: 64px;
  padding: 0 32px;
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 18px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo { height: 30px; }
.slogan {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
  overflow: hidden;
}
.slogan-en {
  font-size: 12px;
  color: var(--gray-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}
.slogan-ja {
  font-size: 11px;
  color: #aaa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.free-badge {
  background: #eafaf8;
  color: #00a896;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: 20px;
  border: 1px solid #b2ede8;
  letter-spacing: .02em;
  white-space: nowrap;
}
.btn-primary {
  display: inline-block;
  background: var(--gray-4);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity .18s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: .75; }

/* Language Switcher */
.lang-switcher {
  display: flex;
  background: var(--gray-1);
  border-radius: 8px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-3);
  padding: 4px 11px;
  border-radius: 6px;
  cursor: pointer;
  transition: all .18s;
  letter-spacing: .03em;
}
.lang-btn.active {
  background: var(--white);
  color: var(--gray-4);
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
}

/* ─── Hero Video ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 78vh;
  min-height: 420px;
  overflow: hidden;
  background: #000;
}
.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .88;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, rgba(0,0,0,.08) 0%, rgba(0,0,0,.45) 100%);
  text-align: center;
  padding: 24px;
}
.hero-overlay h1 {
  font-size: clamp(28px, 5.5vw, 58px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero-overlay p {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255,255,255,.75);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 400;
}

/* ─── Hero Home (compact centered) ─────────────────────────────────────── */
.hero-home-wrap {
  max-width: 900px;
  margin: 32px auto 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-home {
  height: 44vh;
  min-height: 240px;
  border-radius: 18px;
}
.ad-notice--home {
  margin: 0;
}
@media (max-width: 768px) {
  .hero-home-wrap { padding: 0 16px; }
  .hero-home { height: 36vh; min-height: 200px; }
}

/* ─── Plugins Section ───────────────────────────────────────────────────── */
.plugins {
  padding: 88px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px;
  color: var(--gray-3);
  max-width: 600px;
  margin: 0 auto;
}

/* Plugin Grid */
.plugins-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  align-items: start;
}
.plugin-card {
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow .3s, transform .3s;
}
.plugin-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.plugin-card h3 {
  font-size: 19px;
  font-weight: 600;
  padding: 22px 22px 10px;
  letter-spacing: -.02em;
}
.plugin-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--gray-1);
}
.plugin-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.plugin-card:hover .plugin-img-wrap img { transform: scale(1.04); }

.plugin-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 22px 6px;
}
.plugin-tags span {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  background: var(--gray-1);
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.plugin-desc {
  padding: 10px 22px 26px;
}
.plugin-desc p {
  font-size: 13.5px;
  color: var(--gray-3);
  line-height: 1.7;
  margin-bottom: 14px;
}
.plugin-desc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.plugin-desc ul li {
  font-size: 13px;
  color: var(--gray-4);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.plugin-desc ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* CTA */
.plugins-cta {
  text-align: center;
  border-top: 1px solid var(--gray-2);
  padding-top: 52px;
}
.cta-note {
  font-size: 14px;
  color: var(--gray-3);
  margin-bottom: 22px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.btn-download {
  display: inline-block;
  background: var(--gray-4);
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 17px 48px;
  border-radius: 12px;
  transition: all .2s;
  letter-spacing: -.01em;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}
.btn-download:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}

/* ─── SEO Content Block ─────────────────────────────────────────────────── */
.seo-content {
  background: var(--gray-1);
  padding: 72px 32px;
}
.seo-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.seo-inner h2 {
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.seo-inner p {
  font-size: 15px;
  color: var(--gray-3);
  line-height: 1.8;
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
footer {
  background: var(--black);
  color: rgba(255,255,255,.65);
  padding: 64px 32px 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 52px;
}
.footer-logo { height: 26px; margin-bottom: 18px; display: block; }
.footer-left p { font-size: 13.5px; line-height: 1.7; }
.footer-free {
  color: var(--accent) !important;
  margin-top: 10px !important;
  font-size: 13px !important;
  font-weight: 500;
}
footer h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
footer ul li { font-size: 13px; color: rgba(255,255,255,.55); }
footer ul li a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .18s;
}
footer ul li a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 0;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }

/* ─── Download Page ─────────────────────────────────────────────────────── */
.download-page {
  min-height: 80vh;
  padding: 0 32px 80px;
  max-width: 900px;
  margin: 0 auto;
}
.download-page-header {
  text-align: center;
  padding: 64px 0 48px;
}
.download-page-header h1 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.download-page-header p {
  font-size: 16px;
  color: var(--gray-3);
}

/* Step Indicator */
.steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--gray-2);
  background: var(--white);
  color: var(--gray-3);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}
.step-item.active .step-circle {
  background: var(--gray-4);
  border-color: var(--gray-4);
  color: var(--white);
}
.step-item.done .step-circle {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.step-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.step-item.active .step-label { color: var(--gray-4); font-weight: 600; }
.step-line {
  width: 80px;
  height: 2px;
  background: var(--gray-2);
  margin-bottom: 22px;
  transition: background .3s;
}
.step-line.done { background: var(--accent); }

/* Step Content */
.step-content { display: none; }
.step-content.active { display: block; }

/* Install Grid */
.install-intro {
  text-align: center;
  margin-bottom: 40px;
}
.install-intro h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.install-intro p { font-size: 15px; color: var(--gray-3); }
.install-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.install-step {
  border-radius: 10px;
  overflow: hidden;
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
}
.install-step-num {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-3);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 14px 6px;
}
.install-step img {
  width: 100%;
  display: block;
  object-fit: contain;
}

/* Support Step */
.support-section {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.support-badge {
  display: inline-block;
  background: #eafaf8;
  color: #00a896;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  border: 1px solid #b2ede8;
  margin-bottom: 24px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.support-section h2 {
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: 16px;
}
.support-section p {
  font-size: 16px;
  color: var(--gray-3);
  line-height: 1.75;
  margin-bottom: 12px;
}
.support-section .highlight {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-4);
}
.ad-container {
  background: var(--gray-1);
  border: 2px dashed var(--gray-2);
  border-radius: 12px;
  padding: 40px 24px;
  text-align: center;
  margin: 32px 0;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ad-placeholder { font-size: 13px; color: var(--gray-3); }

/* Download Step */
.download-section {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.download-section h2 {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.download-section p {
  font-size: 15px;
  color: var(--gray-3);
  margin-bottom: 32px;
  line-height: 1.7;
}
.btn-download-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-4);
  color: var(--white);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  padding: 18px 52px;
  border-radius: 14px;
  transition: all .2s;
  letter-spacing: -.01em;
  margin-bottom: 16px;
}
.btn-download-main:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.22);
}
.download-meta {
  font-size: 13px;
  color: var(--gray-3);
  margin-top: 14px;
}

/* Nav Buttons */
.step-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
}
.btn-next {
  background: var(--gray-4);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 40px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  letter-spacing: -.01em;
}
.btn-next:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
}
.btn-back {
  background: transparent;
  color: var(--gray-3);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  border-radius: 10px;
  border: 1px solid var(--gray-2);
  cursor: pointer;
  transition: all .2s;
}
.btn-back:hover { color: var(--gray-4); border-color: var(--gray-3); }

/* ─── YouTube Thumbnail Link ────────────────────────────────────────────── */
.plugin-video {
  margin: 0 22px 22px;
}
.plugin-video-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-3);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}
.video-thumb-link {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  text-decoration: none;
}
.video-thumb-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s, opacity .3s;
}
.video-thumb-link:hover img {
  transform: scale(1.03);
  opacity: .85;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: rgba(0,0,0,.65);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  padding-left: 4px;
  transition: background .2s, transform .2s;
  pointer-events: none;
}
.video-thumb-link:hover .video-play-btn {
  background: rgba(255,0,0,.85);
  transform: translate(-50%, -50%) scale(1.1);
}

/* ─── Ad Notice (Step 1 bottom) ─────────────────────────────────────────── */
.ad-notice {
  background: #fffbf0;
  border: 2px solid #f5a623;
  border-radius: 18px;
  padding: 32px;
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ad-notice-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ad-notice-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.ad-notice-en {
  font-size: 16px;
  line-height: 1.75;
  color: #1d1d1f;
  margin: 0 0 12px;
}
.ad-notice-en strong {
  font-size: 18px;
  color: #c8720a;
  display: block;
  margin-bottom: 6px;
}
.ad-notice-ja {
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  border-top: 1px solid #f0d9a0;
  padding-top: 12px;
  margin: 0;
}
.ad-notice-ja strong {
  font-size: 15px;
  color: #c8720a;
  display: block;
  margin-bottom: 4px;
}
.ad-notice-types {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(245,166,35,.08);
  border-radius: 10px;
}
.ad-notice-type {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #3a3a3a;
  line-height: 1.6;
}
.ad-type-dot {
  width: 8px;
  height: 8px;
  background: #f5a623;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.ad-notice-sample {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ad-sample-label {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin: 0;
}
.ad-notice-sample img {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
  border: 1px solid #e8d5a0;
  display: block;
}
.ad-notice-cta {
  background: #fff8ec;
  border: 1.5px solid #f5a623;
  border-radius: 10px;
  padding: 18px 22px;
}
.ad-notice-cta .ad-notice-en {
  margin-bottom: 10px;
  font-size: 15px;
}
.ad-notice-cta .ad-notice-en strong {
  font-size: 16px;
  display: inline;
}
.ad-notice-cta .ad-notice-ja {
  border-top: 1px solid #f0d9a0;
  padding-top: 10px;
  font-size: 13px;
}
.ad-notice-cta .ad-notice-ja strong {
  display: inline;
  font-size: 14px;
}
@media (max-width: 540px) {
  .ad-notice { padding: 22px 18px; gap: 18px; }
  .ad-notice-header { gap: 12px; }
  .ad-notice-en { font-size: 14px; }
}

/* ─── Direct Link Ad Block ──────────────────────────────────────────────── */
.direct-link-block {
  max-width: 640px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.direct-link-label {
  background: var(--gray-1);
  border: 1px solid var(--gray-2);
  border-radius: 12px;
  padding: 18px 22px;
}
.direct-link-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--gray-2);
  color: var(--gray-3);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.direct-link-label p {
  font-size: 13.5px;
  color: var(--gray-3);
  line-height: 1.75;
  margin: 0;
}
.btn-direct-link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #1d1d1f 0%, #3a3a3c 100%);
  color: var(--white);
  text-decoration: none;
  padding: 20px 28px;
  border-radius: 14px;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.btn-direct-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  background: linear-gradient(135deg, #2a2a2c 0%, #4a4a4e 100%);
}
.btn-direct-link-icon {
  font-size: 32px;
  flex-shrink: 0;
}
.btn-direct-link span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.btn-direct-link-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.01em;
  display: block;
}
.btn-direct-link-sub {
  font-size: 12px;
  color: rgba(255,255,255,.55);
  font-weight: 400;
  letter-spacing: .01em;
  display: block;
}
.direct-link-thanks {
  font-size: 13px;
  color: var(--gray-3);
  text-align: center;
  line-height: 1.65;
}
@media (max-width: 540px) {
  .btn-direct-link { padding: 16px 20px; gap: 12px; }
  .btn-direct-link-title { font-size: 15px; }
  .btn-direct-link-icon { font-size: 26px; }
}

/* ─── Ad Blocker Overlay ────────────────────────────────────────────────── */
#adblock-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.adblock-box {
  background: var(--white);
  border-radius: 20px;
  padding: 48px 40px 36px;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}
.adblock-icon {
  font-size: 48px;
  margin-bottom: 20px;
}
.adblock-box h2 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  color: var(--gray-4);
}
.adblock-box > p {
  font-size: 14px;
  color: var(--gray-3);
  line-height: 1.75;
  margin-bottom: 28px;
}
.adblock-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 28px;
}
.adblock-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--gray-4);
  line-height: 1.5;
}
.adblock-num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--gray-4);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.btn-reload {
  display: inline-block;
  background: var(--gray-4);
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  width: 100%;
  margin-bottom: 14px;
}
.btn-reload:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.adblock-skip {
  font-size: 12px;
  color: var(--gray-3);
}
.adblock-skip a {
  color: var(--gray-4);
  text-decoration: underline;
}

/* ─── Mobile ─────────────────────────────────────────────────────────────── */
@media (max-width: 820px) {
  .slogan { display: none; }
  .free-badge { display: none; }
  .plugins-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .install-grid { grid-template-columns: repeat(2, 1fr); }
  .step-line { width: 40px; }
  header { padding: 0 20px; }
}
@media (max-width: 540px) {
  .hero { height: 62vh; }
  .plugins { padding: 56px 20px; }
  .download-page { padding: 0 20px 60px; }
  .install-grid { grid-template-columns: 1fr; }
  .btn-download-main { padding: 16px 32px; font-size: 15px; }
  footer { padding: 48px 20px 0; }
}
