/* ====================================================================
     Tokens — ダーク×ピンク系統(B)。ユーザー提供の参考モックアップ(黒背景・
     ホットピンク〜マゼンタのグラデーション・実写風フォト・忍者シルエット)
     に合わせて再構成。index.html(クリーム地ポップ系統)とは独立した別ファイル。
     ==================================================================== */
:root {
  --c-bg: #0a0a0d;
  --c-bg-2: #050506;
  --c-panel: #121016;
  --c-panel-2: #17141b;
  --c-ink: #ffffff;
  --c-ink-2: rgba(255, 255, 255, 0.66);
  --c-ink-3: rgba(255, 255, 255, 0.4);
  --c-line: rgba(255, 255, 255, 0.1);
  --c-line-soft: rgba(255, 255, 255, 0.06);

  --c-pink: #ff2d78;
  --c-pink-2: #ff6fa4;
  --c-pink-dark: #8f1148;
  --c-pink-soft: rgba(255, 45, 120, 0.14);
  --c-grad: linear-gradient(90deg, #ff2d78, #9c1450);
  --c-grad-2: linear-gradient(135deg, #ff3e7f 0%, #c31462 55%, #6e0e3b 100%);

  --c-surface: rgba(255, 255, 255, 0.03);

  --r-card: 22px;
  --r-md: 16px;
  --r-pill: 999px;

  --container: 1220px;
  --side-pad: 24px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-pink: 0 14px 34px rgba(255, 30, 110, 0.28);
  --ease: cubic-bezier(0.16, 0.84, 0.44, 1);

  --ff-head: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --ff-body: "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--c-ink-2);
  background: var(--c-bg);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
  line-height: 1.85;
  overflow-x: hidden;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
p {
  margin: 0;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

input {
  font: inherit;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--side-pad);
  position: relative;
}

@media (min-width: 768px) {
  :root {
    --side-pad: 40px;
  }
}

@media (min-width: 1200px) {
  :root {
    --side-pad: 56px;
  }
}

h1,
h2,
h3 {
  font-family: var(--ff-head);
  letter-spacing: -0.01em;
  color: var(--c-ink);
}

.accent {
  color: var(--c-pink);
}

.ico {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.sym-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* ---------------- buttons ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 54px;
  padding: 0 30px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.9375rem;
  white-space: nowrap;
  font-family: var(--ff-head);
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.btn-accent {
  background: var(--c-grad);
  color: #fff;
  box-shadow: var(--shadow-pink);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 30, 110, 0.4);
}

.btn-outline {
  color: #fff;
  background: transparent;
  border: 1.5px solid var(--c-line);
  gap: 10px;
}

.btn-outline:hover {
  border-color: var(--c-pink);
  transform: translateY(-2px);
}

.btn-outline .play-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--c-pink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.btn-sm {
  height: 44px;
  padding: 0 22px;
  font-size: 0.8125rem;
}

.btn-dark {
  background: #fff;
  color: #0a0a0d;
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}

/* ---------------- header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 6, 8, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--c-line);
  background: rgba(6, 6, 8, 0.92);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-mark {
  height: 28px;
  width: auto;
  flex: 0 0 auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.nav-links a {
  transition: color 0.2s;
  padding: 4px 2px;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links .sep {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-pink);
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* ---------------- hero ---------------- */
.hero {
  position: relative;
  padding-top: clamp(18px, 3.2vw, 32px);
  padding-bottom: clamp(24px, 3.6vw, 44px);
}

.hero-bg-glow-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-glow {
  position: absolute;
  right: -10%;
  top: -10%;
  width: 70%;
  height: 120%;
  background: radial-gradient(
    ellipse at 70% 30%,
    rgba(255, 30, 110, 0.3),
    transparent 60%
  );
}

.hero .container {
  display: grid;
  gap: 24px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero .container {
    grid-template-columns: minmax(0, 1fr) minmax(0, min(460px, 42%));
    gap: 24px;
  }
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--c-pink);
}

.eyebrow-tag::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--c-pink);
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(2.125rem, 5vw, 3.375rem);
  font-weight: 900;
  line-height: 1.22;
  color: #fff;
  word-break: keep-all;
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 340px) {
  .hero h1 {
    font-size: 1.5rem;
  }
}

.hero .lead {
  margin-top: 16px;
  color: var(--c-ink-2);
  font-size: 0.9375rem;
  font-weight: 500;
}

