:root {
  color-scheme: light;
  --navy-950: #020b17;
  --navy-900: #061426;
  --navy-850: #0a1d32;
  --navy-800: #0d2742;
  --ink: #07172a;
  --ink-soft: #516071;
  --paper: #fffdf8;
  --cream: #f6efdf;
  --cream-deep: #eadfc8;
  --gold: #ffd276;
  --gold-strong: #f6b839;
  --cyan: #3ad2e2;
  --cyan-soft: #d9f8fb;
  --orange: #f47b32;
  --line: rgba(7, 23, 42, 0.14);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(2, 11, 23, 0.16);
  --shadow-strong: 0 35px 90px rgba(2, 11, 23, 0.3);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --wrap: 1180px;
  --font-sans: Inter, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
}

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

html {
  scroll-behavior: auto;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.12;
  text-wrap: balance;
}

p {
  margin-bottom: 0;
}

.wrap {
  width: min(calc(100% - 48px), var(--wrap));
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(76px, 6.5vw, 96px);
}

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

.sp-only {
  display: none;
}

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

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 0;
  border-radius: 13px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button img {
  width: 20px;
  height: 20px;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
button:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.button--primary {
  background: var(--cyan);
  color: var(--navy-950);
  box-shadow: 0 15px 34px rgba(58, 210, 226, 0.24);
}

.button--primary:hover {
  background: #5ce2ef;
  box-shadow: 0 18px 40px rgba(58, 210, 226, 0.34);
}

.button--outline {
  border: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
}

.button--hero {
  min-height: 62px;
  padding-inline: 27px;
  font-size: 17px;
}

.button--wide {
  width: 100%;
}

.eyebrow {
  margin: 0 0 16px;
  color: #088ca0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading--center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.section-copy h2,
.faq-intro h2 {
  font-size: clamp(42px, 5vw, 68px);
}

.section-heading > p:last-child,
.section-copy > p:last-of-type,
.faq-intro > p:last-of-type {
  max-width: 680px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.9;
}

/* Header */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 76px;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(2, 11, 23, 0.93);
  color: #fff;
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 34px;
}

.brand-link {
  flex: 0 0 auto;
}

.brand-link img {
  width: 150px;
  height: auto;
}

.header-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 30px;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

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

.button--header {
  min-height: 46px;
  padding: 11px 19px;
  background: var(--cyan);
  color: var(--navy-950);
  font-size: 13px;
}

/* Hero */

.campaign-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 816px;
  padding: 54px 0 48px;
  background:
    linear-gradient(90deg, rgba(2, 11, 23, 0.99) 0%, rgba(4, 18, 34, 0.95) 48%, rgba(5, 20, 38, 0.7) 100%),
    url("./assets/hero-texture.png") center / cover no-repeat;
  color: #fff;
}

