*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f7faf9;
  --color-bg-deep: #f0f6f5;
  --color-ink: #0a1a1c;
  --color-ink-2: #2a3a3c;
  --color-muted: #6a7a7c;
  --color-line: #e6ebea;

  --color-primary: #00a0ab;
  --color-primary-dark: #007a82;
  --color-primary-soft: #e6faf7;

  --grad-brand: linear-gradient(
    135deg,
    #09c0d1 10%,
    #3ad2e2 55%,
    #97e6d3 100%
  );
  --grad-splash: linear-gradient(
    135deg,
    rgba(0, 203, 212, 1) 17%,
    rgba(95, 223, 156, 0.94) 63%,
    rgba(190, 242, 100, 0.87) 88%
  );
  --grad-splash-deep: linear-gradient(
    135deg,
    #00cbd4 0%,
    #00a0ab 50%,
    #007a82 100%
  );

  --shadow-xs: 0 1px 2px rgba(10, 26, 28, 0.04);
  --shadow-sm: 0 4px 14px rgba(10, 26, 28, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 26, 28, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 26, 28, 0.12);
  --shadow-glow: 0 20px 60px -10px rgba(0, 160, 171, 0.35);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --container-max: 1280px;
  --container-pad: 24px;

  --font-jp:
    "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Aclonica", sans-serif;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background-color: #ffffff;
}

body {
  font-family: var(--font-jp);
  font-weight: 400;
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* overflow-x: hidden; */
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

::selection {
  background: var(--color-primary);
  color: #fff;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 48px;
  padding: 0 28px;
  appearance: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition:
    transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.25s,
    color 0.25s;
  white-space: nowrap;
  cursor: pointer;
}
.btn--lg {
  height: 56px;
  padding: 0 28px;
  font-size: 15px;
}

.btn--primary {
  background: linear-gradient(
    120deg,
    rgba(0, 203, 212, 1) 17%,
    rgba(95, 223, 156, 0.94) 63%,
    rgba(190, 242, 100, 0.954) 88%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}
.btn--primary:is(:hover, :active) {
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.6),
    0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.btn--ghost {
  color: rgba(56, 178, 215, 0.495);
  background-image: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    0 4px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}
.btn--ghost:is(:hover, :active) {
  background: rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.6),
    0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.btn--on-banner {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--on-banner:is(:hover, :active) {
  background: #fff;
  color: var(--color-ink);
  border-color: #fff;
}
.btn--dark {
  background: var(--color-ink);
  color: #fff;
  padding: 0 22px;
  gap: 12px;
}
.btn--dark:is(:hover, :active) {
  background: #1c2c2e;
  transform: translateY(-2px);
}
.btn-app__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.btn-app__text small {
  font-size: 10px;
  opacity: 0.75;
  font-weight: 500;
}
.btn-app__text strong {
  font-size: 14px;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(230, 235, 234, 0);
  transition:
    border-bottom-color 0.3s,
    background 0.3s,
    transform 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--color-line);
  background: #fff;
}
.site-header.is-hidden {
  transform: translateY(-100%);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}
.header__logo img {
  height: 28px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
  margin-right: 12px;
}
.header__nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
  transition: color 0.2s;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: var(--color-primary);
  transition: width 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.header__nav a:hover {
  color: var(--color-primary);
}
.header__nav a:hover::after {
  width: 100%;
}

.header__cta {
  gap: 8px;
  padding: 0 24px;
  height: 44px;
  font-size: 13px;
  background: var(--grad-brand);
  -webkit-background-clip: border-box;
  background-clip: border-box;
  color: #fff;
  border: none;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}
.header__cta:is(:hover, :active, :focus-visible) {
  background: var(--grad-brand);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(9, 192, 209, 0.55);
}
.header__cta-icon {
  flex-shrink: 0;
}

.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
}
.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  transform: translate3d(0, 0, 0) rotate(0deg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transition:
    transform 0.3s,
    opacity 0.2s;
}
.header__burger.is-open span:nth-child(1) {
  transform: translate3d(0, 7px, 0) rotate(45deg);
}

.header__burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: translate3d(0, 0, 0) scaleX(0);
}
.header__burger.is-open span:nth-child(3) {
  transform: translate3d(0, -7px, 0) rotate(-45deg);
}