.hero .lead .strong {
  display: block;
  font-weight: 900;
  color: #fff;
  margin-top: 4px;
  font-family: var(--ff-head);
  font-size: 1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.hero-note {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--c-ink-3);
  font-weight: 600;
}

/* phone composition */
.hero-visual {
  position: relative;
  height: clamp(300px, 42vw, 600px);
  z-index: 1;
}

.hero-phone-img {
  position: absolute;
  left: 40%;
  top: 0;
  transform: translateX(-50%);
  width: clamp(215px, 28vw, 400px);
  height: auto;
  aspect-ratio: 807/1382;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.55));
}

@media (max-width: 767px) {
  .hero-visual {
    height: 360px;
  }

  .hero-phone-img {
    left: 50%;
    width: min(230px, 64vw);
  }

  .hero .container {
    gap: 16px;
  }

  .hero-cta {
    margin-top: 16px;
    gap: 10px;
  }

  .hero-cta .btn {
    height: 46px;
    padding: 0 22px;
    font-size: 0.875rem;
  }

  .hero-note {
    margin-top: 10px;
  }
}

/* ---------------- about band ---------------- */
.about-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #c2185b 0%, #8b2a96 55%, #552e9e 100%);
  padding-block: clamp(40px, 6vw, 72px);
}

.about-band .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-band h2 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2.25rem, 4.6vw, 3.75rem);
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.about-band p {
  font-size: clamp(1rem, 1.3vw, 1.1875rem);
  font-weight: 600;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.94);
  max-width: 640px;
  margin-inline: auto;
}

/* ---------------- section generic ---------------- */
section {
  padding-block: clamp(48px, 7vw, 96px);
  position: relative;
}

section > .container {
  position: relative;
  z-index: 1;
}

/* 斜めに切り替わる背景バンド(参考: brother.co.jp 製品ページ) */
.section-diag {
  position: absolute;
  inset: -1px 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.section-diag::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--diag-bg, #2a0e24);
  clip-path: polygon(
    0 var(--diag-top, 6vw),
    100% 0,
    100% calc(100% - var(--diag-bottom, 6vw)),
    0 100%
  );
}

@media (max-width: 640px) {
  .section-diag::after {
    clip-path: polygon(
      0 var(--diag-top, 28px),
      100% 0,
      100% calc(100% - var(--diag-bottom, 28px)),
      0 100%
    );
  }
}

.eyebrow-pill {
  display: table;
  margin-inline: auto;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--c-ink-3);
  text-transform: uppercase;
}

.eyebrow-pill.left {
  margin-inline: 0;
}

.head-center {
  max-width: 620px;
  margin-inline: auto;
  text-align: center;
  margin-top: 16px;
}

.head-center h2 {
  font-size: clamp(1.625rem, 4vw, 2.375rem);
  font-weight: 900;
  line-height: 1.5;
}

.head-center p {
  margin-top: 14px;
  color: var(--c-ink-2);
  font-size: 0.9375rem;
  font-weight: 500;
}

/* ---------------- 01 main features ---------------- */
.feat-row {
  margin-top: 56px;
  display: grid;
  gap: 44px 8px;
  align-items: start;
  position: relative;
}

@media (min-width: 768px) {
  .feat-row {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
  }
}

.feat-arrow-mid {
  display: none;
  color: var(--c-ink-3);
}

@media (min-width: 768px) {
  .feat-arrow-mid {
    display: block;
  }
}

.feat-col {
  text-align: left;
}

.feat-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.feat-num {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-head);
  font-weight: 900;
  font-size: 0.8125rem;
  color: #fff;
  background: var(--c-grad);
  box-shadow: 0 6px 18px rgba(255, 20, 100, 0.4);
}

.feat-text h3 {
  font-size: 1.0625rem;
  font-weight: 900;
  color: #fff;
}

.feat-text p {
  margin-top: 4px;
  font-size: 0.8125rem;
  color: var(--c-ink-2);
  font-weight: 500;
}