.campaign-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgba(58, 210, 226, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 210, 226, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.campaign-hero::after {
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -120px;
  width: 660px;
  height: 660px;
  border-radius: 50%;
  background: rgba(255, 199, 89, 0.15);
  filter: blur(90px);
  content: "";
}

.hero-layout {
  display: grid;
  min-height: 710px;
  align-items: center;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 42px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
}

.hero-offer-row {
  display: flex;
  min-height: 68px;
  margin-bottom: 15px;
  align-items: center;
  gap: 15px;
}

.generated-badge {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.generated-badge img {
  width: 100%;
  height: auto;
}

.generated-badge--hero {
  width: min(270px, 43vw);
}

.lancers-contract {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.lancers-contract img {
  width: 83px;
  height: auto;
}

.lancers-contract--light {
  color: var(--ink-soft);
}

.hero-eyebrow {
  margin-bottom: 13px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.hero-title {
  max-width: 640px;
  font-size: clamp(60px, 5.2vw, 82px);
  line-height: 1.02;
}

.hero-title span,
.hero-title strong {
  display: block;
}

.hero-title strong {
  margin-top: 6px;
  color: var(--gold);
}

.hero-price {
  display: flex;
  max-width: 560px;
  margin-top: 30px;
  padding-left: 18px;
  align-items: center;
  border-left: 4px solid var(--cyan);
  gap: 26px;
}

.hero-price > span {
  max-width: 120px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.hero-price strong {
  font-size: clamp(50px, 4.2vw, 68px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.hero-price small {
  margin-left: 6px;
  font-size: 17px;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.79);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.85;
}

.hero-inclusions {
  display: flex;
  margin: 22px 0 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.hero-inclusions li {
  display: inline-flex;
  min-height: 34px;
  padding: 7px 11px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 800;
  gap: 6px;
}

.hero-inclusions img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.hero-action {
  margin-top: 24px;
}

.hero-action > p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
}

.product-proof {
  position: relative;
  min-width: 0;
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 36px;
  background:
    linear-gradient(150deg, rgba(6, 20, 38, 0.68), rgba(2, 11, 23, 0.16)),
    url("./assets/hero-texture.png") 62% 50% / cover no-repeat;
  box-shadow: var(--shadow-strong);
}

.product-proof::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 14%, rgba(255, 210, 118, 0.3), transparent 38%);
  content: "";
}

.proof-kicker {
  position: absolute;
  z-index: 5;
  top: 27px;
  left: 30px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.proof-kicker span {
  color: rgba(255, 255, 255, 0.56);
}

.proof-kicker strong {
  color: var(--gold);
  font-size: 22px;
}

.device {
  position: absolute;
  z-index: 2;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.3);
}

.device--desktop {
  top: 95px;
  left: 6%;
  width: 78%;
  border: 7px solid rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  transform: rotate(-2.4deg);
}

.device-bar {
  display: flex;
  height: 30px;
  padding: 0 10px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dfe5eb;
  background: #f5f7fa;
  color: #536277;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.device-bar span {
  display: flex;
  gap: 4px;
}

.device-bar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fb765f;
}

.device-bar i:nth-child(2) {
  background: #f1ba4a;
}

.device-bar i:nth-child(3) {
  background: #5ec68b;
}

.device-crop {
  position: relative;
  overflow: hidden;
}

.device-crop--desktop {
  aspect-ratio: 16 / 10;
}

.device-crop--desktop img,
.device-crop--phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.device--phone {
  width: 26%;
  padding: 8px 7px 10px;
  border: 3px solid #1e2a3a;
  border-radius: 25px;
  background: #081220;
}

.device--phone-primary {
  z-index: 4;
  right: 4%;
  bottom: 66px;
  transform: rotate(4deg);
}

.device--phone-tp {
  z-index: 3;
  right: 24%;
  bottom: 36px;
  width: 19%;
  opacity: 0.96;
  transform: rotate(-4deg);
}

.phone-speaker {
  width: 34%;
  height: 4px;
  margin: 2px auto 7px;
  border-radius: 999px;
  background: #344155;
}

.device-crop--phone {
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  background: #fff;
}

.product-proof figcaption {
  position: absolute;
  z-index: 6;
  right: 24px;
  bottom: 19px;
  display: flex;
  padding: 11px 15px;
  flex-direction: column;
  border-radius: 12px;
  background: var(--gold);
  color: var(--navy-950);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  line-height: 1.4;
}

.product-proof figcaption strong {
  font-size: 14px;
  letter-spacing: 0.06em;
}

.product-proof figcaption span {
  font-size: 9px;
  font-weight: 800;
}

/* Proof ribbon */

.proof-ribbon {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-ribbon__inner {
  display: grid;
  min-height: 96px;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
}

.proof-ribbon__inner span {
  display: flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--line);
  color: #36485b;
  font-size: 12px;
  font-weight: 850;
  gap: 10px;
}

.proof-ribbon__inner span:last-child {
  border-right: 0;
}

.proof-ribbon__inner img {
  width: 26px;
  height: 26px;
}

/* VSL */

.vsl-shortcut {
  background: var(--cream);
}

.vsl-layout {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 60px;
}

.section-copy--compact h2 {
  font-size: clamp(48px, 5vw, 70px);
}

.section-copy--compact > p:last-of-type {
  max-width: 460px;
}

.media-points {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.media-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #324559;
  font-size: 13px;
  font-weight: 700;
}

.media-points img {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 9px;
  background: var(--cyan-soft);
}

.media-points b {
  color: var(--ink);
}

.vsl-poster {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 480px;
  padding: 28px;
  overflow: hidden;
  align-content: end;
  border: 0;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(2, 11, 23, 0.98), rgba(7, 32, 57, 0.78)),
    url("./assets/hero-texture.png") center / cover no-repeat;
  color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  text-align: left;
}

.vsl-poster::before {
  position: absolute;
  top: -120px;
  right: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 210, 118, 0.22);
  filter: blur(70px);
  content: "";
}

.vsl-duration {
  position: absolute;
  z-index: 5;
  top: 20px;
  right: 20px;
  padding: 7px 10px;
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy-950);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.vsl-visual {
  position: absolute;
  top: 52px;
  left: 7%;
  display: grid;
  width: 86%;
  height: 220px;
  align-items: center;
  grid-template-columns: 1.35fr 30px 0.74fr 30px 0.72fr;
  gap: 10px;
}

.vsl-frame {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
}

.vsl-frame--one {
  aspect-ratio: 16 / 10;
  transform: rotate(-3deg);
}

.vsl-frame--one img,
.vsl-frame--three img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.vsl-frame--two {
  aspect-ratio: 1 / 1;
  place-items: center;
  background: var(--gold);
  color: var(--navy-950);
  transform: rotate(3deg);
}

.vsl-frame--two span {
  font-size: 54px;
  font-weight: 950;
  line-height: 1;
}

.vsl-frame--two small {
  margin-top: -26px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.vsl-frame--three {
  height: 205px;
  border-color: #12243a;
  border-radius: 22px;
  transform: rotate(4deg);
}

.vsl-arrow {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.vsl-poster__title,
.vsl-play {
  position: relative;
  z-index: 4;
}

.vsl-poster__title {
  display: block;
  max-width: 550px;
  margin-bottom: 18px;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.vsl-play {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  padding: 10px 15px;
  align-items: center;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
}

.vsl-play img {
  width: 24px;
  height: 24px;
}

.quick-buy {
  display: flex;
  min-height: 122px;
  margin-top: 38px;
  padding: 22px 26px;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  background: var(--gold);
  color: var(--navy-950);
  gap: 28px;
}

.quick-buy p {
  font-size: 12px;
  font-weight: 800;
}

.quick-buy strong {
  display: block;
  margin-top: 2px;
  font-size: 20px;
  line-height: 1.45;
}

.quick-buy .button {
  flex: 0 0 auto;
  background: var(--navy-950);
  color: #fff;
  box-shadow: none;
}

.quick-buy .button img {
  filter: brightness(0) invert(1);
}

/* Bundle */

.bundle-section {
  background: #fff;
}

.bundle-flow {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(0, 0.92fr) 76px minmax(0, 1.08fr);
  gap: 24px;
}

.fragment-side,
.result-side {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
}

.flow-label {
  margin-bottom: 19px;
  color: #697789;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

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

.fragment-grid article {
  display: grid;
  min-height: 102px;
  padding: 15px;
  align-content: center;
  grid-template-columns: 38px 1fr;
  border: 1px solid rgba(7, 23, 42, 0.09);
  border-radius: 15px;
  background: #fff;
  column-gap: 11px;
}

.fragment-grid img {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 10px;
  background: var(--cyan-soft);
  grid-row: 1 / span 2;
}

.fragment-grid b {
  font-size: 14px;
  line-height: 1.35;
}

.fragment-grid span {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
}

.flow-conversion {
  display: grid;
  align-content: center;
  justify-items: center;
  color: #8591a0;
  gap: 8px;
}

.flow-conversion img {
  width: 42px;
  height: 42px;
}

.flow-conversion span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  writing-mode: vertical-rl;
}

.result-side {
  background: var(--navy-900);
  color: #fff;
}

.result-side .flow-label {
  color: rgba(255, 255, 255, 0.55);
}

.result-stage {
  position: relative;
  min-height: 360px;
}

.result-screen {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 5px solid #fff;
  background: #fff;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.result-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.result-screen--pc {
  top: 8px;
  left: 2%;
  width: 74%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  transform: rotate(-2deg);
}

.result-screen--sp,
.result-screen--tp {
  width: 23%;
  aspect-ratio: 9 / 16;
  border-color: #172338;
  border-width: 7px;
  border-radius: 20px;
}

.result-screen--sp {
  z-index: 3;
  right: 2%;
  bottom: 0;
  transform: rotate(4deg);
}

.result-screen--tp {
  z-index: 2;
  right: 21%;
  bottom: -4px;
  width: 18%;
  transform: rotate(-3deg);
}

.result-caption {
  display: flex;
  margin-top: 16px;
  padding-top: 16px;
  flex-direction: column;
  border-top: 1px solid var(--line-dark);
}

.result-caption strong {
  color: var(--gold);
  font-size: 17px;
}

.result-caption span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 700;
}

/* Research */

.research-proof {
  position: relative;
  overflow: hidden;
  background: var(--navy-900);
  color: #fff;
}

.research-proof::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 210, 118, 0.12), transparent 35%),
    linear-gradient(rgba(58, 210, 226, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 210, 226, 0.045) 1px, transparent 1px);
  background-size: auto, 66px 66px, 66px 66px;
  content: "";
}