.drawer {
  position: fixed;
  left: 0;
  right: 0;
  top: 64px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 24px 40px -12px rgba(10, 26, 28, 0.12);
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    height 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    opacity 0.25s ease;
  pointer-events: none;
}
.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}
.drawer__inner {
  padding: 8px var(--container-pad) 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.drawer__nav a {
  display: block;
  padding: 18px 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-ink);
  border-bottom: 1px solid var(--color-line);
  transition:
    color 0.2s,
    padding-left 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.drawer__nav a:is(:hover, :active) {
  color: var(--color-primary);
  padding-left: 8px;
}
.drawer__cta {
  margin: 12px auto 4px;
  align-self: center;
  padding: 0 24px;
  height: 44px;
  border-radius: 999px;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--color-primary) border-box;
}
.drawer__cta:is(:hover, :active) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.section-title {
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}
.section-title--center {
  text-align: center;
}
.section-lead {
  margin-top: 18px;
  font-size: 17px;
  color: var(--color-muted);
  line-height: 1.75;
}
.section-lead--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary-dark);
  background: var(--color-primary-soft);
  border-radius: 999px;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 160, 171, 0.4);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(0, 160, 171, 0);
  }
}

.dl-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(10, 37, 64, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.dl-modal.is-open {
  opacity: 1;
}
.dl-modal__card {
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10, 37, 64, 0.3);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}
.dl-modal.is-open .dl-modal__card {
  transform: none;
}
.dl-modal__head {
  position: relative;
  padding: 26px 24px 22px;
  color: #ffff;
  background: linear-gradient(
    135deg,
    rgba(0, 203, 212, 1) 17%,
    rgba(95, 223, 156, 0.94) 63%,
    rgba(190, 242, 100, 0.87) 88%
  );
}
.dl-modal__title {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
}
.dl-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.5);
  color: #053b3f;
}
.dl-modal__close:hover {
  background: rgba(255, 255, 255, 0.85);
}
.dl-modal__body {
  display: flex;
  gap: 14px;
  padding: 24px;
}
.dl-store {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.dl-store__os {
  font-size: 14px;
  font-weight: 700;
  color: #0a2540;
}
.dl-store__qr {
  width: 100%;
  max-width: 158px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #eef2f5;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.dl-store__qr:hover {
  border-color: #00a0ab;
  box-shadow: 0 6px 16px rgba(0, 160, 171, 0.16);
}
.dl-store__qr img,
.dl-store__qr canvas {
  display: block;
  width: 100%;
  height: auto;
}
.dl-store__badge {
  display: flex;
  justify-content: center;
  width: 100%;
}
.dl-store__badge img {
  height: 45px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

@media (max-width: 560px) {
  .dl-modal { padding: 14px; }
  .dl-modal__head { padding: 20px 18px 17px; }
  .dl-modal__title { font-size: 17px; }
  .dl-modal__body { padding: 16px 12px; gap: 10px; }
  .dl-store { gap: 9px; }
  .dl-store__os { font-size: 12px; }
  .dl-store__qr { max-width: 152px; padding: 5px; border-radius: 9px; }
  .dl-store__badge img { height: 32px; }
}

/* ---------- Footer ---------- */
.footer {
  --ft-bg: #4e4e4e;
  --ft-text: #ffffff;
  --ft-muted: #8a8b8b;
  --ft-line: rgba(255, 255, 255, 0.16);
  background: var(--ft-bg);
  color: var(--ft-text);
  padding: 50px 37px calc(50px + 85px + 12px + env(safe-area-inset-bottom, 0px));
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.footer__logo img {
  height: 32px;
  width: auto;
}

.footer__sns {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer__sns a {
  width: 34px;
  height: 34px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--ft-text);
  transition: background 0.2s;
}
.footer__sns a:is(:hover, :active, :focus-visible) {
  background: rgba(255, 255, 255, 0.2);
}
.footer__sns svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer__nav {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav a {
  font-size: 15px;
  font-weight: 700;
  color: var(--ft-text);
  transition: opacity 0.2s;
}
.footer__nav a:is(:hover, :active, :focus-visible) {
  opacity: 0.7;
}

.footer__line {
  margin-top: 40px;
  border: 0;
  border-top: 1px solid var(--ft-line);
}

.footer__company {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer__company-row {
  display: contents;
}
.footer__company a,
.footer__company p {
  font-size: 14px;
  color: var(--ft-muted);
  transition: color 0.2s;
}
.footer__company a:is(:hover, :active, :focus-visible) {
  color: var(--ft-text);
}

.footer__legal {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.footer__legal a {
  font-size: 12.5px;
  color: var(--ft-muted);
  transition: color 0.2s;
}
.footer__legal a:is(:hover, :active, :focus-visible) {
  color: var(--ft-text);
}

.footer__copy {
  margin-top: 20px;
  font-size: 12px;
  color: var(--ft-muted);
}

:is(.footer__sns a, .footer__nav a, .footer__company a, .footer__legal a):focus-visible {
  outline: 2px solid var(--ft-text);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (min-width: 900px) {
  .footer { padding: 60px 40px calc(34px + 85px + 12px + env(safe-area-inset-bottom, 0px)); }
  .footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__logo { order: 1; }
  .footer__nav {
    order: 2;
    flex-direction: row;
    gap: 36px;
    margin-top: 26px;
  }
  .footer__sns {
    order: 3;
    margin-top: 26px;
  }
  .footer__company {
    order: 4;
    align-items: center;
    margin-top: 26px;
  }
  .footer__company-row {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .footer__company-row > * + *::before {
    content: "·";
    margin-right: 14px;
    color: rgba(255, 255, 255, 0.35);
  }
  .footer__line {
    order: 5;
    width: 100%;
    margin: 34px 0 24px;
  }
  .footer__legal {
    order: 6;
    justify-content: center;
    gap: 20px;
    margin-top: 0;
  }
  .footer__copy {
    order: 7;
    margin-top: 20px;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal][data-reveal-delay="1"] {
  transition-delay: 0.08s;
}
[data-reveal][data-reveal-delay="2"] {
  transition-delay: 0.16s;
}
[data-reveal][data-reveal-delay="3"] {
  transition-delay: 0.24s;
}
[data-reveal][data-reveal-delay="4"] {
  transition-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   RESPONSIVE — 1100px breakpoint
   ============================================ */
@media (max-width: 1100px) {
  :root {
    --container-pad: 20px;
  }

  .header__inner {
    height: 64px;
    gap: 12px;
  }
  .header__nav {
    display: none;
  }
  .header__cta {
    display: inline-flex;
    margin-left: auto;
    padding: 0 16px;
    height: 38px;
    font-size: 12px;
    gap: 6px;
  }
  .header__cta svg {
    width: 15px;
    height: 15px;
  }
  .header__burger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }
}

.channel-modal {
  --cm-teal: #00cbd4;
  --cm-ink: #1d202f;
  --cm-sub: #868787;
  --cm-line: #e3e6e8;
  --cm-qoo10: #e8467c;
  --cm-rakuten: #bf0000;

  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(10, 37, 64, 0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.2s ease;
  font-family: var(--font-jp);
}
.channel-modal.is-open { opacity: 1; }

.channel-modal__card {
  width: 100%;
  max-width: 360px;
  max-height: 92vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(10, 37, 64, 0.3);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}
.channel-modal.is-open .channel-modal__card { transform: none; }

.channel-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 20px 0;
}
.channel-modal__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--cm-ink);
}
.channel-modal__close {
  flex: none;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #f2f4f5;
  color: var(--cm-sub);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease;
}
.channel-modal__close svg { width: 18px; height: 18px; display: block; }
.channel-modal__close:is(:hover, :active, :focus-visible) { background: #e6e9eb; }

.channel-modal__body { padding: 18px 20px 20px; }

.channel-modal__official {
  display: block;
  border: 2px solid var(--cm-teal);
  border-radius: 14px;
  padding: 16px;
  color: inherit;
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease;
}
.channel-modal__official:hover,
.channel-modal__official:active {
  box-shadow: 0 6px 18px rgba(56, 128, 255, .12);
  transform: translateY(-1px);
}
.channel-modal__badges { display: flex; gap: 6px; margin-bottom: 10px; }
.channel-modal__badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--cm-teal);
  background: #dff7f8;
  border-radius: 6px;
  padding: 4px 8px;
}
.channel-modal__badge--sub {
  font-weight: 500;
  color: var(--cm-sub);
  background: #f2f4f5;
}
.channel-modal__logo {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--cm-ink);
}
.channel-modal__perks {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.channel-modal__perks li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--cm-ink);
}
.channel-modal__perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 900;
  color: var(--cm-teal);
}

.channel-modal__ext-label {
  margin: 22px 0 10px;
  font-size: 13px;
  color: var(--cm-sub);
}
.channel-modal__ext {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.channel-modal__ext-btn {
  height: 52px;
  border: 1px solid var(--cm-line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.channel-modal__ext-btn svg { width: 15px; height: 15px; flex: none; }
.channel-modal__ext-btn--qoo10 { color: var(--cm-qoo10); }
.channel-modal__ext-btn--rakuten { color: var(--cm-rakuten); }
.channel-modal__ext-btn:is(:hover, :active, :focus-visible) {
  border-color: currentColor;
  background: #fafbfb;
}

.channel-modal__cta {
  margin-top: 22px;
  height: 56px;
  border-radius: 12px;
  background: var(--cm-teal);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: filter 0.2s ease;
}
.channel-modal__cta svg { width: 18px; height: 18px; }
.channel-modal__cta:is(:hover, :active, :focus-visible) { filter: brightness(0.95); }

:is(.channel-modal__close, .channel-modal__ext-btn, .channel-modal__cta):focus-visible {
  outline: 2px solid var(--cm-ink);
  outline-offset: 2px;
}

@media (max-width: 480px) {
  .channel-modal { padding: 12px; }
  .channel-modal__head { padding: 18px 16px 0; }
  .channel-modal__body { padding: 16px; }
  .channel-modal__title { font-size: 17px; }
}