.feat-frame {
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-radius: 20px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.feat-phone {
  width: 100%;
  aspect-ratio: 270/360;
  border-radius: 13px;
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(
      ellipse at 50% 20%,
      rgba(255, 110, 160, 0.2),
      transparent 55%
    ),
    linear-gradient(165deg, #3a1f2c 0%, #241220 45%, #0c0810 100%);
}

.feat-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feat-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.feat-img.is-contain {
  object-fit: contain;
  object-position: center center;
}

.quote-panel {
  margin-top: 64px;
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-radius: 26px;
  padding: 36px clamp(24px, 6vw, 64px);
  text-align: center;
  position: relative;
}

.quote-panel p {
  font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
  font-weight: 700;
  line-height: 2;
  color: #fff;
}

/* ---------------- 02 三カード ---------------- */
.card-grid {
  margin-top: 0;
  display: grid;
  gap: 22px;
}

@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-card {
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-radius: var(--r-card);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    border-color 0.25s var(--ease),
    transform 0.25s var(--ease);
}

.info-card:hover {
  border-color: rgba(255, 45, 120, 0.5);
  transform: translateY(-3px);
}

.info-card .tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--c-pink);
  text-transform: uppercase;
}

.info-card h3 {
  margin-top: 14px;
  font-size: 1.1875rem;
  font-weight: 900;
  color: var(--c-ink);
}

.info-card p {
  margin-top: 8px;
  font-size: 0.8125rem;
  color: var(--c-ink-2);
  font-weight: 500;
}

.info-card .body {
  margin-top: 20px;
  flex: 1;
}

.swatch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.swatch-photo {
  aspect-ratio: 1;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse at 50% 22%,
      rgba(255, 110, 160, 0.22),
      transparent 55%
    ),
    linear-gradient(165deg, #3a1f2c, #0c0810 85%);
}

.swatch-photo.has-shot {
  aspect-ratio: 2 / 3;
  background: #fffefc;
  box-shadow: inset 0 0 0 1px rgba(255, 45, 120, 0.35);
}

.swatch-photo.has-shot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  display: block;
}

.swatch-photo:not(.has-shot)::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 30%;
  transform: translateX(-50%);
  width: 15px;
  height: 18px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50% 50% 45% 45%;
}

.swatch-photo:not(.has-shot)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  width: 5px;
  height: 24%;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 3px;
}

.swatch-photo .play-sm {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.swatch-photo .play-sm::after {
  content: "";
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #0a0a0d;
  margin-left: 1px;
}

.url-field {
  margin-top: 14px;
}

.url-field label {
  display: block;
  font-size: 0.6875rem;
  color: var(--c-ink-3);
  margin-bottom: 6px;
  font-weight: 700;
}

.url-field .box {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 0.8125rem;
  color: var(--c-ink);
}

.url-field .box .fill {
  flex: 1;
  color: var(--c-pink);
  font-weight: 700;
  background: rgba(255, 45, 120, 0.14);
  padding: 3px 8px;
  border-radius: 6px;
}

.url-field .box .check {
  width: 14px;
  height: 14px;
  color: var(--c-pink);
}

.usecase-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.usecase-list .row {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--c-line);
  border-radius: 9px;
  padding: 9px 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--c-ink);
  background: var(--c-surface);
}

.usecase-list .row .dot {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #fff;
}

.usecase-list .row .grip {
  margin-left: auto;
  color: var(--c-ink-3);
  font-size: 0.75rem;
}

/* ---------------- 03 share flow ---------------- */
.share-panel {
  margin-top: 22px;
  background: var(--c-panel);
  border: 1px solid var(--c-line);
  border-radius: 30px;
  padding: clamp(28px, 5vw, 48px);
  position: relative;
}

.share-head h2 {
  position: relative;
  display: inline-block;
  margin-top: 10px;
  padding-bottom: 4px;
  font-size: clamp(1.625rem, 3.4vw, 2.125rem);
  font-weight: 900;
  color: var(--c-ink);
}

.share-head h2::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--c-grad);
  box-shadow: 0 4px 16px rgba(255, 45, 120, 0.55);
}

.share-head p {
  margin-top: 16px;
  font-size: 0.875rem;
  color: var(--c-ink-2);
  font-weight: 500;
}

@media (max-width: 400px) {
  .share-head h2 {
    font-size: 1.5rem;
  }
}

.share-steps {
  margin-top: 32px;
  display: grid;
  gap: 24px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .share-steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 14px;
  }
}

.share-arrow {
  display: none;
  color: var(--c-ink-3);
}

@media (min-width: 768px) {
  .share-arrow {
    display: block;
  }
}

.share-step {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.share-step .step-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-ink-2);
  margin-bottom: 14px;
}

.share-step .step-tag .n {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: var(--c-grad);
}

.copy-mock {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  justify-content: center;
}

.copy-mock .field {
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 9px 10px;
  font-size: 0.75rem;
  color: var(--c-ink-2);
  background: var(--c-surface);
}