.research-layout {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
}

.research-layout .section-copy h2 {
  font-size: clamp(46px, 4.8vw, 66px);
}

.research-layout .section-copy > p:last-of-type {
  color: rgba(255, 255, 255, 0.7);
}

.axis-list {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 18px;
}

.axis-list span {
  position: relative;
  padding-left: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 800;
}

.axis-list span::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.research-visual {
  display: grid;
  min-height: 420px;
  padding: 28px;
  align-items: center;
  grid-template-columns: 1fr 28px 1fr 28px 1.18fr;
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  gap: 11px;
}

.research-step {
  display: grid;
  min-width: 0;
  min-height: 220px;
  padding: 24px 14px;
  align-content: center;
  justify-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
}

.research-step > img {
  width: 44px;
  height: 44px;
  margin-bottom: 13px;
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.research-step strong {
  font-size: clamp(58px, 5vw, 82px);
  line-height: 0.95;
}

.research-step span {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
}

.research-step--middle {
  background: var(--gold);
  color: var(--navy-950);
}

.research-step--middle > img {
  filter: none;
  opacity: 1;
}

.research-step--middle span {
  color: rgba(2, 11, 23, 0.64);
}

.research-step--final {
  min-height: 310px;
  padding: 15px;
  background: #fff;
  color: var(--ink);
}

.research-step--final span {
  color: var(--ink-soft);
}

.research-output {
  width: 100%;
  margin-bottom: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 11px;
}

.research-output img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.research-step--final strong {
  font-size: 50px;
}

.research-arrow {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}

/* Samples */

.samples-section {
  background: var(--cream);
}

.sample-tabs {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.sample-tabs__list {
  display: grid;
  padding: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #f0f4f7;
  gap: 8px;
}

.sample-tabs__list button {
  min-height: 54px;
  padding: 12px 18px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #657385;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.sample-tabs__list button[aria-selected="true"] {
  background: var(--navy-900);
  color: #fff;
  box-shadow: 0 10px 24px rgba(7, 23, 42, 0.18);
}

.sample-panel {
  display: grid;
  min-height: 560px;
  padding: 38px;
  align-items: center;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 40px;
}

.sample-panel[hidden] {
  display: none;
}

.sample-label {
  margin-bottom: 14px;
  color: #0b96a9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.sample-copy h3 {
  font-size: clamp(38px, 4.3vw, 58px);
}

.sample-copy > p:not(.sample-label) {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.9;
}

.sample-copy ul {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.sample-copy li {
  display: flex;
  align-items: center;
  color: #36485b;
  font-size: 12px;
  font-weight: 800;
  gap: 10px;
}

.sample-copy li img {
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 8px;
  background: var(--cyan-soft);
}

.sample-stage {
  position: relative;
  min-height: 420px;
}

.sample-window {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid #ccd5df;
  background: #fff;
  box-shadow: 0 22px 50px rgba(7, 23, 42, 0.18);
}

.sample-window__bar {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 26px;
  padding: 6px 10px;
  align-items: center;
  background: rgba(243, 246, 249, 0.92);
  color: #69778a;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.sample-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.sample-window--pc {
  top: 6px;
  left: 0;
  width: 76%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  transform: rotate(-1.3deg);
}

.sample-window--sp,
.sample-window--tp {
  bottom: 0;
  aspect-ratio: 9 / 16;
  border: 7px solid #0d192a;
  border-radius: 24px;
}

.sample-window--sp {
  z-index: 3;
  right: 2%;
  width: 27%;
  transform: rotate(3deg);
}

.sample-window--tp {
  z-index: 2;
  right: 23%;
  width: 20%;
  transform: rotate(-4deg);
}

.sample-window--sp .sample-window__bar,
.sample-window--tp .sample-window__bar {
  background: rgba(13, 25, 42, 0.92);
  color: #fff;
}

/* Creator and process */

.creator-process {
  background: #fff;
}

.creator-strip {
  display: grid;
  padding: 28px;
  align-items: center;
  grid-template-columns: 122px minmax(240px, 0.86fr) minmax(0, 1.14fr);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
  gap: 26px;
}

.creator-photo {
  width: 122px;
  height: 122px;
  border: 5px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 16%;
  box-shadow: 0 12px 28px rgba(7, 23, 42, 0.14);
}

.creator-copy h2 {
  font-size: clamp(34px, 3.6vw, 50px);
}

.creator-copy > p:last-child {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.75;
}

.creator-facts {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.creator-facts li {
  display: grid;
  min-height: 58px;
  padding: 10px 13px;
  align-items: center;
  grid-template-columns: 34px 1fr;
  border-radius: 13px;
  background: #fff;
  column-gap: 11px;
}

.creator-facts img {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 9px;
  background: var(--cyan-soft);
}

.creator-facts span {
  display: flex;
  flex-direction: column;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.5;
}

.creator-facts b {
  color: var(--ink);
  font-size: 12px;
}

.process-steps {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.process-steps li {
  position: relative;
  display: grid;
  min-height: 150px;
  padding: 22px 18px;
  align-content: start;
  grid-template-columns: 42px 1fr;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  column-gap: 12px;
}

.process-steps li > span {
  position: absolute;
  top: 14px;
  right: 16px;
  color: #c8d0d8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.process-steps img {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: 12px;
  background: var(--gold);
}

.process-steps b {
  display: block;
  padding-top: 3px;
  font-size: 14px;
  line-height: 1.45;
}

.process-steps p {
  margin-top: 7px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.65;
}

/* Price */

.price-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(2, 11, 23, 0.98), rgba(5, 24, 45, 0.82)),
    url("./assets/hero-texture.png") center / cover no-repeat;
  color: #fff;
}

.price-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 46px;
}

.price-card {
  padding: 34px;
  border-radius: 28px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: var(--shadow-strong);
}

.generated-badge--price {
  width: 230px;
  margin: -7px 0 15px -5px;
}

.price-card__kicker {
  color: #7f6c46;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.price-card h2 {
  margin-top: 11px;
  font-size: clamp(44px, 4.8vw, 64px);
}

.price-amount {
  display: flex;
  margin-top: 24px;
  padding: 18px 0;
  align-items: end;
  justify-content: space-between;
  border-top: 1px solid rgba(7, 23, 42, 0.18);
  border-bottom: 1px solid rgba(7, 23, 42, 0.18);
  gap: 20px;
}

.price-amount span {
  color: #6d624e;
  font-size: 11px;
  font-weight: 800;
}

.price-amount strong {
  color: #0a1d32;
  font-size: clamp(50px, 4.7vw, 68px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.price-amount small {
  margin-left: 5px;
  font-size: 18px;
  letter-spacing: 0;
}

.included-grid {
  display: grid;
  margin: 24px 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 16px;
  list-style: none;
}

.included-grid li {
  display: flex;
  align-items: center;
  color: #334658;
  font-size: 11px;
  font-weight: 800;
  gap: 8px;
}

.included-grid img {
  width: 22px;
  height: 22px;
}

.option-area {
  padding-top: 8px;
}

.option-heading {
  max-width: 580px;
  margin-bottom: 28px;
}

.option-heading h3 {
  font-size: clamp(38px, 4.2vw, 58px);
}

.option-heading > p:last-child {
  max-width: 520px;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  font-weight: 650;
}

.option-card {
  border-bottom: 1px solid var(--line-dark);
}

.option-card:first-of-type {
  border-top: 1px solid var(--line-dark);
}

.option-card summary {
  display: grid;
  min-height: 94px;
  padding: 17px 0;
  align-items: center;
  grid-template-columns: 50px 1fr auto;
  color: #fff;
  cursor: pointer;
  list-style: none;
  gap: 15px;
}

.option-card summary::-webkit-details-marker {
  display: none;
}

.option-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 14px;
  background: rgba(58, 210, 226, 0.13);
}

.option-icon img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
}

.option-card summary > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.option-card summary b {
  font-size: 15px;
}

.option-card summary small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 700;
}

.option-card summary strong {
  color: var(--gold);
  font-size: 14px;
  white-space: nowrap;
}

.option-card > p {
  padding: 0 0 20px 65px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.75;
}

.ad-boundary {
  display: grid;
  margin-top: 26px;
  padding: 20px;
  grid-template-columns: 44px 1fr;
  border: 1px solid rgba(255, 210, 118, 0.34);
  border-radius: 17px;
  background: rgba(255, 210, 118, 0.08);
  gap: 14px;
}

.ad-boundary > img {
  width: 44px;
  height: 44px;
  padding: 9px;
  border-radius: 12px;
  background: var(--gold);
}

.ad-boundary b {
  color: var(--gold);
  font-size: 14px;
}

.ad-boundary p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  font-weight: 650;
  line-height: 1.7;
}

/* FAQ */

.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
}

.boundary-mini-grid {
  display: grid;
  margin-top: 32px;
  gap: 10px;
}

.boundary-mini-grid article {
  display: grid;
  padding: 16px;
  align-items: center;
  grid-template-columns: 38px 1fr;
  border-radius: 15px;
  background: var(--cream);
  gap: 12px;
}

.boundary-mini-grid img {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 10px;
  background: #fff;
}

.boundary-mini-grid div {
  display: flex;
  flex-direction: column;
}

.boundary-mini-grid b {
  font-size: 12px;
}

.boundary-mini-grid span {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  display: flex;
  min-height: 78px;
  padding: 20px 52px 20px 4px;
  align-items: center;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 9px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan-soft);
  content: "+";
  font-size: 20px;
  transform: translateY(-50%);
}

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

.faq-list details p {
  max-width: 720px;
  padding: 0 52px 22px 4px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.85;
}

/* Final */

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background:
    linear-gradient(105deg, rgba(2, 11, 23, 0.99), rgba(4, 19, 35, 0.73)),
    url("./assets/hero-texture.png") center / cover no-repeat;
  color: #fff;
}

.final-cta::before {
  position: absolute;
  top: -200px;
  right: -120px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(255, 210, 118, 0.18);
  filter: blur(90px);
  content: "";
}