.copy-mock .btn {
  width: 100%;
}

.paste-mock {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  justify-content: center;
}

.paste-mock .profile-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.paste-mock .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-grad);
}

.paste-mock .stats {
  display: flex;
  gap: 14px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--c-ink);
}

.paste-mock .stats span {
  display: block;
  font-size: 0.5625rem;
  font-weight: 500;
  color: var(--c-ink-3);
}

.paste-mock .link-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.6875rem;
  background: var(--c-surface);
  color: var(--c-ink-2);
}

.done-mock {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.done-phone-clip {
  width: 220px;
  height: 216px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.4);
}

.done-phone {
  width: 220px;
  aspect-ratio: 9/16;
  background: #000;
  border-radius: 20px;
  padding: 6px;
}

.done-phone .screen {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse at 50% 20%,
      rgba(255, 110, 160, 0.22),
      transparent 55%
    ),
    linear-gradient(165deg, #3a1f2c, #0c0810 85%);
}

.done-phone .screen-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.02);
  transform-origin: top center;
}

/* ---------------- 04 FAQ ---------------- */
.faq-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-head .chev {
  color: var(--c-pink);
  width: 16px;
  height: 16px;
}

.faq-head span.eyebrow-pill {
  margin: 0;
  color: var(--c-pink);
}

.faq-grid {
  margin-top: 32px;
  display: grid;
  gap: 0 48px;
}

@media (min-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.faq-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  margin-bottom: 14px;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s;
}

.faq-row:hover {
  border-color: rgba(255, 45, 120, 0.4);
}

.faq-row .toggle {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  position: relative;
  color: var(--c-pink);
  border: 1.5px solid rgba(255, 45, 120, 0.5);
  border-radius: 50%;
}

.faq-row .toggle::before,
.faq-row .toggle::after {
  content: "";
  position: absolute;
  background: currentColor;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-row .toggle::before {
  width: 11px;
  height: 1.8px;
}

.faq-row .toggle::after {
  width: 1.8px;
  height: 11px;
}

.faq-row.open .toggle::after {
  opacity: 0;
}

.faq-row.open .toggle {
  background: var(--c-pink);
  color: #fff;
}

.faq-row.open {
  border-color: var(--c-pink);
}

.faq-item {
  margin-bottom: 14px;
}

.faq-item .faq-row {
  margin-bottom: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.3s ease,
    opacity 0.3s ease;
}

.faq-answer-inner {
  overflow: hidden;
  min-height: 0;
}

.faq-answer p {
  padding: 14px 20px 4px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-ink-2);
  line-height: 1.7;
}

.faq-row.open + .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

/* ---------------- final CTA ---------------- */
.cta-final-wrap {
  padding-block: clamp(24px, 4vw, 40px);
  padding-inline: 24px;
}

.cta-final {
  max-width: 1368px;
  margin-inline: auto;
  color: #fff;
  text-align: center;
  position: relative;
  padding-block: clamp(48px, 6vw, 72px);
  padding-inline: 24px;
  border-radius: clamp(28px, 4vw, 48px);
  overflow: hidden;
  background: var(--c-bg-2);
}

.cta-final-glow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 60%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    ellipse at 90% 100%,
    rgba(255, 30, 110, 0.4),
    transparent 60%
  );
}

.cta-final .container {
  position: relative;
  z-index: 2;
  padding-inline: 0;
}

.cta-final h2 {
  font-size: clamp(1.625rem, 4vw, 2.5rem);
  font-weight: 900;
}

.cta-br {
  display: none;
}

@media (max-width: 480px) {
  .cta-br {
    display: block;
  }
}

.cta-final .sub {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  font-weight: 500;
}

.cta-cta-btn {
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.cta-final-note {
  margin-top: 14px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  position: relative;
  z-index: 2;
}

/* ---------------- footer ---------------- */
.site-footer {
  background: var(--c-bg-2);
  color: var(--c-ink-3);
  padding-block: 32px;
  font-size: 0.75rem;
  text-align: center;
  font-weight: 600;
  border-top: 1px solid var(--c-line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}

.footer-logo {
  height: 20px;
  width: auto;
  flex: 0 0 auto;
  opacity: 0.85;
}

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

.footer-links a {
  color: var(--c-ink-3);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-links .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-pink);
  flex: 0 0 auto;
}

.footer-copy {
  margin: 0;
}

/* ---------------- reveal ---------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
  transition-delay: var(--d, 0s);
}

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

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

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