.final-layout {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 50px;
}

.generated-badge--final {
  width: 220px;
  margin-bottom: 16px;
}

.final-copy h2 {
  font-size: clamp(48px, 5.4vw, 74px);
}

.final-price {
  display: flex;
  margin: 24px 0;
  align-items: baseline;
  gap: 18px;
}

.final-price span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 800;
}

.final-price strong {
  color: var(--gold);
  font-size: 52px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.final-note {
  display: flex;
  margin-top: 12px;
  align-items: center;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  font-weight: 700;
  gap: 8px;
}

.final-note img {
  width: 82px;
  height: auto;
}

.final-product {
  position: relative;
  min-height: 420px;
}

.final-screen {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 5px solid #fff;
  background: #fff;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.34);
}

.final-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.final-screen--pc {
  top: 14px;
  left: 1%;
  width: 76%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  transform: rotate(-2deg);
}

.final-screen--sp,
.final-screen--tp {
  bottom: 0;
  aspect-ratio: 9 / 16;
  border-color: #101c2c;
  border-width: 7px;
  border-radius: 23px;
}

.final-screen--sp {
  z-index: 3;
  right: 0;
  width: 27%;
  transform: rotate(4deg);
}

.final-screen--tp {
  z-index: 2;
  right: 22%;
  width: 20%;
  transform: rotate(-4deg);
}

/* Footer */

.site-footer {
  padding: 44px 0;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.45);
}

.footer-inner {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 12px 30px;
}

.footer-logo {
  width: 170px;
  height: auto;
  grid-row: 1 / span 3;
}

.footer-inner p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.footer-inner small {
  max-width: 850px;
  font-size: 9px;
  font-weight: 650;
  line-height: 1.65;
}

/* Mobile sticky */

.mobile-sticky {
  position: fixed;
  z-index: 80;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  display: none;
  min-height: 64px;
  padding: 9px 10px 9px 16px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(2, 11, 23, 0.96);
  color: #fff;
  box-shadow: 0 16px 40px rgba(2, 11, 23, 0.36);
  backdrop-filter: blur(14px);
  transform: translateY(140%);
  transition: transform 220ms ease;
}

.mobile-sticky.is-visible {
  transform: translateY(0);
}

.mobile-sticky span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.mobile-sticky small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  font-weight: 800;
}

.mobile-sticky strong {
  color: var(--gold);
  font-size: 19px;
}

.mobile-sticky b {
  display: inline-flex;
  min-height: 44px;
  padding: 8px 13px;
  align-items: center;
  border-radius: 12px;
  background: var(--cyan);
  color: var(--navy-950);
  font-size: 12px;
}

/* VSL dialog */

.vsl-dialog {
  width: min(calc(100% - 32px), 760px);
  max-height: min(88vh, 820px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 28px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.vsl-dialog::backdrop {
  background: rgba(1, 8, 18, 0.76);
  backdrop-filter: blur(6px);
}

.vsl-dialog__inner {
  position: relative;
  padding: 46px;
}

.vsl-dialog__inner h2 {
  font-size: clamp(38px, 5vw, 58px);
}

.vsl-dialog__inner > p:not(.eyebrow) {
  margin-top: 17px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #edf2f5;
  color: var(--ink);
  font-size: 25px;
  cursor: pointer;
}

.storyboard-list {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.storyboard-list li {
  display: grid;
  min-height: 84px;
  padding: 15px;
  align-items: center;
  grid-template-columns: 58px 40px 1fr;
  border: 1px solid var(--line);
  border-radius: 15px;
  gap: 12px;
}

.storyboard-list li > span {
  color: #8793a0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.storyboard-list img {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 10px;
  background: var(--cyan-soft);
}

.storyboard-list b {
  font-size: 13px;
}

.storyboard-list p {
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 650;
}

/* Thanks page */

.tp-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(246, 239, 223, 0.97), rgba(230, 243, 246, 0.94)),
    url("./assets/hero-texture.png") center / cover fixed;
}

.tp-header {
  display: flex;
  width: min(calc(100% - 48px), 1180px);
  min-height: 82px;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
}

.tp-header > a img {
  width: 150px;
  height: auto;
}

.tp-main {
  display: grid;
  min-height: calc(100vh - 82px);
  padding: 24px 24px 54px;
  align-items: center;
}

.tp-layout {
  display: grid;
  width: min(100%, 1080px);
  margin-inline: auto;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  border: 1px solid rgba(7, 23, 42, 0.12);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.tp-card {
  padding: 46px;
}

.success-mark {
  display: grid;
  width: 68px;
  height: 68px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 20px;
  background: var(--cyan-soft);
}

.success-mark img {
  width: 38px;
  height: 38px;
}

.tp-card h1 {
  max-width: 690px;
  font-size: clamp(42px, 5vw, 62px);
}

.tp-lead {
  max-width: 600px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.reply-time {
  display: inline-grid;
  min-width: 270px;
  margin-top: 25px;
  padding: 13px 15px;
  align-items: center;
  grid-template-columns: 40px 1fr;
  border-radius: 14px;
  background: var(--cream);
  gap: 11px;
}

.reply-time img {
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 10px;
  background: #fff;
}

.reply-time span {
  display: flex;
  flex-direction: column;
}

.reply-time small {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 800;
}

.reply-time b {
  font-size: 13px;
}

.tp-steps {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.tp-steps li {
  position: relative;
  display: grid;
  min-height: 142px;
  padding: 18px;
  align-content: start;
  grid-template-columns: 38px 1fr;
  border: 1px solid var(--line);
  border-radius: 15px;
  gap: 10px;
}

.tp-steps li > span {
  position: absolute;
  top: 10px;
  right: 12px;
  color: #c7cfd8;
  font-size: 9px;
  font-weight: 900;
}

.tp-steps img {
  width: 38px;
  height: 38px;
  padding: 8px;
  border-radius: 10px;
  background: var(--cyan-soft);
}

.tp-steps b {
  display: block;
  font-size: 12px;
}

.tp-steps p {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 650;
  line-height: 1.55;
}

.tp-actions {
  display: flex;
  margin-top: 26px;
  flex-wrap: wrap;
  gap: 10px;
}

.tp-summary {
  display: flex;
  min-width: 0;
  padding: 38px;
  flex-direction: column;
  border-radius: 0 29px 29px 0;
  background: var(--navy-900);
  color: #fff;
}

.tp-summary h2 {
  font-size: 28px;
}

.tp-summary__screen {
  margin-top: 20px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 5px solid #fff;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.tp-summary__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.tp-summary__price {
  display: flex;
  margin-top: 22px;
  padding-bottom: 17px;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-dark);
}

.tp-summary__price span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 800;
}

.tp-summary__price strong {
  color: var(--gold);
  font-size: 26px;
}

.tp-summary ul {
  display: grid;
  margin: 18px 0 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.tp-summary li {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 800;
  gap: 8px;
}

.tp-summary li img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

.sample-notice {
  margin-top: auto;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 650;
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 1100px) {
  .hero-layout {
    grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
    gap: 26px;
  }

  .hero-title {
    font-size: clamp(54px, 6.2vw, 72px);
  }

  .product-proof {
    min-height: 600px;
  }

  .sample-panel {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 24px;
  }

  .price-layout,
  .faq-layout {
    gap: 34px;
  }
}

@media (max-width: 900px) {
  .wrap {
    width: min(calc(100% - 36px), var(--wrap));
  }

  .header-nav {
    display: none;
  }

  .button--header {
    margin-left: auto;
  }

  .campaign-hero {
    padding-top: 42px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
    margin-inline: auto;
  }

  .hero-title {
    max-width: 700px;
  }

  .product-proof {
    width: min(100%, 720px);
    min-height: 590px;
    margin-inline: auto;
  }

  .proof-ribbon__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-ribbon__inner span:nth-child(2) {
    border-right: 0;
  }

  .proof-ribbon__inner span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .vsl-layout,
  .research-layout,
  .price-layout,
  .faq-layout,
  .final-layout {
    grid-template-columns: 1fr;
  }

  .section-copy--compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 30px;
  }

  .section-copy--compact .eyebrow,
  .section-copy--compact h2 {
    grid-column: 1;
  }

  .section-copy--compact > p,
  .section-copy--compact .media-points {
    grid-column: 2;
  }

  .section-copy--compact > p {
    grid-row: 1 / span 2;
    align-self: end;
  }

  .section-copy--compact .media-points {
    margin-top: 0;
  }

  .bundle-flow {
    grid-template-columns: 1fr;
  }

  .flow-conversion {
    display: flex;
    min-height: 58px;
    justify-content: center;
  }

  .flow-conversion span {
    writing-mode: initial;
  }

  .flow-conversion img {
    transform: rotate(90deg);
  }

  .research-layout {
    gap: 42px;
  }

  .sample-panel {
    grid-template-columns: 1fr;
  }

  .sample-copy {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 0 28px;
  }

  .sample-copy .sample-label,
  .sample-copy h3 {
    grid-column: 1;
  }

  .sample-copy > p:not(.sample-label),
  .sample-copy ul {
    grid-column: 2;
  }

  .sample-copy > p:not(.sample-label) {
    grid-row: 1 / span 2;
  }

  .sample-copy ul {
    margin-top: 15px;
  }

  .creator-strip {
    grid-template-columns: 110px 1fr;
  }

  .creator-photo {
    width: 110px;
    height: 110px;
  }

  .creator-facts {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .option-area {
    padding-top: 0;
  }

  .faq-layout {
    gap: 42px;
  }

  .boundary-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-product {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .tp-layout {
    grid-template-columns: 1fr;
  }

  .tp-summary {
    border-radius: 0 0 29px 29px;
  }

  .sample-notice {
    margin-top: 24px;
  }
}

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

  .wrap {
    width: min(calc(100% - 28px), var(--wrap));
  }

  .section-pad {
    padding-block: 64px;
  }

  .sp-only {
    display: initial;
  }

  .site-header {
    height: 64px;
  }

  .header-inner {
    gap: 12px;
  }

  .brand-link img {
    width: 112px;
  }

  .button--header {
    min-height: 44px;
    padding: 10px 13px;
    border-radius: 11px;
    font-size: 11px;
  }

  .campaign-hero {
    min-height: auto;
    padding: 28px 0 28px;
    background-position: 60% center;
  }

  .campaign-hero::before {
    background-size: 48px 48px;
  }

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

  .hero-offer-row {
    min-height: 48px;
    margin-bottom: 12px;
    align-items: flex-start;
  }

  .generated-badge--hero {
    width: 190px;
  }

  .lancers-contract {
    padding-top: 5px;
    flex-direction: column;
    align-items: flex-start;
    font-size: 9px;
    gap: 3px;
  }

  .lancers-contract img {
    width: 69px;
  }

  .hero-eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
  }

  .hero-title {
    font-size: clamp(46px, 14.2vw, 60px);
    line-height: 1.02;
  }

  .hero-title strong {
    margin-top: 4px;
  }

  .hero-price {
    margin-top: 20px;
    padding-left: 13px;
    align-items: end;
    gap: 13px;
  }

  .hero-price > span {
    max-width: 87px;
    font-size: 9px;
  }

  .hero-price strong {
    font-size: clamp(43px, 13vw, 55px);
  }

  .hero-price small {
    font-size: 14px;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 12px;
    line-height: 1.75;
  }

  .hero-inclusions {
    margin-top: 16px;
    gap: 6px;
  }

  .hero-inclusions li {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 9px;
  }

  .hero-inclusions img {
    width: 14px;
    height: 14px;
  }

  .hero-action {
    margin-top: 18px;
  }

  .button--hero {
    width: 100%;
    min-height: 56px;
    padding-inline: 17px;
    font-size: 14px;
  }

  .hero-action > p {
    font-size: 9px;
    line-height: 1.55;
  }

  .product-proof {
    min-height: 378px;
    border-radius: 24px;
  }

  .proof-kicker {
    top: 16px;
    left: 17px;
    gap: 8px;
    font-size: 8px;
  }

  .proof-kicker strong {
    font-size: 13px;
  }

  .device--desktop {
    top: 58px;
    left: 4%;
    width: 80%;
    border-width: 4px;
    border-radius: 10px;
  }

  .device-bar {
    height: 20px;
    font-size: 6px;
  }

  .device--phone {
    padding: 5px 4px 6px;
    border-width: 2px;
    border-radius: 16px;
  }

  .device--phone-primary {
    right: 3%;
    bottom: 45px;
    width: 28%;
  }

  .device--phone-tp {
    right: 25%;
    bottom: 25px;
    width: 20%;
  }

  .phone-speaker {
    height: 3px;
    margin-bottom: 4px;
  }

  .device-crop--phone {
    border-radius: 10px;
  }

  .product-proof figcaption {
    right: 11px;
    bottom: 10px;
    padding: 7px 9px;
    border-radius: 8px;
  }

  .product-proof figcaption strong {
    font-size: 9px;
  }

  .product-proof figcaption span {
    font-size: 7px;
  }

  .proof-ribbon__inner {
    min-height: 146px;
  }

  .proof-ribbon__inner span {
    min-height: 72px;
    padding: 10px 6px;
    flex-direction: column;
    font-size: 9px;
    gap: 5px;
  }

  .proof-ribbon__inner img {
    width: 24px;
    height: 24px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .section-copy h2,
  .faq-intro h2,
  .section-copy--compact h2 {
    font-size: clamp(38px, 11.5vw, 48px);
  }

  .section-heading > p:last-child,
  .section-copy > p:last-of-type,
  .faq-intro > p:last-of-type {
    margin-top: 16px;
    font-size: 12px;
    line-height: 1.8;
  }

  .section-copy--compact {
    display: block;
  }

  .media-points {
    margin-top: 22px;
  }

  .vsl-layout {
    gap: 30px;
  }

  .vsl-poster {
    min-height: 360px;
    padding: 20px;
    border-radius: 22px;
  }

  .vsl-visual {
    top: 47px;
    left: 5%;
    width: 90%;
    height: 150px;
    grid-template-columns: 1.3fr 18px 0.72fr 18px 0.68fr;
    gap: 5px;
  }

  .vsl-frame {
    border-width: 3px;
    border-radius: 9px;
  }

  .vsl-frame--two span {
    font-size: 34px;
  }

  .vsl-frame--two small {
    margin-top: -16px;
    font-size: 7px;
  }

  .vsl-frame--three {
    height: 135px;
    border-radius: 14px;
  }

  .vsl-arrow {
    width: 16px;
    height: 16px;
  }

  .vsl-poster__title {
    margin-bottom: 13px;
    font-size: 28px;
  }

  .vsl-play {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 11px;
  }

  .quick-buy {
    min-height: 0;
    margin-top: 22px;
    padding: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .quick-buy strong {
    font-size: 15px;
  }

  .quick-buy .button {
    width: 100%;
  }

  .fragment-side,
  .result-side {
    padding: 18px;
    border-radius: 22px;
  }

  .fragment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .fragment-grid article {
    min-height: 108px;
    padding: 10px;
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 8px;
  }

  .fragment-grid img {
    width: 32px;
    height: 32px;
    padding: 7px;
    border-radius: 8px;
  }

  .fragment-grid b {
    font-size: 12px;
  }

  .fragment-grid span {
    font-size: 8px;
    line-height: 1.45;
  }

  .result-stage {
    min-height: 255px;
  }

  .result-caption strong {
    font-size: 14px;
  }

  .research-layout {
    gap: 30px;
  }

  .axis-list {
    margin-top: 22px;
    gap: 6px 12px;
  }

  .axis-list span {
    font-size: 9px;
  }

  .research-visual {
    min-height: 0;
    padding: 16px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .research-step {
    min-height: 124px;
    padding: 15px;
    grid-template-columns: 38px 1fr 1.4fr;
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .research-step > img {
    width: 38px;
    height: 38px;
    margin: 0;
  }

  .research-step strong {
    font-size: 54px;
  }

  .research-step span {
    margin: 0;
    font-size: 9px;
  }

  .research-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .research-step--final {
    min-height: 178px;
    grid-template-columns: 1.4fr 0.6fr 0.8fr;
  }

  .research-output {
    margin: 0;
  }

  .research-step--final strong {
    font-size: 44px;
  }

  .sample-tabs {
    border-radius: 22px;
  }

  .sample-tabs__list {
    padding: 6px;
    gap: 5px;
  }

  .sample-tabs__list button {
    min-height: 48px;
    padding: 9px 8px;
    font-size: 10px;
  }

  .sample-panel {
    min-height: 0;
    padding: 22px 18px 28px;
    gap: 22px;
  }

  .sample-copy {
    display: block;
  }

  .sample-copy h3 {
    font-size: 38px;
  }

  .sample-copy > p:not(.sample-label) {
    margin-top: 13px;
    font-size: 11px;
  }

  .sample-copy ul {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 18px;
    gap: 5px;
  }

  .sample-copy li {
    padding: 8px 5px;
    flex-direction: column;
    border-radius: 10px;
    background: var(--cream);
    font-size: 8px;
    text-align: center;
    gap: 4px;
  }

  .sample-stage {
    min-height: 330px;
  }

  .sample-window--pc {
    width: 80%;
  }

  .sample-window--sp {
    width: 29%;
  }

  .sample-window--tp {
    right: 22%;
    width: 21%;
  }

  .creator-strip {
    padding: 20px;
    grid-template-columns: 74px 1fr;
    gap: 14px;
  }

  .creator-photo {
    width: 74px;
    height: 74px;
    border-width: 3px;
  }

  .creator-copy .eyebrow {
    margin-bottom: 7px;
  }

  .creator-copy h2 {
    font-size: 30px;
  }

  .creator-copy > p:last-child {
    font-size: 10px;
  }

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

  .creator-facts li {
    min-height: 52px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    margin-top: 20px;
    gap: 8px;
  }

  .process-steps li {
    min-height: 90px;
    padding: 15px;
    align-items: center;
  }

  .price-layout {
    gap: 28px;
  }

  .price-card {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .generated-badge--price {
    width: 168px;
    margin-bottom: 10px;
  }

  .price-card h2 {
    font-size: 40px;
  }

  .price-amount {
    margin-top: 17px;
    padding-block: 13px;
    align-items: start;
    flex-direction: column;
    gap: 7px;
  }

  .price-amount strong {
    font-size: 50px;
  }

  .included-grid {
    margin-block: 17px;
    gap: 8px 10px;
  }

  .included-grid li {
    align-items: flex-start;
    font-size: 9px;
    line-height: 1.5;
  }

  .option-heading h3 {
    font-size: 38px;
  }

  .option-heading {
    margin-bottom: 19px;
  }

  .option-heading > p:last-child {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.7;
  }

  .option-card summary {
    min-height: 74px;
    padding-block: 12px;
    grid-template-columns: 42px 1fr;
    gap: 11px;
  }

  .option-card summary > strong {
    grid-column: 2;
    margin-top: -11px;
    font-size: 12px;
  }

  .option-icon {
    width: 42px;
    height: 42px;
    grid-row: 1 / span 2;
  }

  .option-icon img {
    width: 24px;
    height: 24px;
  }

  .option-card summary b {
    font-size: 13px;
  }

  .option-card summary small {
    font-size: 8px;
  }

  .option-card > p {
    padding-bottom: 15px;
    padding-left: 53px;
    line-height: 1.65;
  }

  .ad-boundary {
    margin-top: 18px;
    padding: 16px;
    grid-template-columns: 38px 1fr;
  }

  .ad-boundary > img {
    width: 38px;
    height: 38px;
  }

  .faq-layout {
    gap: 28px;
  }

  .boundary-mini-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .faq-list summary {
    min-height: 68px;
    padding-right: 44px;
    font-size: 13px;
    line-height: 1.55;
  }

  .faq-list details p {
    padding-right: 42px;
    font-size: 11px;
  }

  .final-cta {
    padding: 72px 0 92px;
  }

  .final-layout {
    gap: 34px;
  }

  .generated-badge--final {
    width: 190px;
  }

  .final-copy h2 {
    font-size: 44px;
  }

  .final-price {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .final-price strong {
    font-size: 48px;
  }

  .final-product {
    min-height: 300px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-logo {
    width: 135px;
    grid-row: auto;
  }

  .mobile-sticky {
    display: flex;
  }

  .vsl-dialog__inner {
    padding: 38px 20px 24px;
  }

  .storyboard-list li {
    min-height: 74px;
    padding: 12px;
    grid-template-columns: 48px 34px 1fr;
  }

  .storyboard-list img {
    width: 34px;
    height: 34px;
  }

  .tp-header {
    width: min(calc(100% - 28px), 1180px);
    min-height: 66px;
  }

  .tp-header > a img {
    width: 114px;
  }

  .tp-header .lancers-contract {
    align-items: flex-end;
  }

  .tp-main {
    min-height: calc(100vh - 66px);
    padding: 14px 14px 34px;
  }

  .tp-layout {
    border-radius: 22px;
  }

  .tp-card {
    padding: 28px 20px;
  }

  .success-mark {
    width: 58px;
    height: 58px;
    margin-bottom: 17px;
    border-radius: 17px;
  }

  .tp-card h1 {
    font-size: 39px;
  }

  .tp-lead {
    font-size: 12px;
  }

  .reply-time {
    width: 100%;
    min-width: 0;
  }

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

  .tp-steps li {
    min-height: 86px;
    align-items: center;
  }

  .tp-actions {
    display: grid;
  }

  .tp-actions .button {
    width: 100%;
  }

  .tp-summary {
    padding: 26px 20px;
    border-radius: 0 0 21px 21px;
  }
}

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