:root {
  --bg: #fff8fb;
  --panel: #ffffff;
  --ink: #32283a;
  --muted: #74697e;
  --pink: #ff7bb8;
  --purple: #9b7cff;
  --blue: #65b7ff;
  --mint: #76d9c4;
  --line: #f0ddeb;
  --shadow: 0 24px 80px rgba(87, 64, 112, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 123, 184, 0.24), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(101, 183, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #fff8fb 0%, #f7fbff 48%, #fbf8ff 100%);
  line-height: 1.7;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background-image: url("../images/bg-voice-left.png");
  background-repeat: no-repeat;
  background-size: min(48vw, 720px) auto;
  background-position: left -70px top 90px;
  filter: blur(1px);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background-image: url("../images/bg-voice-right.png");
  background-repeat: no-repeat;
  background-size: min(48vw, 720px) auto;
  background-position: right -80px top 110px;
  filter: blur(1px);
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

h1,
h2,
h3,
.brand,
.top-copy-text,
.section-label,
.eyebrow,
.button,
.creator-cutin span {
  font-family: "Arial Black", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

.phone-shell {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.desktop-section-nav {
  display: none;
}

.desktop-brand-copy {
  display: none;
}

.hero,
.home-hero,
.maker-hero,
.section,
.maker-panel {
  padding: 28px 22px;
}

.home-hero {
  display: grid;
  gap: 18px;
  min-height: 92vh;
  align-content: start;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,244,250,0.94)),
    radial-gradient(circle at 20% 20%, rgba(255, 123, 184, 0.18), transparent 26%),
    radial-gradient(circle at 80% 12%, rgba(101, 183, 255, 0.18), transparent 28%);
}

.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(180deg, #fff 0%, #fff4fa 100%);
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin-bottom: 8px;
}

.top-nav.compact {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.logo-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #6658a8;
}

.logo-brand span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #ff7bb8;
  border: 1px solid rgba(155, 124, 255, 0.45);
  border-radius: 50%;
}

.nav-link,
.text-link {
  color: #7b55d8;
  font-weight: 700;
  text-decoration: none;
}

.eyebrow {
  margin: 0;
  color: #9b4d83;
  font-size: 0.82rem;
  font-weight: 800;
}

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

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: 1.35rem;
}

p {
  margin: 0;
}

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

.lead {
  color: var(--muted);
  font-weight: 600;
}

.hero-copy {
  display: grid;
  gap: 12px;
  text-align: center;
}

.hero-copy h1 {
  color: #343073;
}

.hero-image,
.concept-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(155, 124, 255, 0.24);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(108, 83, 139, 0.16);
}

.hero-image img,
.concept-image img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-image {
  max-height: 310px;
}

.hero-image img {
  height: 310px;
  object-fit: cover;
  object-position: center top;
}

.button-stack,
.actions {
  display: grid;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  border: 0;
  border-radius: 16px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

.button.secondary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.button.ghost {
  color: #7b55d8;
  background: #fff;
  border: 1px solid var(--line);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 230px;
}

.stage-card,
.preview-stage {
  position: relative;
  width: 100%;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92), rgba(255,245,251,0.92)),
    repeating-linear-gradient(90deg, transparent 0 24px, rgba(155, 124, 255, 0.06) 24px 25px);
}

.stage-card.mini {
  width: 88%;
  min-height: 220px;
}

.character-placeholder,
.character-preview,
.official-character {
  position: absolute;
  left: 50%;
  bottom: 30px;
  display: grid;
  place-items: center;
  width: 190px;
  height: 220px;
  transform: translateX(-50%);
  color: #8a6ca2;
  font-weight: 800;
  text-align: center;
  border: 2px dashed rgba(155, 124, 255, 0.48);
  border-radius: 36px 36px 24px 24px;
  background: linear-gradient(180deg, #fff, #f7efff);
}

.character-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.voice-bubble {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  padding: 12px 14px;
  color: #493852;
  font-weight: 800;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(95, 66, 120, 0.12);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.feature-list article,
.direction-box,
.compare > div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.feature-list strong,
.direction-box span {
  display: block;
  margin-bottom: 4px;
  font-weight: 800;
}

.feature-list p,
.split-section p,
.compare p,
.direction-box p {
  color: var(--muted);
}

.soft {
  background: #f6fbff;
}

.quick-answer {
  display: grid;
  gap: 14px;
  background: #fff;
}

.quick-answer p {
  color: var(--muted);
  font-weight: 600;
}

.mini-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 6px;
  color: #6658a8;
  font-size: 0.78rem;
  font-weight: 800;
}

.mini-flow span {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px;
  text-align: center;
  border-radius: 14px;
  background: #fbf8ff;
  border: 1px solid var(--line);
}

.audience-switch {
  display: grid;
  gap: 16px;
  background: linear-gradient(180deg, #fff4fa, #f4f8ff);
}

.tab-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 6px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(155, 124, 255, 0.2);
}

.tab-button {
  min-height: 48px;
  color: #6d5c82;
  border: 0;
  border-radius: 17px;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
}

.tab-button.active {
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 12px 30px rgba(155, 124, 255, 0.24);
}

.tab-button + .tab-button.active {
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.audience-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(155, 124, 255, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(108, 83, 139, 0.14);
}

.audience-card[hidden] {
  display: none;
}

.audience-card h3 {
  margin: 0;
  color: #343073;
  font-size: 1.45rem;
  line-height: 1.3;
}

.audience-card p {
  color: var(--muted);
  margin: 0;
}

.for-label {
  color: #ff6cae !important;
  font-size: 0.88rem;
  font-weight: 900;
}

.artist-card .for-label {
  color: #3e7fe8 !important;
}

.audience-visual {
  position: relative;
  display: grid;
  min-height: 178px;
  place-items: center;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 123, 184, 0.24), transparent 28%),
    radial-gradient(circle at 74% 30%, rgba(101, 183, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #fff, #fbf8ff);
}

.avatar {
  display: grid;
  width: 116px;
  height: 116px;
  place-items: center;
  color: #fff;
  border-radius: 38px;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 20px 42px rgba(68, 53, 94, 0.18);
}

.voice-avatar {
  background: linear-gradient(135deg, #ff8fbe, #ff6aa5);
}

.artist-avatar {
  background: linear-gradient(135deg, #65b7ff, #737dff);
}

.sound-wave {
  position: absolute;
  right: 34px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sound-wave span {
  width: 7px;
  border-radius: 999px;
  background: #ff8fbe;
}

.sound-wave span:nth-child(1) { height: 22px; }
.sound-wave span:nth-child(2) { height: 42px; }
.sound-wave span:nth-child(3) { height: 30px; }
.sound-wave span:nth-child(4) { height: 52px; }

.tiny-mouths {
  position: absolute;
  right: 22px;
  bottom: 24px;
  display: grid;
  gap: 7px;
}

.tiny-mouths span {
  padding: 6px 9px;
  color: #3e7fe8;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(101, 183, 255, 0.34);
  font-size: 0.76rem;
  font-weight: 900;
}

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

.simple-steps li {
  min-height: 42px;
  padding: 10px 12px;
  color: #514566;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
}

.benefit-grid {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.benefit-grid article {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 1px solid rgba(101, 183, 255, 0.2);
  border-radius: 18px;
  background: #fff;
}

.benefit-grid span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--blue);
  font-weight: 900;
}

.benefit-grid strong {
  font-weight: 900;
}

.benefit-grid p {
  color: var(--muted);
}

.concept-image-section {
  display: grid;
  gap: 16px;
  background: #fff;
}

.concept-image {
  max-height: 520px;
}

.concept-image img {
  height: 520px;
  object-fit: cover;
  object-position: center top;
}

.steps {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 16px;
  background: #fff;
  font-weight: 700;
}

.steps span {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: var(--pink);
}

.split-section {
  display: grid;
  gap: 12px;
  background: #fff;
}

.split-section.alt {
  background: #fbf8ff;
}

.compare {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 4px 10px;
  color: #7a6682;
  border-radius: 999px;
  background: #f3edf5;
  font-size: 0.82rem;
  font-weight: 800;
}

.tag.accent {
  color: #fff;
  background: var(--purple);
}

.safety,
.interview {
  background: #fff;
}

.safety ul,
.interview ul {
  display: grid;
  gap: 10px;
  padding-left: 1.2em;
  margin: 16px 0 0;
  color: var(--muted);
}

.cta {
  display: grid;
  gap: 16px;
  background: linear-gradient(180deg, #fff4fb, #f3f9ff);
}

.bottom-nav {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}

.bottom-nav a {
  min-height: 40px;
  display: grid;
  place-items: center;
  color: #6658a8;
  border-radius: 13px;
  font-size: 0.75rem;
  font-weight: 900;
  text-decoration: none;
}

.bottom-nav a[aria-current="page"] {
  color: #ff6cae;
  background: #fff4fa;
}

.lp-shell {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,248,252,0.86)),
    radial-gradient(circle at 0 12%, rgba(255, 123, 184, 0.12), transparent 30%),
    radial-gradient(circle at 100% 36%, rgba(101, 183, 255, 0.12), transparent 28%);
}

.lp-hero {
  display: grid;
  gap: 14px;
  min-height: 96vh;
  align-content: start;
  padding: 24px 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,242,249,0.94)),
    radial-gradient(circle at 18% 20%, rgba(255, 123, 184, 0.16), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(101, 183, 255, 0.16), transparent 30%);
}

.lp-hero-copy {
  padding-top: 8px;
}

.lp-hero-copy h1 {
  color: #343073;
  font-size: 2.26rem;
}

.hero-note {
  color: #7e4b78;
  font-weight: 800;
}

.lp-section {
  display: grid;
  gap: 16px;
  background: #fff;
}

.lp-section:nth-of-type(odd) {
  background: #fbf8ff;
}

.section-lead,
.caption {
  color: var(--muted);
  font-weight: 600;
}

.caption {
  font-size: 0.88rem;
}

.app-phone {
  width: min(100%, 300px);
  margin: 0 auto;
  padding: 10px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(155, 124, 255, 0.24);
  box-shadow: 0 24px 60px rgba(98, 70, 126, 0.18);
}

.app-screen {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 123, 184, 0.24), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(101, 183, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #fff, #fff4fa 54%, #f4f9ff);
}

.hero-mock .app-screen {
  min-height: 318px;
}

.mock-status {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 10px;
  color: #8d3c78;
  border: 1px solid rgba(255, 123, 184, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
}

.mock-character {
  position: absolute;
  left: 50%;
  bottom: 64px;
  width: 58%;
  max-height: 230px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 32px rgba(94, 49, 112, 0.22));
}

.app-wave {
  position: absolute;
  right: 18px;
  top: 66px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
}

.app-wave span {
  width: 6px;
  border-radius: 999px;
  background: #ff7bb8;
}

.app-wave span:nth-child(1) { height: 18px; }
.app-wave span:nth-child(2) { height: 34px; }
.app-wave span:nth-child(3) { height: 48px; }
.app-wave span:nth-child(4) { height: 30px; }
.app-wave span:nth-child(5) { height: 22px; }

.app-play {
  position: absolute;
  right: 22px;
  bottom: 92px;
  width: 48px;
  height: 48px;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 16px 32px rgba(155, 124, 255, 0.26);
}

.app-screen > p {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  color: #493852;
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 28px rgba(95, 66, 120, 0.12);
  font-weight: 900;
}

.step-cards {
  display: grid;
  gap: 12px;
}

.step-cards article,
.reward-card,
.department-grid article {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(155, 124, 255, 0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.92);
}

.step-cards span,
.reward-card span {
  color: #8d61e8;
  font-size: 0.78rem;
  font-weight: 900;
}

.step-cards strong,
.reward-card strong,
.department-grid strong {
  color: #343073;
  font-size: 1.08rem;
  font-weight: 900;
}

.step-cards p,
.reward-card p,
.department-grid p {
  color: var(--muted);
}

.target-section {
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.check-grid {
  display: grid;
  gap: 10px;
}

.check-grid span {
  position: relative;
  padding: 12px 14px 12px 40px;
  color: #514566;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255,255,255,0.9);
  font-weight: 800;
}

.check-grid span::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 12px;
  color: #ff6cae;
  font-weight: 900;
}

.benefit-section {
  background: #fff;
}

.mockup-section {
  background: linear-gradient(180deg, #fbf8ff, #fff);
}

.editor-mock .app-screen {
  min-height: 500px;
}

.editor-character {
  position: absolute;
  top: 44px;
  left: 50%;
  width: 54%;
  max-height: 260px;
  object-fit: contain;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 26px rgba(94, 49, 112, 0.2));
}

.editor-panel {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(155, 124, 255, 0.2);
  border-radius: 18px;
  background: rgba(255,255,255,0.94);
  box-shadow: 0 14px 36px rgba(95, 66, 120, 0.12);
}

.editor-panel label {
  color: #514566;
  font-size: 0.84rem;
  font-weight: 900;
}

.fake-slider {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #f2eafa;
}

.fake-slider span {
  display: block;
  width: 70%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.chip-row span,
.feature-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  color: #6658a8;
  border: 1px solid rgba(155, 124, 255, 0.18);
  border-radius: 999px;
  background: #fbf8ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-preview {
  background: #fff;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sample-project {
  background: linear-gradient(180deg, #fff8fb, #f6fbff);
}

.reward-card {
  border-color: rgba(255, 123, 184, 0.28);
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(255,244,250,0.94));
}

.department-grid {
  display: grid;
  gap: 12px;
}

.lp-cta {
  text-align: left;
}

.faq-section {
  background: #fff;
}

.faq-section details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.faq-section summary {
  padding: 14px 16px;
  color: #343073;
  cursor: pointer;
  font-weight: 900;
}

.faq-section details p {
  padding: 0 16px 16px;
  color: var(--muted);
  font-weight: 600;
}

.lp-footer {
  display: grid;
  gap: 10px;
  padding: 28px 22px 82px;
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.lp-footer p {
  font-size: 0.9rem;
}

.sketch-lp {
  background: #fff;
}

.sketch-hero {
  display: grid;
  gap: 14px;
  align-content: start;
  position: relative;
  padding: 22px 20px 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,255,0.94)),
    radial-gradient(circle at 18% 18%, rgba(101, 183, 255, 0.12), transparent 32%),
    radial-gradient(circle at 84% 26%, rgba(155, 124, 255, 0.1), transparent 30%);
}

.sketch-nav {
  align-items: flex-start;
  position: relative;
  z-index: 20;
}

.hamburger-button {
  display: grid;
  position: relative;
  z-index: 35;
  gap: 5px;
  width: 48px;
  height: 42px;
  place-content: center;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}

.hamburger-button span {
  display: block;
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: #1677ff;
}

.hamburger-button span:nth-child(2) {
  background: #00a35b;
}

.hamburger-button span:nth-child(3) {
  background: #ffd21f;
}

.nav-pills {
  position: absolute;
  top: 62px;
  right: 20px;
  z-index: 30;
  display: none;
  min-width: 156px;
  padding: 10px;
  border: 3px solid #1677ff;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 0 #b8d8ff, 0 18px 44px rgba(22, 119, 255, 0.18);
}

.nav-pills.is-open {
  display: grid;
  gap: 8px;
}

.nav-pills a {
  display: grid;
  min-height: 40px;
  place-items: center;
  padding: 8px 12px;
  color: #6658a8;
  border: 1px solid rgba(155, 124, 255, 0.2);
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  font-size: 0.75rem;
  font-weight: 900;
  text-decoration: none;
}

.sketch-hero-copy {
  display: grid;
  gap: 9px;
  justify-items: start;
  text-align: left;
}

.top-copy-text {
  display: grid;
  position: relative;
  z-index: 4;
  width: max-content;
  max-width: 106%;
  margin: 30px 0 -122px 18px;
  color: #000;
  font-family: "Arial Black", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: clamp(3.05rem, 13.2vw, 4.35rem);
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: 0;
  transform: rotate(-9deg);
  transform-origin: 42% 50%;
}

.copy-line {
  display: block;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.copy-line-first {
  padding-left: 26px;
}

.copy-line-second {
  font-size: 1.05em;
}

.copy-cv {
  position: absolute;
  left: -24px;
  top: 50%;
  z-index: 2;
  font-size: 0.38em;
  line-height: 1;
  transform: rotate(-16deg);
  transform-origin: center;
}

.sketch-hero-copy p:not(.eyebrow) {
  color: #5f5870;
  font-weight: 800;
}

.main-visual {
  display: flex;
  justify-content: flex-end;
  margin: -38px -20px -108px;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.main-visual img {
  display: block;
  width: calc(100% + 190px);
  max-width: none;
  height: 548px;
  margin-right: -142px;
  object-fit: contain;
  object-position: right center;
  transform: scaleX(-1);
  transform-origin: center;
}

.hero-subcopy {
  position: relative;
  z-index: 5;
  margin: 0 2px 4px;
  color: #000;
  font-size: 1.06rem;
  line-height: 1.62;
  font-weight: 950;
  letter-spacing: 0;
}

.contest-float {
  position: absolute;
  right: 8px;
  top: 392px;
  z-index: 3;
  display: grid;
  width: 122px;
  min-height: 122px;
  place-items: center;
  padding: 7px 7px 10px;
  color: #7b104f;
  border: 4px solid #ff4fa3;
  border-radius: 24px;
  background:
    linear-gradient(135deg, #fff8cf 0%, #fff 48%, #ffe1f0 100%);
  box-shadow: 0 7px 0 #ffd1e8, 0 18px 36px rgba(255, 79, 163, 0.24);
  text-align: center;
  text-decoration: none;
  transform: rotate(5deg);
  animation: floatBadge 3.2s ease-in-out infinite;
}

.contest-float img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  margin-top: -10px;
  filter: drop-shadow(0 5px 7px rgba(123, 16, 79, 0.16));
}

.contest-float span {
  width: 100%;
  padding: 2px 7px;
  color: #fff;
  border-radius: 999px;
  background: #1677ff;
  font-size: 0.61rem;
  font-weight: 950;
  line-height: 1.15;
}

.contest-float strong {
  font-size: 0.74rem;
  line-height: 1.12;
  font-weight: 950;
}

.compact-buttons {
  gap: 10px;
  position: relative;
  z-index: 6;
  justify-items: center;
}

.compact-buttons .button {
  width: min(78%, 292px);
  min-height: 38px;
  padding: 8px 14px;
  font-size: 0.86rem;
}

.compact-buttons .hero-register-button {
  position: relative;
  width: min(92%, 348px);
  min-height: 56px;
  padding: 13px 24px;
  overflow: hidden;
  border: 4px solid #fff;
  font-size: 1.06rem;
  box-shadow: 0 8px 0 #b51b6b, 0 18px 34px rgba(255, 79, 163, 0.32);
  animation: registerPulse 2.4s ease-in-out infinite;
}

.hero-register-button::before,
.hero-register-button::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 18px;
  height: 18px;
  background:
    linear-gradient(90deg, transparent 42%, #fff 42% 58%, transparent 58%),
    linear-gradient(0deg, transparent 42%, #fff 42% 58%, transparent 58%);
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.95));
  animation: sparkleBlink 1.4s ease-in-out infinite;
}

.hero-register-button::before {
  left: 22px;
  top: 11px;
}

.hero-register-button::after {
  right: 24px;
  bottom: 12px;
  width: 14px;
  height: 14px;
  animation-delay: 0.48s;
}

.about-service {
  position: relative;
  gap: 18px;
  padding-top: 34px;
  padding-bottom: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 228, 92, 0.4), transparent 24%),
    radial-gradient(circle at 92% 2%, rgba(22, 119, 255, 0.13), transparent 28%),
    linear-gradient(180deg, #fff, #f7fbff);
}

.about-service::after {
  content: "";
  position: absolute;
  left: -36px;
  bottom: -44px;
  width: 132px;
  height: 132px;
  border: 18px solid rgba(22, 119, 255, 0.12);
  border-radius: 50%;
}

.about-service > * {
  position: relative;
  z-index: 1;
}

.about-service h2 {
  color: #102a63;
  font-size: 1.44rem;
  line-height: 1.45;
}

.about-lead {
  color: #102a63;
  font-size: 1.25rem;
  font-weight: 950;
  line-height: 1.56;
  text-align: center;
}

.about-flow {
  display: grid;
  justify-items: center;
  gap: 4px;
}

.about-step {
  display: grid;
  justify-items: center;
  width: 100%;
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
}

.about-step p {
  color: #102a63;
  font-size: 0.84rem;
  font-weight: 950;
  line-height: 1.5;
}

.about-step-image {
  display: block;
  width: min(54%, 184px);
  height: auto;
  filter: drop-shadow(0 8px 14px rgba(22, 119, 255, 0.09));
}

.about-arrow {
  display: block;
  width: 48px;
  height: 56px;
  margin: -4px 0 -2px;
}

.about-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.about-arrow-line,
.about-arrow-shadow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8;
}

.about-arrow-line {
  stroke: #1677ff;
}

.about-arrow-shadow {
  stroke: #b8d8ff;
}

.about-arrow-head {
  fill: #1677ff;
}

.about-message {
  justify-self: center;
  width: min(100%, 342px);
  padding: 8px 4px 0;
  color: #102a63;
  font-size: 1.34rem;
  font-weight: 950;
  line-height: 1.34;
  text-align: center;
  text-shadow: 0 4px 0 #d8eaff;
  transform: translateX(-115%) rotate(-2deg);
  animation: aboutMessageSlide 720ms cubic-bezier(.2, .85, .2, 1) 240ms forwards;
}

.voice-avatar {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 34px;
  height: 34px;
  border: 3px solid #102a63;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #fff 0 21%, transparent 22%),
    #ffe45c;
}

.voice-lines {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: 28px;
  padding: 10px;
  border-radius: 14px;
  background: #fff;
  box-shadow: inset 0 0 0 2px #cae2ff;
}

.voice-lines i {
  display: block;
  width: 6px;
  border-radius: 999px;
  background: #1677ff;
}

.voice-lines i:nth-child(1) { height: 18px; }
.voice-lines i:nth-child(2) { height: 34px; }
.voice-lines i:nth-child(3) { height: 24px; }

.empathy-section {
  position: relative;
  display: grid;
  gap: 18px;
  padding-top: 38px;
  padding-bottom: 36px;
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 228, 92, 0.34), transparent 22%),
    linear-gradient(180deg, #fff 0%, #fff8fb 100%);
  overflow: hidden;
}

.empathy-heading {
  position: relative;
  display: grid;
  gap: 10px;
  text-align: center;
}

.empathy-heading::before {
  content: none;
}

.empathy-heading h2 {
  position: relative;
  z-index: 1;
  color: #102a63;
  font-size: 1.58rem;
  font-weight: 950;
  line-height: 1.36;
  transform: translateY(12px);
  opacity: 0;
  animation: popInCopy 680ms cubic-bezier(.2, .85, .2, 1) 120ms forwards;
}

.empathy-heading p {
  color: #0557cf;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(10px);
  animation: popInCopy 680ms cubic-bezier(.2, .85, .2, 1) 280ms forwards;
}

.empathy-scene {
  position: relative;
  display: grid;
  min-height: 540px;
  align-items: end;
  margin: 2px -22px 0;
  overflow: hidden;
}

.empathy-scene::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 248, 251, 0), rgba(255, 248, 251, 0.96) 62%, #fff8fb 100%);
}

.empathy-voices {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: visible;
}

.empathy-visual {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(100%, 390px);
  margin: 72px auto 0;
  pointer-events: none;
}

.empathy-visual img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 16px 26px rgba(22, 119, 255, 0.12));
}

.empathy-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 4;
  color: #102a63;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.72;
  text-align: left;
}

.empathy-caption:last-child {
  color: #102a63;
  font-size: 0.98rem;
  font-weight: 950;
}

.points-section {
  position: relative;
  gap: 0 !important;
  padding: 0;
  background: #fff !important;
  border-top: 0;
  isolation: isolate;
}

.points-section h2 {
  display: grid;
  min-height: 132px;
  place-items: center;
  padding: 34px 22px 30px;
  color: #102a63;
  font-size: 1.72rem;
  text-align: center;
  background: #fff;
}

.point-list {
  display: grid;
  gap: 0;
}

.point-card {
  display: grid;
  gap: 14px;
  min-height: 700px;
  align-content: start;
  padding: 46px 22px 52px;
  border: 0;
  border-radius: 0;
  background: #f5fbff;
  box-shadow: none;
}

.point-card:nth-child(1) {
  background:
    radial-gradient(circle at 84% 6%, rgba(255, 228, 92, 0.56), transparent 28%),
    linear-gradient(180deg, #e9f4ff 0%, #f8fcff 100%);
}

.point-card:nth-child(2) {
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 228, 92, 0.5), transparent 28%),
    linear-gradient(180deg, #ffe6f3 0%, #fff7fb 100%);
}

.point-card:nth-child(3) {
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 228, 92, 0.5), transparent 28%),
    linear-gradient(180deg, #dcf8ec 0%, #f3fff9 100%);
}

.point-card:nth-child(2) > span {
  background: #ff4fa3;
  box-shadow: inset 0 -4px 0 #b51b6b;
}

.point-card:nth-child(3) > span {
  background: #00a35b;
  box-shadow: inset 0 -4px 0 #006b40;
}

.point-card > span {
  justify-self: start;
  display: inline-grid;
  min-height: 30px;
  place-items: center;
  padding: 4px 13px;
  color: #fff;
  border-radius: 999px;
  background: #1677ff;
  box-shadow: inset 0 -4px 0 #0557cf;
  font-size: 0.82rem;
  font-weight: 950;
}

.point-card h3 {
  margin: 0;
  color: #102a63;
  font-size: 1.52rem;
  font-weight: 950;
  line-height: 1.35;
}

.point-card p {
  color: #46608f;
  font-size: 1rem;
  font-weight: 780;
  line-height: 1.68;
}

.point-copy {
  display: grid;
  gap: 10px;
}

.point-visual {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 228, 92, 0.52), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(22, 119, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #fff, #e9f4ff);
}

.point-card:nth-child(2) .point-visual {
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 228, 92, 0.48), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(255, 79, 163, 0.14), transparent 30%),
    linear-gradient(180deg, #fff, #fff0f7);
}

.point-card:nth-child(3) .point-visual {
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 228, 92, 0.48), transparent 28%),
    radial-gradient(circle at 82% 20%, rgba(0, 163, 91, 0.14), transparent 30%),
    linear-gradient(180deg, #fff, #f0fff8);
}

.mock-iframe-shell {
  position: relative;
  width: 195px;
  height: 410px;
  overflow: hidden;
  border-radius: 24px;
  filter: drop-shadow(0 18px 24px rgba(16, 42, 99, 0.16));
}

.mock-iframe-shell iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 390px;
  max-width: none;
  height: 819px;
  border: 0;
  background: #fff;
  pointer-events: none;
  transform: scale(0.5);
  transform-origin: left top;
}

.points-closing {
  justify-self: center;
  width: min(100%, 350px);
  padding: 44px 22px 48px;
  color: #102a63;
  font-size: 1.52rem;
  font-weight: 950;
  line-height: 1.34;
  text-align: center;
  text-shadow: 0 4px 0 #d8eaff;
  transform: translateX(-115%) rotate(-2deg);
  animation: aboutMessageSlide 720ms cubic-bezier(.2, .85, .2, 1) 240ms forwards;
}

.point-phone {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: 8px;
  width: min(68%, 210px);
  aspect-ratio: 9 / 18.6;
  padding: 34px 10px 16px;
  border: 5px solid #102a63;
  border-radius: 34px;
  background:
    linear-gradient(180deg, #fff, #e9f4ff);
  box-shadow:
    inset 0 0 0 2px #cae2ff,
    0 8px 0 #b8d8ff,
    0 22px 38px rgba(16, 42, 99, 0.18);
}

.point-phone::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 52px;
  height: 6px;
  border-radius: 999px;
  background: #102a63;
  transform: translateX(-50%);
}

.point-phone-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7px;
  min-height: 26px;
  padding: 4px 7px;
  color: #102a63;
  border-radius: 16px;
  background: rgba(255,255,255,0.92);
  font-weight: 950;
}

.point-phone-top strong {
  font-size: 0.62rem;
}

.point-phone-top span {
  display: inline-grid;
  min-height: 18px;
  place-items: center;
  padding: 2px 7px;
  color: #0557cf;
  border-radius: 999px;
  background: #e9f4ff;
  font-size: 0.5rem;
}

.point-phone-stage {
  position: relative;
  display: grid;
  min-height: 178px;
  place-items: center;
  overflow: hidden;
  border: 3px solid #cae2ff;
  border-radius: 18px;
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 228, 92, 0.6), transparent 28%),
    linear-gradient(180deg, #fff, #e9f4ff);
}

.point-phone-stage img {
  width: 54%;
  max-height: 158px;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(16, 42, 99, 0.16));
}

.point-template .point-phone-stage img {
  width: 148%;
  height: 178px;
  max-height: none;
  object-fit: cover;
  object-position: 56% 50%;
  opacity: 0.82;
}

.point-phone-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.point-phone-row span {
  display: grid;
  min-height: 24px;
  place-items: center;
  color: #0557cf;
  border-radius: 999px;
  background: #fff;
  font-size: 0.54rem;
  font-weight: 950;
}

.point-request {
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 8px;
  display: grid;
  gap: 2px;
  padding: 6px 7px;
  border: 2px solid #cae2ff;
  border-radius: 12px;
  background: rgba(255,255,255,0.94);
}

.point-request strong {
  color: #102a63;
  font-size: 0.55rem;
  font-weight: 950;
}

.point-request small {
  color: #46608f;
  font-size: 0.46rem;
  font-weight: 800;
}

.point-voice-list {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px;
  padding: 6px 7px;
  border-radius: 14px;
  background: #fff;
}

.point-voice-list > span {
  color: #102a63;
  font-size: 0.54rem;
  font-weight: 950;
}

.point-wave {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 5px;
  border-radius: 10px;
  background: #e9f4ff;
}

.point-wave i {
  display: block;
  width: 5px;
  border-radius: 999px;
  background: #1677ff;
}

.point-wave i:nth-child(1) { height: 18px; }
.point-wave i:nth-child(2) { height: 34px; }
.point-wave i:nth-child(3) { height: 24px; }

.point-template-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.point-template-strip span {
  display: grid;
  min-height: 23px;
  place-items: center;
  color: #46608f;
  border-radius: 11px;
  background: #fff;
  font-size: 0.5rem;
  font-weight: 950;
}

.point-template-strip .is-active {
  color: #fff;
  background: #1677ff;
}

.point-play {
  position: absolute;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: rgba(22, 119, 255, 0.9);
  box-shadow: 0 8px 18px rgba(16, 42, 99, 0.2);
}

.point-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}

.point-ui {
  display: grid;
  gap: 9px;
  width: min(88%, 144px);
  padding: 10px;
  border: 2px solid #cae2ff;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 7px 0 rgba(184, 216, 255, 0.8);
}

.point-ui label {
  display: grid;
  gap: 5px;
  color: #102a63;
  font-size: 0.58rem;
  font-weight: 950;
}

.point-ui i {
  position: relative;
  display: block;
  height: 13px;
  border-radius: 999px;
  background: #e9f4ff;
}

.point-ui i::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 68%;
  border-radius: inherit;
  background: #1677ff;
}

.point-ui label:nth-child(2) i::before {
  width: 44%;
  background: #ffe45c;
}

.point-ui button {
  min-height: 30px;
  color: #fff;
  border: 0;
  border-radius: 999px;
  background: #1677ff;
  box-shadow: inset 0 -4px 0 #0557cf;
  font-size: 0.62rem;
  font-weight: 950;
}

.creator-worries {
  display: grid;
  gap: 0;
  padding-top: 30px;
  padding-bottom: 24px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  overflow: hidden;
}

.worry-bubble {
  position: relative;
  width: min(82%, 310px);
  min-height: 150px;
}

.empathy-section .worry-bubble {
  position: absolute;
  width: 52%;
  min-height: 132px;
  opacity: 0;
  transform: translateY(22px) scale(0.94);
  filter: blur(3px);
  animation: worryFloatIn 820ms cubic-bezier(.18, .88, .22, 1.08) forwards;
}

.reveal-ready .empathy-section .worry-bubble {
  animation-play-state: paused;
}

.reveal-ready .empathy-section .empathy-scene.is-visible .worry-bubble,
.reveal-ready .empathy-section .empathy-voices.is-visible .worry-bubble {
  animation-play-state: running;
}

.empathy-section .worry-left {
  left: 6px;
  top: 0;
  margin: 0;
  animation-delay: 220ms;
}

.empathy-section .worry-right {
  right: 4px;
  top: 72px;
  margin: 0;
  animation-delay: 720ms;
}

.empathy-section .worry-bubble p {
  left: 15%;
  top: 44%;
  width: 70%;
  font-size: clamp(0.76rem, 3.1vw, 0.96rem);
  line-height: 1.28;
  transform: translateY(-54%);
}

.empathy-section .worry-right p {
  left: 15%;
}

.worry-bubble img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 0 #d8eaff);
}

.worry-bubble p {
  position: absolute;
  left: 18%;
  top: 25%;
  width: 62%;
  margin: 0;
  color: #102a63;
  font-size: 1.22rem;
  font-weight: 950;
  line-height: 1.28;
  text-align: center;
}

.worry-left {
  justify-self: start;
  margin-left: -10px;
}

.worry-right {
  justify-self: end;
  margin-top: -18px;
  margin-right: -12px;
}

.worry-right img {
  transform: scaleX(-1);
}

.worry-right p {
  left: 18%;
}

.empathy-section .worry-left {
  left: 6px;
  top: 0;
  margin: 0;
}

.empathy-section .worry-right {
  right: 4px;
  top: 72px;
  margin: 0;
}

.empathy-section .worry-bubble p {
  left: 15%;
  top: 44%;
  width: 70%;
  font-size: clamp(0.76rem, 3.1vw, 0.96rem);
  line-height: 1.28;
  transform: translateY(-54%);
}

.creator-cutin {
  position: relative;
  display: grid;
  min-height: 56px;
  margin: 8px 0 0;
  place-items: center;
  overflow: hidden;
}

.creator-cutin span {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #102a63;
  font-family: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", sans-serif;
  padding-top: 0;
  font-size: 1.62rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  text-shadow: 0 3px 0 #d8eaff;
  opacity: 0;
  transform: translateX(-105%);
  animation: cutInText 700ms cubic-bezier(.2, .85, .2, 1) 260ms forwards;
}

.sketch-section,
.ocvoice-intro {
  display: grid;
  gap: 16px;
  background: #fff;
}

.sketch-section:nth-of-type(even),
.ocvoice-intro {
  background: #fbf8ff;
}

.sketch-section h2,
.ocvoice-intro h2 {
  color: #343073;
  font-size: 1.65rem;
}

.ocvoice-intro {
  gap: 22px;
  padding-top: 34px;
}

.ocvoice-intro h2 {
  margin: 0;
  color: #102a63;
  font-size: 1.55rem;
  line-height: 1.45;
}

.ocvoice-intro h2 span {
  color: #1677ff;
}

.app-mockup {
  display: grid;
  place-items: center;
}

.app-phone {
  position: relative;
  width: min(86%, 302px);
  aspect-ratio: 9 / 18.8;
  padding: 14px;
  border: 8px solid #102a63;
  border-radius: 42px;
  background:
    linear-gradient(180deg, #193d86, #102a63);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.1),
    0 10px 0 #b8d8ff,
    0 24px 54px rgba(16, 42, 99, 0.18);
}

.app-speaker {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 64px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.38);
  transform: translateX(-50%);
}

.app-screen {
  display: grid;
  grid-template-rows: auto auto 1fr auto auto;
  gap: 10px;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 24px 12px 12px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 228, 92, 0.52), transparent 26%),
    radial-gradient(circle at 84% 22%, rgba(22, 119, 255, 0.22), transparent 30%),
    linear-gradient(180deg, #fff, #e9f4ff);
}

.app-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 32px;
}

.app-topbar strong {
  color: #102a63;
  font-size: 0.98rem;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.app-topbar span {
  display: inline-grid;
  min-height: 24px;
  place-items: center;
  padding: 3px 8px;
  color: #0557cf;
  border: 2px solid #1677ff;
  border-radius: 999px;
  background: #fff;
  font-size: 0.64rem;
  font-weight: 900;
}

.app-status-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}

.app-status-row span {
  display: grid;
  min-height: 30px;
  place-items: center;
  color: #102a63;
  border: 2px solid #cae2ff;
  border-radius: 14px;
  background: rgba(255,255,255,0.82);
  font-size: 0.68rem;
  font-weight: 900;
}

.app-video-loop {
  position: relative;
  display: grid;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  border: 3px solid #cae2ff;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.92)),
    radial-gradient(circle at 50% 24%, rgba(255, 106, 168, 0.2), transparent 30%);
  box-shadow: inset 0 -14px 34px rgba(22, 119, 255, 0.12);
}

.app-video-loop img {
  width: 76%;
  max-height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(16, 42, 99, 0.16));
  animation: mockFloat 3.6s ease-in-out infinite;
}

.app-play {
  position: absolute;
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: rgba(22, 119, 255, 0.86);
  box-shadow: 0 8px 18px rgba(16, 42, 99, 0.2);
}

.app-play span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}

.app-video-loop p {
  position: absolute;
  left: 12px;
  top: 12px;
  margin: 0;
  color: #0557cf;
  font-size: 0.7rem;
  font-weight: 900;
}

.app-wave {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.app-wave i {
  display: block;
  width: 5px;
  height: 18px;
  border-radius: 999px;
  background: #1677ff;
  animation: wavePulse 1.1s ease-in-out infinite;
}

.app-wave i:nth-child(2) { height: 30px; animation-delay: 120ms; }
.app-wave i:nth-child(3) { height: 22px; animation-delay: 240ms; }
.app-wave i:nth-child(4) { height: 34px; animation-delay: 360ms; }

.app-caption {
  display: grid;
  gap: 6px;
  padding: 10px;
  border: 3px solid #1677ff;
  border-radius: 18px;
  background: #fff;
  text-align: center;
}

.app-caption strong {
  color: #102a63;
  font-size: 0.98rem;
  font-weight: 900;
}

.app-caption small {
  color: #46608f;
  font-size: 0.72rem;
  font-weight: 700;
}

.app-candidate-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.app-candidate-row span {
  padding: 3px 7px;
  color: #0557cf;
  border-radius: 999px;
  background: #e9f4ff;
  font-size: 0.63rem;
  font-weight: 900;
}

.app-bottom-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 4px;
  border-radius: 16px;
  background: rgba(255,255,255,0.76);
}

.app-bottom-nav span {
  display: grid;
  min-height: 26px;
  place-items: center;
  color: #46608f;
  border-radius: 12px;
  font-size: 0.66rem;
  font-weight: 900;
}

.app-bottom-nav .is-active {
  color: #fff;
  background: #1677ff;
  box-shadow: inset 0 -3px 0 #0557cf;
}

.mini-mock {
  display: grid;
  place-items: center;
}

.mini-phone {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 270px);
  min-height: 330px;
  overflow: hidden;
  border: 10px solid rgba(255,255,255,0.92);
  border-radius: 34px;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 123, 184, 0.18), transparent 30%),
    radial-gradient(circle at 78% 22%, rgba(101, 183, 255, 0.2), transparent 30%),
    linear-gradient(180deg, #fff, #f6fbff);
  box-shadow: 0 20px 52px rgba(87, 64, 112, 0.16);
}

.mini-phone img {
  width: 54%;
  max-height: 235px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(94, 49, 112, 0.2));
}

.mini-phone b {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 10px;
  color: #343073;
  border-radius: 16px;
  background: rgba(255,255,255,0.9);
  text-align: center;
}

.mini-wave {
  position: absolute;
  right: 24px;
  top: 72px;
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 10px;
  border-radius: 16px;
  background: #fff;
}

.mini-wave span {
  width: 6px;
  border-radius: 999px;
  background: #65b7ff;
}

.mini-wave span:nth-child(1) { height: 18px; }
.mini-wave span:nth-child(2) { height: 36px; }
.mini-wave span:nth-child(3) { height: 24px; }

.point-row {
  display: grid;
  gap: 10px;
}

.point-row {
  grid-template-columns: 1fr;
}

.point-row span {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 10px;
  color: #514566;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font-weight: 900;
  text-align: center;
}

.use-steps {
  display: grid;
  gap: 12px;
}

.use-steps article {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 15px;
  border: 1px solid rgba(155, 124, 255, 0.18);
  border-radius: 18px;
  background: #fff;
}

.use-steps strong {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
}

.use-steps h3 {
  margin: 0;
  color: #343073;
  font-size: 1rem;
}

.use-steps p {
  color: var(--muted);
  font-weight: 700;
}

.visual-steps {
  display: grid;
  gap: 18px;
}

.visual-step {
  display: grid;
  gap: 10px;
}

.step-image {
  position: relative;
  display: grid;
  min-height: 214px;
  place-items: center;
  overflow: hidden;
  border: 3px solid #1677ff;
  border-radius: 24px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 228, 92, 0.54), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(22, 119, 255, 0.22), transparent 30%),
    linear-gradient(180deg, #fff, #e9f4ff);
  box-shadow: 0 8px 0 #b8d8ff;
}

.step-number {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  display: grid;
  min-width: 54px;
  min-height: 34px;
  place-items: center;
  color: #fff;
  border-radius: 999px;
  background: #1677ff;
  box-shadow: inset 0 -4px 0 #0557cf;
  font-size: 0.9rem;
  font-weight: 950;
}

.step-image > b {
  position: absolute;
  right: 14px;
  bottom: 10px;
  z-index: 2;
  color: rgba(16, 42, 99, 0.18);
  font-size: 1.55rem;
  font-weight: 950;
  letter-spacing: 0.03em;
}

.step-upload img {
  width: 45%;
  max-height: 190px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(16, 42, 99, 0.18));
}

.step-upload::after {
  content: "画像を入れる";
  position: absolute;
  right: 18px;
  top: 54px;
  padding: 8px 12px;
  color: #0557cf;
  border: 2px solid #1677ff;
  border-radius: 999px;
  background: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.step-card-preview {
  display: grid;
  gap: 8px;
  width: min(72%, 230px);
  padding: 18px;
  border: 3px solid #cae2ff;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 8px 0 #d8eaff;
  text-align: center;
}

.step-card-preview strong {
  color: #102a63;
  font-size: 1.25rem;
  font-weight: 950;
}

.step-card-preview small {
  color: #46608f;
  font-weight: 900;
}

.step-card-preview i {
  display: block;
  height: 38px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, #1677ff 0 6px, transparent 6px 13px),
    #e9f4ff;
}

.step-movie img {
  width: 108%;
  height: 210px;
  object-fit: cover;
  object-position: 55% 48%;
  opacity: 0.78;
  filter: saturate(1.08);
}

.step-play {
  position: absolute;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border: 4px solid #fff;
  border-radius: 50%;
  background: rgba(22, 119, 255, 0.88);
  box-shadow: 0 8px 18px rgba(16, 42, 99, 0.2);
}

.step-play span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
}

.visual-step h3 {
  margin: 4px 0 0;
  color: #102a63;
  font-size: 1.18rem;
  font-weight: 950;
}

.visual-step p {
  color: #46608f;
  font-weight: 800;
}

.motion-feature {
  position: relative;
  display: grid;
  min-height: 520px;
  padding-top: 38px;
  padding-bottom: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(22, 119, 255, 0.16), transparent 30%),
    linear-gradient(180deg, #fff, #e9f4ff);
}

.motion-copy {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 12px;
  width: min(72%, 268px);
}

.motion-copy p {
  position: relative;
  margin: 0;
  padding: 13px 14px;
  color: #102a63;
  border: 3px solid #1677ff;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 0 #b8d8ff;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.35;
}

.motion-copy p::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-top: 3px solid #1677ff;
  border-right: 3px solid #1677ff;
  background: #fff;
  transform: translateY(-50%) rotate(45deg);
}

.motion-copy p:nth-child(2) {
  margin-left: 12px;
}

.motion-copy p:nth-child(3) {
  margin-left: 2px;
}

.motion-phone-wrap {
  position: absolute;
  right: -18px;
  bottom: 20px;
  z-index: 2;
  width: 236px;
  transform: rotate(8deg);
  transform-origin: 60% 80%;
}

.motion-phone {
  width: 100%;
  aspect-ratio: 9 / 18.2;
  padding: 11px;
  border-width: 7px;
  border-radius: 36px;
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.1),
    0 8px 0 #b8d8ff,
    0 20px 44px rgba(16, 42, 99, 0.18);
}

.motion-phone .app-speaker {
  top: 10px;
  width: 50px;
}

.motion-phone .app-screen {
  gap: 8px;
  padding: 22px 9px 10px;
  border-radius: 25px;
}

.motion-phone .app-topbar span {
  font-size: 0.56rem;
}

.motion-phone .app-video-loop {
  border-radius: 20px;
}

.motion-phone .app-video-loop img {
  width: 82%;
  max-height: 230px;
}

.motion-phone .app-play {
  width: 46px;
  height: 46px;
}

.motion-phone .app-caption {
  padding: 9px;
  border-radius: 16px;
}

.motion-phone .app-caption small {
  font-size: 0.62rem;
}

.entry-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 228, 92, 0.42), transparent 24%),
    radial-gradient(circle at 86% 8%, rgba(22, 119, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #f5fbff 0%, #fff 46%, #fff1f7 100%);
  display: grid;
  gap: 24px;
  min-height: 760px;
  align-content: center;
  padding-top: 76px;
  padding-bottom: 78px;
  overflow: hidden;
}

.entry-section::before {
  content: "";
  position: absolute;
  right: -48px;
  top: 42px;
  width: 170px;
  height: 230px;
  border: 3px solid rgba(22, 119, 255, 0.22);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.64);
  transform: rotate(8deg);
}

.entry-section::after {
  content: "";
  position: absolute;
  left: -46px;
  bottom: 58px;
  width: 128px;
  height: 128px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 106, 168, 0.2), rgba(255, 228, 92, 0.35));
  transform: rotate(-12deg);
}

.entry-heading {
  display: grid;
  gap: 12px;
  text-align: center;
}

.section-kicker {
  justify-self: center;
  width: fit-content;
  padding: 7px 12px;
  color: #0557cf;
  border: 2px solid #b8d8ff;
  border-radius: 999px;
  background: #fff;
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.entry-heading h2 {
  color: #102a63;
  font-size: 2rem;
  line-height: 1.28;
}

.entry-heading p:not(.section-kicker) {
  color: #36456e;
  font-size: 0.98rem;
  line-height: 1.85;
  font-weight: 800;
}

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

.entry-showcase {
  display: grid;
  gap: 18px;
}

.entry-visual {
  display: grid;
  place-items: center;
  min-height: 350px;
}

.entry-sheet {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(100%, 272px);
  min-height: 338px;
  padding: 18px 18px 12px;
  border: 3px solid #cae2ff;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 247, 255, 0.92));
  box-shadow: 0 8px 0 #d8eaff, 0 22px 44px rgba(16, 42, 99, 0.14);
  transform: rotate(-2deg);
}

.entry-sheet::before,
.entry-sheet::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: #ff6aa8;
}

.entry-sheet::before {
  right: 24px;
  top: 52px;
  width: 42px;
  height: 10px;
  transform: rotate(9deg);
}

.entry-sheet::after {
  left: 22px;
  bottom: 88px;
  width: 34px;
  height: 8px;
  background: #ffe45c;
  transform: rotate(-10deg);
}

.entry-sheet span {
  justify-self: start;
  color: #0557cf;
  font-size: 0.72rem;
  font-weight: 950;
}

.entry-character-card {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  width: 214px;
  height: 258px;
  border: 3px dashed #b8d8ff;
  border-radius: 34px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 228, 92, 0.5), transparent 26%),
    linear-gradient(180deg, #fff, #f3f9ff);
}

.entry-character-card::before {
  content: "";
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 38%, #fff 0 8px, transparent 9px),
    linear-gradient(135deg, #ff8fbd 0%, #73b8ff 100%);
  box-shadow: 0 10px 18px rgba(22, 119, 255, 0.14);
}

.entry-character-card::after {
  content: "YOUR OC";
  padding: 7px 14px;
  color: #0557cf;
  border: 2px solid #cae2ff;
  border-radius: 999px;
  background: #fff;
  font-size: 0.72rem;
  font-weight: 950;
}

.entry-character-card i,
.entry-character-card b,
.entry-character-card em {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: #d8eaff;
}

.entry-character-card i {
  width: 108px;
}

.entry-character-card b {
  width: 138px;
}

.entry-character-card em {
  width: 92px;
  background: #ffe45c;
}

.entry-sheet-tags {
  display: flex;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

.entry-sheet-tags i {
  padding: 6px 10px;
  color: #102a63;
  border-radius: 999px;
  background: #fff;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 950;
}

.entry-card {
  display: grid;
  gap: 16px;
  padding: 24px 20px;
  border: 3px solid #cae2ff;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 8px 0 #d8eaff, 0 24px 48px rgba(22, 119, 255, 0.12);
}

.entry-card strong {
  color: #0557cf;
  font-size: 1.24rem;
  font-weight: 900;
}

.entry-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.entry-card li {
  position: relative;
  padding: 14px 14px 14px 42px;
  color: #23345f;
  border-radius: 18px;
  background: #f4f9ff;
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 850;
}

.entry-card li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 18px;
  width: 13px;
  height: 13px;
  border: 3px solid #1677ff;
  border-radius: 50%;
  background: #fff;
}

.entry-reward {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 22px 20px 24px;
  overflow: hidden;
  color: #102a63;
  border: 3px solid #f5cf29;
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.9), transparent 26%),
    linear-gradient(135deg, #fff7b8 0%, #ffe45c 54%, #ffd8ed 100%);
  box-shadow: 0 8px 0 #f5cf29, 0 24px 48px rgba(178, 129, 0, 0.16);
  text-align: center;
}

.entry-reward::before {
  content: "";
  position: absolute;
  right: -24px;
  top: -18px;
  width: 96px;
  height: 58px;
  border: 3px solid rgba(16, 42, 99, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.72) 0 34%, transparent 34%),
    rgba(255, 255, 255, 0.44);
  transform: rotate(12deg);
}

.entry-reward span {
  justify-self: center;
  padding: 5px 12px;
  color: #fff;
  border-radius: 999px;
  background: #1677ff;
  font-size: 0.72rem;
  font-weight: 950;
}

.entry-reward strong {
  position: relative;
  z-index: 1;
  font-size: 1.42rem;
  line-height: 1.25;
  font-weight: 950;
}

.entry-reward p {
  position: relative;
  z-index: 1;
  color: #46536f;
  font-size: 0.84rem;
  line-height: 1.55;
  font-weight: 850;
}

.entry-note {
  color: #46536f;
  font-size: 0.86rem;
  line-height: 1.75;
  font-weight: 800;
  text-align: center;
}

.entry-actions {
  gap: 12px;
}

.entry-actions .button.secondary {
  color: #0557cf;
  border-color: #1677ff;
  background: #fff;
  box-shadow: 0 6px 0 #b8d8ff;
}

@media (max-width: 380px) {
  .top-copy-text {
    font-size: clamp(2.8rem, 12.5vw, 3.45rem);
    margin: 28px 0 -100px 14px;
  }

  .main-visual img {
    height: 252px;
  }
}

.maker-hero {
  display: grid;
  gap: 12px;
  background: linear-gradient(180deg, #fff, #fff4fa);
}

.maker-panel {
  display: grid;
  gap: 14px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.file-picker {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px dashed rgba(155, 124, 255, 0.5);
  border-radius: 18px;
  background: #fbf8ff;
  font-weight: 800;
}

.file-picker input {
  width: 100%;
  color: var(--muted);
}

.select-label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

select {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.status-pill,
.message {
  min-height: 28px;
  color: #7b55d8;
  font-weight: 800;
}

.small {
  padding-top: 22px;
}

.float {
  animation: float 3s ease-in-out infinite;
}

.bounce {
  animation: bounce 1.4s ease-in-out infinite;
}

.romance {
  animation: romance 3.2s ease-in-out infinite;
}

.battle {
  animation: battle 1.8s ease-in-out infinite;
}

.idle {
  animation: idle 4s ease-in-out infinite;
}

.official-character {
  border-style: solid;
}

.official-character.girl {
  background: linear-gradient(180deg, #fff2f7, #ffe1ee);
}

.official-preview-stage {
  min-height: 430px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 123, 184, 0.22), transparent 32%),
    radial-gradient(circle at 76% 20%, rgba(101, 183, 255, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,244,250,0.94));
}

.official-character.cool {
  background: linear-gradient(180deg, #eef7ff, #d7e9ff);
}

.official-character.mascot {
  width: 178px;
  height: 178px;
  border-radius: 48% 52% 44% 56%;
  background: linear-gradient(180deg, #f4fff9, #d9f8ef);
}

.record-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

audio {
  width: 100%;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  45% { transform: translateX(-50%) translateY(-20px) scale(1.03); }
}

@keyframes romance {
  0%, 100% { transform: translateX(-50%) translateY(0) rotate(-1deg); }
  50% { transform: translateX(-50%) translateY(-10px) rotate(1deg); }
}

@keyframes battle {
  0% { transform: translateX(-50%) translateY(26px) scale(0.92); opacity: 0.7; }
  45%, 100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 1; }
}

@keyframes idle {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes floatBadge {
  0%, 100% { transform: rotate(5deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-8px); }
}

@keyframes registerPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 0 #b51b6b, 0 18px 34px rgba(255, 79, 163, 0.32);
  }
  50% {
    transform: translateY(-3px) scale(1.035);
    box-shadow: 0 11px 0 #b51b6b, 0 26px 42px rgba(255, 79, 163, 0.42);
  }
}

@keyframes sparkleBlink {
  0%, 100% {
    opacity: 0.35;
    transform: scale(0.72) rotate(0deg);
  }
  45% {
    opacity: 1;
    transform: scale(1.2) rotate(18deg);
  }
}

@keyframes worryFloatIn {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.94);
    filter: blur(3px);
  }
  70% {
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes aboutMessageSlide {
  0% {
    opacity: 0;
    transform: translateX(-115%) rotate(-2deg);
  }
  72% {
    opacity: 1;
    transform: translateX(3%) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(-2deg);
  }
}

@keyframes markerSwipe {
  0% {
    opacity: 0;
    transform: translateX(-62%) scaleX(0) rotate(-2deg);
    transform-origin: left center;
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1) rotate(-2deg);
    transform-origin: left center;
  }
}

@keyframes popInCopy {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes sectionPopUp {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.94);
    filter: blur(3px);
  }
  72% {
    opacity: 1;
    transform: translateY(-3px) scale(1.015);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes cutInBar {
  0% { transform: translateX(-105%); }
  72% { transform: translateX(3%); }
  100% { transform: translateX(0); }
}

@keyframes cutInText {
  0% {
    opacity: 0;
    transform: translateX(-105%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes mockFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes wavePulse {
  0%, 100% { transform: scaleY(0.62); opacity: 0.62; }
  50% { transform: scaleY(1); opacity: 1; }
}

@keyframes brandCopyFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  45% { transform: translateY(-12px) rotate(1deg); }
  70% { transform: translateY(-4px) rotate(-2deg); }
}

@keyframes brandLogoPop {
  0%, 100% { transform: translate(0, 0) rotate(0); box-shadow: 8px 8px 0 #102a63; }
  48% { transform: translate(4px, -5px) rotate(-2deg); box-shadow: 4px 12px 0 #102a63; }
}

@keyframes brandShapeDance {
  0%, 100% { border-radius: 14px; }
  33% { border-radius: 50%; }
  66% { border-radius: 4px 18px 4px 18px; }
}

@media (min-width: 760px) {
  body {
    display: grid;
    place-items: start center;
    padding: 42px 0;
  }

  body::before {
    opacity: 0.2;
  }

  body::after {
    opacity: 0.18;
  }

  .phone-shell {
    position: relative;
    z-index: 1;
    min-height: auto;
    border: 10px solid rgba(255, 255, 255, 0.88);
    border-radius: 36px;
  }

  .desktop-section-nav {
    position: fixed;
    top: 50%;
    left: calc(50% + 250px);
    z-index: 4;
    display: grid;
    width: min(24vw, 270px);
    gap: 0;
    color: #fff;
    transform: translateY(-50%);
  }

  .desktop-section-nav p {
    margin: 0 0 18px;
    color: #102a63;
    font-size: 0.82rem;
    font-weight: 950;
    letter-spacing: 0.08em;
  }

  .desktop-section-nav a {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    min-height: 58px;
    padding: 10px 4px;
    color: #102a63;
    border-bottom: 3px solid #1677ff;
    font-family: "Arial Black", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    font-size: clamp(0.8rem, 1.2vw, 1rem);
    font-weight: 950;
    line-height: 1.25;
    text-decoration: none;
  }

  .desktop-section-nav a::after {
    content: "+";
    justify-self: end;
    padding-right: 4px;
    color: #1677ff;
    font-size: 1.8rem;
    line-height: 1;
  }

  .desktop-section-nav span {
    display: inline-grid;
    min-width: 44px;
    min-height: 24px;
    place-items: center;
    color: #102a63;
    border-radius: 999px;
    background: #ffe45c;
    font-size: 0.78rem;
    line-height: 1;
  }

  .desktop-brand-copy {
    position: fixed;
    top: 50%;
    right: calc(50% + 255px);
    z-index: 4;
    display: grid;
    gap: 22px;
    width: min(28vw, 330px);
    color: #102a63;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .desktop-brand-copy::before,
  .desktop-brand-copy::after {
    content: "";
    position: absolute;
    z-index: -1;
    display: block;
    border: 5px solid #1677ff;
    background: #ffe45c;
    animation: brandShapeDance 4.8s steps(1, end) infinite;
  }

  .desktop-brand-copy::before {
    right: 16px;
    top: -34px;
    width: 54px;
    height: 54px;
    transform: rotate(12deg);
  }

  .desktop-brand-copy::after {
    left: -18px;
    bottom: -28px;
    width: 72px;
    height: 24px;
    background: #ff4fa3;
    transform: rotate(-8deg);
  }

  .desktop-brand-copy p {
    margin: 0;
    font-family: "Arial Black", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    font-size: clamp(2.4rem, 4.6vw, 4.9rem);
    font-weight: 950;
    line-height: 1.02;
    letter-spacing: 0;
    text-shadow: 5px 5px 0 #ffe45c;
    animation: brandCopyFloat 3.8s ease-in-out infinite;
  }

  .desktop-brand-logo {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 10px;
    min-height: 54px;
    padding: 10px 18px;
    color: #fff;
    border: 4px solid #102a63;
    border-radius: 999px;
    background: #1677ff;
    box-shadow: 8px 8px 0 #102a63;
    font-family: "Arial Black", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
    font-size: clamp(1.05rem, 1.4vw, 1.45rem);
    font-weight: 950;
    letter-spacing: 0;
    animation: brandLogoPop 2.8s ease-in-out infinite;
  }

  .desktop-brand-logo span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: #102a63;
    border-radius: 50%;
    background: #ffe45c;
  }
}

@media (max-width: 1039px) {
  .desktop-section-nav,
  .desktop-brand-copy {
    display: none;
  }
}

/* Coeshi pop-blue LP theme */
.sketch-lp {
  --pop-blue: #1677ff;
  --pop-blue-dark: #0557cf;
  --pop-blue-soft: #e9f4ff;
  --pop-yellow: #ffe45c;
  --pop-pink: #ff6aa8;
  --pop-ink: #102a63;
  background: #ffffff;
}

.sketch-lp .button.primary,
.sketch-lp .button.secondary {
  color: #fff;
  background: var(--pop-blue);
  border: 3px solid var(--pop-blue-dark);
  box-shadow: 0 6px 0 var(--pop-blue-dark);
}

.sketch-lp .button.ghost {
  color: var(--pop-blue-dark);
  background: #fff;
  border: 3px solid var(--pop-blue);
  box-shadow: 0 6px 0 #b8d8ff;
}

.sketch-lp .button {
  border-radius: 999px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.sketch-lp .button:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 var(--pop-blue-dark);
}

.sketch-hero {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(232,245,255,0.96)),
    radial-gradient(circle at 12% 16%, rgba(255, 228, 92, 0.45), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(22, 119, 255, 0.16), transparent 28%);
}

.sketch-hero-copy h1,
.sketch-section h2,
.use-steps h3,
.entry-card p {
  color: var(--pop-ink);
}

.sketch-hero-copy h1 {
  font-weight: 950;
}

.sketch-hero-copy .top-copy-text {
  color: #000;
}

.sketch-hero-copy .eyebrow,
.sketch-section .eyebrow,
.section-label {
  display: inline-grid;
  justify-self: center;
  min-height: 28px;
  place-items: center;
  padding: 4px 13px;
  color: var(--pop-blue-dark);
  border: 2px solid var(--pop-blue);
  border-radius: 999px;
  background: var(--pop-yellow);
  font-size: 0.78rem;
  font-weight: 950;
  margin: 0;
}

.logo-brand {
  color: var(--pop-ink);
}

.logo-brand span {
  color: var(--pop-blue);
  border-color: var(--pop-blue);
  background: #fff;
}

.nav-pills a,
.bottom-nav a {
  color: var(--pop-blue-dark);
  border: 2px solid #cae2ff;
  background: #fff;
}

.main-visual {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.use-steps article,
.entry-card,
.faq-section details,
.point-row span {
  border: 3px solid #cae2ff;
  box-shadow: 0 6px 0 #d8eaff;
}

.entry-card strong {
  color: var(--pop-blue);
}

.mini-phone {
  border: 10px solid #fff;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 228, 92, 0.45), transparent 28%),
    radial-gradient(circle at 80% 22%, rgba(22, 119, 255, 0.2), transparent 30%),
    linear-gradient(180deg, #fff, #e9f4ff);
  box-shadow: 0 8px 0 #b8d8ff, 0 22px 46px rgba(22, 119, 255, 0.16);
}

.mini-wave span {
  background: var(--pop-blue);
}

.point-row span {
  color: var(--pop-blue-dark);
  background: #fff;
}

.use-steps strong {
  background: var(--pop-blue);
  box-shadow: inset 0 -4px 0 var(--pop-blue-dark);
}

.entry-section {
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 228, 92, 0.42), transparent 24%),
    radial-gradient(circle at 86% 8%, rgba(22, 119, 255, 0.16), transparent 28%),
    linear-gradient(180deg, #f5fbff 0%, #fff 46%, #fff1f7 100%);
  min-height: 760px;
  padding-top: 76px;
  padding-bottom: 78px;
}

.entry-card {
  border-color: #cae2ff;
  background: #fff;
  box-shadow: 0 8px 0 #d8eaff, 0 24px 48px rgba(22, 119, 255, 0.12);
}

.entry-card strong {
  color: var(--pop-blue);
}

.entry-actions .button.secondary {
  color: var(--pop-blue-dark);
  border-color: var(--pop-blue);
  background: #fff;
  box-shadow: 0 6px 0 #b8d8ff;
}

.faq-section summary {
  color: var(--pop-ink);
}

.sketch-lp .section h2 {
  color: var(--pop-ink);
  font-family: "Arial Black", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 1.65rem;
  font-weight: 950;
  line-height: 1.36;
  letter-spacing: 0;
  text-align: center;
}

.points-section > h2 {
  min-height: 132px;
  padding: 34px 22px 30px;
  background: #fff;
}

.reveal-ready .reveal-item {
  opacity: 0;
  transform: translateX(-34px);
  transition:
    opacity 680ms ease,
    transform 760ms cubic-bezier(.18, .88, .22, 1.08),
    filter 680ms ease;
  filter: blur(3px);
  will-change: opacity, transform, filter;
}

.reveal-ready .reveal-item.reveal-from-right {
  transform: translateX(34px);
}

.reveal-ready .reveal-item.is-visible {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .contest-float,
  .compact-buttons .hero-register-button,
  .hero-register-button::before,
  .hero-register-button::after,
  .empathy-section .worry-bubble {
    animation: none;
  }

  .empathy-section .worry-bubble,
  .reveal-ready .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
    filter: none;
  }
}

/* Flat color pass: keep the LP crisp and avoid soft gradients. */
body {
  background: #f3f7ff;
}

.sketch-lp,
.phone-shell,
.sketch-hero,
.home-hero,
.hero,
.lp-shell,
.lp-hero,
.about-service,
.empathy-section,
.points-section,
.entry-section,
.faq-section,
.lp-footer {
  background: #fff !important;
}

.sketch-hero {
  background: #f2f8ff !important;
}

.about-service {
  background: #fff7c8 !important;
}

.empathy-section {
  background: #fff4fa !important;
}

.points-section > h2,
.point-list {
  background: #fff !important;
}

.point-card:nth-child(1),
.point-voice {
  background: #e9f4ff !important;
}

.point-card:nth-child(2),
.point-template {
  background: #ffe6f3 !important;
}

.point-card:nth-child(3),
.point-simple {
  background: #dcf8ec !important;
}

.point-visual,
.point-card:nth-child(2) .point-visual,
.point-card:nth-child(3) .point-visual,
.point-phone,
.point-phone-stage,
.mini-phone,
.app-screen,
.stage-card,
.preview-stage,
.audience-visual,
.concept-image-section,
.target-section,
.mockup-section,
.sample-project,
.entry-card,
.reward-card,
.quick-answer,
.lp-section,
.soft,
.cta,
.lp-cta {
  background: #fff !important;
}

.button.primary,
.button.secondary,
.sketch-lp .button.primary,
.sketch-lp .button.secondary,
.app-play,
.tab-button.active,
.use-steps strong,
.point-card > span,
.fake-slider span {
  background: #1677ff !important;
}

.point-card:nth-child(2) > span {
  background: #ff4fa3 !important;
}

.point-card:nth-child(3) > span {
  background: #00a35b !important;
}

.contest-float {
  background: #fff7c8 !important;
}

.empathy-scene::after {
  background: #fff4fa !important;
}

/* Smartphone mockup size tuning */
.point-visual {
  min-height: 462px;
}

.mock-iframe-shell {
  width: 211px;
  height: 442px;
}

.mock-iframe-shell iframe {
  transform: scale(0.54);
}

.point-phone {
  width: min(72%, 226px);
}

.app-phone {
  width: min(90%, 322px);
}

.mini-phone {
  width: min(100%, 292px);
  min-height: 354px;
}

.motion-phone-wrap {
  width: 254px;
}

/* Empathy image fade and section copy alignment */
.empathy-scene {
  overflow: visible;
}

.empathy-scene::after {
  background: linear-gradient(180deg, rgba(255, 244, 250, 0), rgba(255, 244, 250, 0.82) 64%, #fff4fa 100%) !important;
}

.empathy-visual {
  overflow: visible;
}

.empathy-visual img {
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 68%, rgba(0, 0, 0, 0.58) 84%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 68%, rgba(0, 0, 0, 0.58) 84%, transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.about-step p,
.empathy-caption,
.point-copy p,
.points-closing,
.entry-heading > p,
.entry-reward p,
.entry-note,
.faq-section details p,
.lp-footer p {
  text-align: center !important;
}

.about-lead,
.about-step p,
.point-copy,
.points-closing,
.entry-heading > p:not(.section-kicker),
.entry-reward p,
.entry-note,
.faq-section details p,
.lp-footer p {
  width: min(100%, 22em);
  margin-inline: auto;
}

.about-step p,
.point-copy p,
.entry-heading > p:not(.section-kicker),
.entry-note,
.faq-section details p,
.lp-footer p {
  text-wrap: balance;
}

.empathy-caption {
  left: 50%;
  right: auto;
  width: min(82%, 22em);
  transform: translateX(-50%);
}

.contest-float span {
  padding-inline: 5px;
  font-size: 0.56rem;
}

.contest-float strong {
  font-size: 0.82rem;
}

/* Contest section gold visual */
.entry-section {
  gap: 18px;
  min-height: 860px;
  padding-top: 54px;
  padding-bottom: 76px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.74), transparent 24%),
    linear-gradient(180deg, #ffe45c 0%, #ffb31a 58%, #ff8f1f 100%) !important;
  border-top: 10px solid #102a63;
}

.entry-section::before {
  right: -74px;
  top: 112px;
  width: 188px;
  height: 188px;
  border: 0;
  border-radius: 50%;
  background: #fff7c8;
  opacity: 0.55;
}

.entry-section::after {
  left: -58px;
  bottom: 120px;
  width: 148px;
  height: 148px;
  border-radius: 38px;
  background: #ff4fa3;
  opacity: 0.22;
}

.entry-title-art {
  justify-self: center;
  width: min(94%, 330px);
  margin: 0 auto 4px;
  transform: rotate(-2deg);
  filter: drop-shadow(0 12px 0 rgba(16, 42, 99, 0.16));
}

.entry-title-art img {
  display: block;
  width: 100%;
  height: auto;
}

.entry-heading {
  width: min(100%, 360px);
  margin-inline: auto;
  padding: 0 6px;
}

.entry-heading h2,
.entry-heading p:not(.section-kicker) {
  color: #102a63;
}

.entry-heading p:not(.section-kicker) {
  width: min(100%, 21em);
}

.entry-showcase {
  gap: 16px;
}

.entry-visual {
  min-height: 430px;
  overflow: visible;
}

.entry-contest-stage {
  position: relative;
  width: min(100%, 390px);
  min-height: 456px;
  margin: 0 auto 4px;
}

.entry-template-phone {
  position: absolute;
  left: 12px;
  top: 76px;
  z-index: 2;
  display: grid;
  grid-template-rows: auto auto auto auto auto;
  width: 198px;
  min-height: 344px;
  padding: 18px 12px 14px;
  border: 5px solid #102a63;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 8px 0 #b56a00, 0 22px 34px rgba(119, 72, 0, 0.24);
  transform: rotate(-8deg);
}

.entry-template-phone::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 48px;
  height: 6px;
  border-radius: 999px;
  background: #102a63;
  transform: translateX(-50%);
}

.template-phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  color: #102a63;
  font-size: 0.68rem;
  font-weight: 950;
}

.template-phone-top b {
  padding: 3px 6px;
  color: #fff;
  border-radius: 999px;
  background: #ff4fa3;
  font-size: 0.52rem;
}

.template-phone-screen {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 170px;
  margin: 10px 0 8px;
  overflow: hidden;
  border: 3px solid #cae2ff;
  border-radius: 22px;
  background: #e9f4ff;
}

.template-phone-silhouette,
.entry-main-silhouette {
  background: linear-gradient(155deg, #102a63 0%, #1677ff 46%, #73b8ff 100%);
  -webkit-mask-image: url("../images/contest-template-silhouette.png");
  mask-image: url("../images/contest-template-silhouette.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.template-phone-silhouette {
  width: 142px;
  height: 166px;
  opacity: 0.96;
}

.template-phone-screen strong {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 1;
  padding: 4px 7px;
  color: #fff;
  border-radius: 999px;
  background: #1677ff;
  font-size: 0.48rem;
  font-weight: 950;
}

.template-phone-screen p {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  padding: 6px 7px;
  color: #102a63;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  font-size: 0.54rem;
  font-weight: 950;
  text-align: center;
}

.official-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: 0 0 7px;
}

.official-stats span {
  display: grid;
  place-items: center;
  min-height: 38px;
  padding: 5px 4px;
  color: #102a63;
  border: 2px solid #cae2ff;
  border-radius: 12px;
  background: #fff;
  font-size: 0.46rem;
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
}

.official-stats strong {
  color: #1677ff;
  font-size: 0.72rem;
  line-height: 1;
}

.official-actions {
  display: grid;
  gap: 5px;
  margin: 0 0 8px;
}

.official-actions span {
  display: block;
  padding: 6px 9px;
  color: #102a63;
  border-radius: 999px;
  background: #fff7c8;
  font-size: 0.56rem;
  font-weight: 950;
  text-align: left;
}

.official-actions span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: #ff4fa3;
}

.template-phone-actions {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.template-phone-actions i {
  padding: 5px 7px;
  color: #0557cf;
  border-radius: 999px;
  background: #e9f4ff;
  font-size: 0.54rem;
  font-style: normal;
  font-weight: 950;
}

.official-nav i:first-child {
  color: #fff;
  background: #1677ff;
}

.entry-main-silhouette {
  position: absolute;
  right: -44px;
  top: -18px;
  z-index: 1;
  width: 306px;
  height: 480px;
  filter: drop-shadow(0 24px 24px rgba(16, 42, 99, 0.22));
  transform: rotate(8deg);
}

.entry-card {
  border-color: #102a63;
  box-shadow: 0 8px 0 #102a63, 0 24px 44px rgba(119, 72, 0, 0.18);
}

.entry-card li {
  background: #fff7c8;
}

.entry-reward {
  border-color: #f5cf29;
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.9), transparent 26%),
    linear-gradient(135deg, #fff7b8 0%, #ffe45c 54%, #ffd8ed 100%) !important;
  box-shadow: 0 8px 0 #f5cf29, 0 24px 48px rgba(178, 129, 0, 0.16);
}

.entry-note {
  color: #102a63;
}

/* Contest cleanup and empathy adjustments */
.entry-section {
  border-top: 0 !important;
}

.empathy-section .worry-left {
  top: -24px;
}

.empathy-section .worry-right {
  top: 38px;
}

.empathy-caption {
  width: min(82%, 22em) !important;
  text-align: center !important;
}

.template-phone-top {
  justify-content: center;
  font-size: 0.78rem;
}

.template-phone-screen {
  align-content: start;
  place-items: start center;
  min-height: 184px;
}

.template-phone-screen strong {
  position: relative;
  top: auto;
  left: auto;
  justify-self: center;
  margin: 9px 0 2px;
  z-index: 2;
}

.template-phone-silhouette {
  width: 138px;
  height: 128px;
  margin-top: 0;
}

.template-phone-screen p {
  bottom: 7px;
  font-size: 0.5rem;
  line-height: 1.3;
}

.official-stats-single {
  grid-template-columns: 1fr;
}

.official-stats-single span {
  min-height: 42px;
  grid-template-columns: auto auto;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
}

.official-stats-single strong {
  padding: 4px 9px;
  color: #fff;
  border-radius: 999px;
  background: #1677ff;
  font-size: 0.66rem;
}

.template-phone-actions,
.official-nav {
  display: none;
}

/* Caption width and official mock label tuning */
.empathy-caption {
  left: 50% !important;
  right: auto !important;
  width: min(calc(100% - 44px), 21em) !important;
  max-width: 21em !important;
  margin: 0 auto !important;
  transform: translateX(-50%) !important;
  text-align: center !important;
  text-wrap: balance;
}

.template-phone-screen {
  min-height: 190px;
  padding-top: 0;
}

.template-phone-screen strong {
  position: absolute;
  top: 8px;
  right: 8px;
  left: auto;
  margin: 0;
  padding: 3px 6px;
  font-size: 0.38rem;
  line-height: 1;
}

.template-phone-silhouette {
  width: 140px;
  height: 132px;
  margin-top: 22px;
}

.template-phone-top {
  justify-content: flex-start !important;
}

/* Final navigation, footer, hero logo, and silhouette fixes */
.hero-title-logo {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 58px;
  margin: 26px 0 10px 16px !important;
  padding: 10px 18px;
  color: #fff !important;
  border: 4px solid #102a63;
  border-radius: 999px;
  background: #1677ff;
  box-shadow: 8px 8px 0 #102a63;
  font-family: "Arial Black", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: clamp(1.18rem, 7vw, 1.76rem) !important;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: none !important;
  opacity: 1 !important;
  transform: none !important;
  animation: brandLogoPop 2.8s ease-in-out infinite;
}

.hero-title-logo span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #102a63;
  border-radius: 50%;
  background: #ffe45c;
  font-size: 1rem;
}

.contest-float {
  grid-template-rows: auto auto auto;
  min-height: 136px;
  padding-top: 8px;
}

.contest-float > img {
  display: none;
}

.contest-silhouette-crop {
  display: block;
  width: 66px;
  height: 54px;
  margin-top: -8px;
  overflow: hidden;
  border: 3px solid #102a63;
  border-radius: 18px;
  background: #e9f4ff;
  box-shadow: 0 5px 0 #b8d8ff;
}

.contest-silhouette-crop img {
  display: block;
  width: 84px;
  height: 112px;
  max-width: none;
  object-fit: contain;
  object-position: center top;
  filter: invert(28%) sepia(91%) saturate(2323%) hue-rotate(209deg) brightness(99%) contrast(101%);
  transform: translate(-9px, -4px) rotate(3deg);
}

.template-phone-silhouette,
.entry-main-silhouette {
  display: block;
  background: transparent !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  object-fit: contain;
  object-position: center bottom;
  filter:
    invert(30%) sepia(87%) saturate(2381%) hue-rotate(207deg) brightness(101%) contrast(101%)
    drop-shadow(0 24px 24px rgba(16, 42, 99, 0.22));
}

.template-phone-silhouette {
  width: 140px !important;
  height: 132px !important;
  margin-top: 22px !important;
}

.entry-main-silhouette {
  right: -44px !important;
  top: -18px !important;
  width: 306px !important;
  height: 480px !important;
  opacity: 0.96;
}

.back-to-top {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 26px auto 38px;
  color: #fff;
  border: 4px solid #102a63;
  border-radius: 50%;
  background: #1677ff;
  box-shadow: 0 8px 0 #102a63;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
}

.bottom-nav,
.lp-footer {
  display: none !important;
}

@media (min-width: 1040px) {
  .desktop-section-nav a {
    grid-template-columns: auto minmax(0, 1fr) !important;
  }

  .desktop-section-nav a::after {
    content: none !important;
  }
}

/* Hero copy and contest badge update */
.sketch-hero {
  overflow: visible !important;
  padding-top: 26px !important;
}

.sketch-hero-copy {
  overflow: visible !important;
}

.hero-title-logo {
  display: grid !important;
  gap: 10px;
  align-items: start;
  justify-items: start;
  min-height: 0;
  margin: 22px 0 -18px 14px !important;
  padding: 0;
  color: #102a63 !important;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none !important;
  animation: brandCopyFloat 3.8s ease-in-out infinite;
}

.hero-brand-copy {
  display: block !important;
  color: #102a63 !important;
  font-family: "Arial Black", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: clamp(2.25rem, 12vw, 3.6rem) !important;
  font-weight: 950;
  line-height: 1.02;
  text-shadow: 5px 5px 0 #ffe45c;
}

.hero-logo-pill {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 8px 16px;
  color: #fff !important;
  border: 4px solid #102a63;
  border-radius: 999px;
  background: #1677ff;
  box-shadow: 7px 7px 0 #102a63;
  font-size: clamp(0.98rem, 5vw, 1.28rem) !important;
  line-height: 1;
  animation: brandLogoPop 2.8s ease-in-out infinite;
}

.hero-logo-pill span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #102a63;
  border-radius: 50%;
  background: #ffe45c;
  font-size: 0.86rem;
}

.contest-float {
  width: 132px;
  min-height: 132px;
  padding: 8px 8px 10px;
  gap: 5px;
  color: #102a63;
}

.contest-badge-art {
  display: block !important;
  width: 110px !important;
  height: auto !important;
  margin: -10px auto -4px !important;
  object-fit: contain;
  filter: drop-shadow(0 5px 0 rgba(16, 42, 99, 0.12)) !important;
}

.contest-badge-copy {
  display: grid !important;
  width: 100%;
  min-height: 34px;
  place-items: center;
  padding: 5px 7px !important;
  color: #102a63 !important;
  border: 3px solid #1677ff;
  border-radius: 999px !important;
  background: #fff !important;
  font-size: 0.58rem !important;
  font-weight: 950;
  line-height: 1.12 !important;
}

.contest-silhouette-crop,
.contest-float strong {
  display: none !important;
}

/* Final spacing, footer, and badge refinements */
.sketch-hero-copy,
.hero-title-logo {
  position: relative !important;
  z-index: 14 !important;
}

.main-visual {
  position: relative;
  z-index: 1;
}

.hero-subcopy,
.compact-buttons {
  z-index: 15;
}

.contest-float {
  right: 6px;
  top: 384px;
  width: 138px;
  min-height: 124px;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible;
}

.contest-float::before {
  content: "開催中!";
  position: absolute;
  left: -4px;
  top: -13px;
  z-index: 2;
  padding: 5px 9px;
  color: #fff;
  border: 3px solid #102a63;
  border-radius: 999px;
  background: #ff4fa3;
  box-shadow: 0 4px 0 #102a63;
  font-size: 0.62rem;
  font-weight: 950;
  line-height: 1;
  transform: rotate(-8deg);
}

.contest-badge-art {
  width: 132px !important;
  margin: 0 auto -6px !important;
}

.contest-badge-copy {
  width: 120px;
  min-height: 42px;
  margin: 0 auto;
  color: #fff !important;
  border: 3px solid #102a63;
  background: #1677ff !important;
  box-shadow: 0 5px 0 #102a63;
  font-size: 0.64rem !important;
}

.empathy-caption {
  font-size: 1.14rem !important;
  line-height: 1.58 !important;
}

.points-closing {
  display: grid;
  width: 100% !important;
  min-height: 156px;
  place-items: center;
  margin: 0 !important;
  padding: 38px 22px 42px !important;
  background: #dcf8ec !important;
  box-shadow: inset 0 -8px 0 rgba(0, 163, 91, 0.12);
}

.entry-section {
  gap: 10px !important;
  padding-top: 38px !important;
}

.entry-title-art {
  width: min(88%, 310px);
  margin-bottom: -4px !important;
}

.entry-heading {
  gap: 7px !important;
}

.entry-heading h2 {
  margin: 0;
}

.entry-heading p:not(.section-kicker) {
  margin: 0 auto;
  line-height: 1.58;
}

.entry-showcase {
  gap: 8px !important;
}

.entry-visual {
  min-height: 396px !important;
}

.entry-contest-stage {
  margin-top: -10px !important;
}

.legal-footer {
  display: grid;
  gap: 12px;
  padding: 30px 22px 20px;
  color: #102a63;
  background: #f2f8ff;
  text-align: center;
}

.legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 14px;
}

.legal-footer a {
  color: #0557cf;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.legal-footer p {
  margin: 0;
  color: #526781;
  font-size: 0.72rem;
  font-weight: 800;
}

/* Points background continuity and FAQ polish */
.hero-title-logo {
  display: flex !important;
  align-items: center;
  gap: 14px;
  margin-top: 18px !important;
  margin-bottom: -8px !important;
}

.hero-brand-copy {
  font-size: clamp(1.42rem, 7.2vw, 2.1rem) !important;
  line-height: 1.04;
}

.hero-logo-pill {
  flex: 0 0 auto;
}

.contest-badge-copy {
  border: 0 !important;
  box-shadow: none !important;
}

.contest-float::before {
  border: 0 !important;
  box-shadow: none !important;
}

.empathy-caption {
  font-size: 1.28rem !important;
  line-height: 1.5 !important;
}

.points-section h2 {
  background: #e9f4ff !important;
}

.point-card:nth-child(1),
.point-voice {
  background: #e9f4ff !important;
}

.point-card:nth-child(3),
.point-simple,
.points-closing {
  background: #dcf8ec !important;
}

.points-closing {
  box-shadow: none !important;
}

.entry-title-art {
  margin-top: -6px !important;
  margin-bottom: -10px !important;
}

.entry-heading {
  gap: 4px !important;
}

.entry-visual {
  min-height: 372px !important;
}

.entry-contest-stage {
  margin-top: -28px !important;
}

/* Stronger flat color pass */
.sketch-hero {
  background: #b8dcff !important;
}

.about-service {
  background: #ffe45c !important;
}

.empathy-section {
  background: #ff9ac8 !important;
}

.empathy-scene::after {
  background: linear-gradient(180deg, rgba(255, 154, 200, 0), rgba(255, 154, 200, 0.9) 64%, #ff9ac8 100%) !important;
}

.points-section,
.points-section h2,
.point-card:nth-child(1),
.point-voice {
  background: #8fc8ff !important;
}

.point-card:nth-child(2),
.point-template {
  background: #ff8fc6 !important;
}

.point-card:nth-child(3),
.point-simple,
.points-closing {
  background: #67e2a6 !important;
}

.entry-section {
  background: #ffbf24 !important;
}

.faq-section {
  background: #ffffff !important;
}

.legal-footer {
  background: #102a63 !important;
}

.legal-footer a,
.legal-footer p {
  color: #fff !important;
}

.point-visual,
.point-card:nth-child(2) .point-visual,
.point-card:nth-child(3) .point-visual,
.entry-card,
.entry-reward,
.faq-section details {
  background: #fff !important;
}

/* Blue / pink alternation fix */
.sketch-hero {
  background: #8fc8ff !important;
}

.about-service {
  background: #ff8fc6 !important;
}

.empathy-section {
  background: #8fc8ff !important;
}

.empathy-scene::after {
  background: linear-gradient(180deg, rgba(143, 200, 255, 0), rgba(143, 200, 255, 0.9) 64%, #8fc8ff 100%) !important;
}

.points-section,
.points-section h2,
.point-card:nth-child(1),
.point-voice {
  background: #ff8fc6 !important;
}

.point-card:nth-child(2),
.point-template {
  background: #8fc8ff !important;
}

.point-card:nth-child(3),
.point-simple,
.points-closing {
  background: #ff8fc6 !important;
}

.entry-section {
  background: #8fc8ff !important;
}

.faq-section {
  background: #ff8fc6 !important;
}

.hero-title-logo {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: calc(100% - 20px);
}

.hero-brand-copy {
  white-space: nowrap;
  font-size: clamp(1.02rem, 5.3vw, 1.62rem) !important;
  line-height: 1;
}

.hero-logo-pill {
  min-height: 42px;
  padding: 7px 12px;
  font-size: clamp(0.8rem, 4.2vw, 1.08rem) !important;
}

.points-closing {
  transform: none !important;
  animation: none !important;
  text-shadow: 0 4px 0 rgba(255,255,255,0.5);
}

.entry-reward {
  border-color: #f5cf29 !important;
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 255, 255, 0.9), transparent 26%),
    linear-gradient(135deg, #fff7b8 0%, #ffe45c 54%, #ffd8ed 100%) !important;
  box-shadow: 0 8px 0 #f5cf29, 0 24px 48px rgba(178, 129, 0, 0.16) !important;
}

/* Blue / yellow alternation and title redesign */
html {
  scroll-behavior: smooth;
}

.sketch-hero,
.empathy-section,
.point-card:nth-child(1),
.point-voice,
.point-card:nth-child(3),
.point-simple,
.points-closing,
.faq-section {
  background: #8fc8ff !important;
}

.about-service,
.points-section,
.points-section h2,
.point-card:nth-child(2),
.point-template {
  background: #ffe45c !important;
}

.entry-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.74), transparent 24%),
    linear-gradient(180deg, #ffe45c 0%, #ffb31a 58%, #ff8f1f 100%) !important;
}

.empathy-scene::after {
  background: linear-gradient(180deg, rgba(143, 200, 255, 0), rgba(143, 200, 255, 0.9) 64%, #8fc8ff 100%) !important;
}

.hero-title-logo {
  display: grid !important;
  width: fit-content;
  max-width: 100%;
  margin: 26px 0 -54px 16px !important;
  gap: 0;
}

.hero-brand-copy {
  white-space: normal;
  color: #102a63 !important;
  font-size: clamp(2.45rem, 12.5vw, 3.7rem) !important;
  line-height: 1.02;
  text-shadow: 5px 5px 0 #ffe45c;
}

.hero-logo-pill {
  display: none !important;
}

.hero-subcopy {
  font-size: 1.18rem !important;
  line-height: 1.56 !important;
}

.contest-float {
  top: 404px !important;
}

.empathy-section .worry-left p {
  top: 39% !important;
}

.sketch-section > h2,
.about-service > h2,
.points-section > h2,
.faq-section > h2,
.empathy-heading h2,
.entry-heading h2 {
  justify-self: center;
  width: fit-content;
  max-width: 100%;
  padding: 8px 16px;
  color: #fff !important;
  border: 4px solid #102a63;
  border-radius: 999px;
  background: #1677ff !important;
  box-shadow: 7px 7px 0 #102a63;
  font-family: "Arial Black", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: clamp(1.7rem, 8.6vw, 2.45rem) !important;
  line-height: 1.08 !important;
  text-align: center;
  text-shadow: none !important;
}

.points-section > h2 {
  min-height: auto !important;
  margin: 0 auto;
  padding: 10px 16px !important;
}

/* Text-logo style headings */
.hero-title-logo {
  display: block !important;
  width: max-content;
  max-width: calc(100% - 28px);
  margin: 30px 0 -44px 16px !important;
}

.hero-brand-copy {
  display: block !important;
  white-space: nowrap !important;
  writing-mode: horizontal-tb !important;
  color: #102a63 !important;
  font-family: "Arial Black", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: clamp(1.82rem, 8.8vw, 2.85rem) !important;
  font-weight: 950;
  line-height: 1 !important;
  letter-spacing: 0;
  text-shadow: 5px 5px 0 #ffe45c;
}

.sketch-section > h2,
.about-service > h2,
.points-section > h2,
.faq-section > h2,
.empathy-heading h2,
.entry-heading h2 {
  display: block !important;
  justify-self: center;
  width: min(100%, 9.6em);
  max-width: 100%;
  min-height: 0 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  color: #102a63 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-family: "Arial Black", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: clamp(2.05rem, 10vw, 3.2rem) !important;
  font-weight: 950;
  line-height: 1.08 !important;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 5px 5px 0 #ffe45c !important;
}

/* Point title bars and section title sizing */
.hero-title-logo {
  display: grid !important;
  width: fit-content;
  max-width: 100%;
  margin: 28px 0 -54px 16px !important;
}

.hero-brand-copy {
  white-space: normal !important;
  font-size: clamp(2.35rem, 12vw, 3.55rem) !important;
  line-height: 1.02 !important;
}

.sketch-section > h2,
.about-service > h2,
.points-section > h2,
.faq-section > h2,
.empathy-heading h2,
.entry-heading h2 {
  width: auto;
  max-width: 100%;
  font-size: clamp(1.42rem, 7vw, 2.05rem) !important;
  line-height: 1.2 !important;
}

.points-section,
.points-section h2,
.point-card,
.point-card:nth-child(1),
.point-card:nth-child(2),
.point-card:nth-child(3),
.point-voice,
.point-template,
.point-simple,
.points-closing {
  background: #8fc8ff !important;
}

.entry-section {
  background: #ff8fc6 !important;
}

.point-card > span {
  display: none !important;
}

.point-title-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 14px;
  color: #fff;
  border-radius: 0;
  background: #1677ff;
  box-shadow: 0 6px 0 #0557cf;
}

.point-title-bar span {
  display: inline-grid;
  min-height: 30px;
  place-items: center;
  padding: 4px 10px;
  color: #102a63;
  border-radius: 999px;
  background: #ffe45c;
  font-size: 0.82rem;
  font-weight: 950;
  white-space: nowrap;
}

.point-title-bar h3 {
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(1.06rem, 5.2vw, 1.42rem) !important;
  line-height: 1.25 !important;
}

/* Keep hero logo as two horizontal lines, not vertical text. */
.hero-title-logo {
  width: max-content !important;
  max-width: calc(100% - 32px) !important;
}

.hero-brand-copy {
  display: grid !important;
  gap: 2px;
  white-space: normal !important;
  writing-mode: horizontal-tb !important;
}

.hero-brand-copy > span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap !important;
  writing-mode: horizontal-tb !important;
}

/* Match the desktop side brand copy on the top hero. */
.hero-title-logo {
  width: max-content !important;
  max-width: calc(100% - 24px) !important;
  margin: 24px 0 -78px 16px !important;
}

.hero-brand-copy {
  display: block !important;
  margin: 0;
  color: #102a63 !important;
  font-family: "Arial Black", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: clamp(2.4rem, 13vw, 4.9rem) !important;
  font-weight: 950;
  line-height: 1.02 !important;
  letter-spacing: 0;
  text-shadow: 5px 5px 0 #ffe45c;
  animation: brandCopyFloat 3.8s ease-in-out infinite;
}

/* Force refresh hero copy layout */
.sketch-hero .top-copy-text.hero-title-logo {
  display: block !important;
  position: relative !important;
  z-index: 30 !important;
  width: max-content !important;
  max-width: calc(100% - 24px) !important;
  margin: 24px 0 -78px 16px !important;
  padding: 0 !important;
  color: #102a63 !important;
  transform: none !important;
}

.sketch-hero .hero-brand-copy {
  display: block !important;
  writing-mode: horizontal-tb !important;
}

.sketch-hero .hero-brand-copy > span {
  display: block !important;
  width: max-content !important;
  white-space: nowrap !important;
  writing-mode: horizontal-tb !important;
  font-size: clamp(2.4rem, 13vw, 4.9rem) !important;
  line-height: 1.02 !important;
}

/* Hero line spacing and PC-side badge placement */
.sketch-hero {
  background: #ff8fc6 !important;
}

.entry-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.74), transparent 24%),
    linear-gradient(180deg, #ffe45c 0%, #ffb31a 58%, #ff8f1f 100%) !important;
}

.sketch-hero .hero-brand-copy {
  display: grid !important;
  gap: 12px !important;
  line-height: 1.08 !important;
}

.sketch-hero .hero-brand-copy > span {
  line-height: 1.08 !important;
}

@media (min-width: 1040px) {
  .desktop-brand-copy {
    top: 50%;
  }

  .desktop-brand-copy p,
  .desktop-brand-copy::before,
  .desktop-brand-copy::after {
    display: none !important;
  }

  .desktop-brand-logo {
    justify-self: start;
  }

  .contest-float {
    position: fixed !important;
    top: 32px !important;
    right: 34px !important;
    left: auto !important;
    z-index: 20 !important;
    transform: rotate(4deg) !important;
  }
}

/* Fix oversized hero copy overlap on mobile. */
.sketch-hero .top-copy-text.hero-title-logo {
  display: block !important;
  width: min(100%, 360px) !important;
  max-width: calc(100% - 28px) !important;
  margin: 28px 0 6px 12px !important;
  overflow: visible !important;
}

.sketch-hero .hero-brand-copy {
  display: grid !important;
  gap: 8px !important;
  width: fit-content !important;
  max-width: 100% !important;
  line-height: 1.08 !important;
  text-shadow: none !important;
}

.sketch-hero .hero-brand-copy > span {
  display: block !important;
  width: max-content !important;
  max-width: 100% !important;
  color: #102a63 !important;
  font-size: clamp(2.18rem, 10.4vw, 3.05rem) !important;
  line-height: 1.08 !important;
  white-space: nowrap !important;
  text-shadow: 4px 4px 0 #ffe45c !important;
}

.main-visual {
  margin-top: -8px !important;
}

/* 2026-07-09: settle hero/title spacing and about lead emphasis. */
.sketch-hero {
  background: #fff !important;
}

.sketch-hero .sketch-hero-copy {
  position: relative !important;
  z-index: 30 !important;
  display: block !important;
  padding: 26px 14px 0 !important;
  margin: 0 !important;
  overflow: visible !important;
}

.sketch-hero .top-copy-text.hero-title-logo {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  transform: none !important;
  overflow: visible !important;
}

.sketch-hero .hero-brand-copy {
  display: grid !important;
  gap: 12px !important;
  width: max-content !important;
  max-width: 100% !important;
  margin: 0 !important;
  color: #102a63 !important;
  font-family: "Arial Black", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif !important;
  font-weight: 950 !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
  writing-mode: horizontal-tb !important;
  text-shadow: 5px 5px 0 #ffe45c !important;
}

.sketch-hero .hero-brand-copy > span {
  display: block !important;
  width: max-content !important;
  max-width: 100% !important;
  color: #102a63 !important;
  font-size: clamp(2.2rem, 10.8vw, 3.2rem) !important;
  line-height: 1.12 !important;
  white-space: nowrap !important;
  writing-mode: horizontal-tb !important;
  text-shadow: inherit !important;
}

.sketch-hero .main-visual {
  margin-top: 0 !important;
}

.sketch-section > h2,
.about-service > h2,
.points-section > h2,
.faq-section > h2,
.empathy-heading h2,
.entry-heading h2 {
  text-shadow: none !important;
}

.about-lead .about-emphasis {
  display: inline-block;
  color: #1677ff;
  font-size: 1.18em;
  font-weight: 950;
  line-height: 1;
}

.about-lead .about-emphasis-wide {
  color: #ff4fa3;
  font-size: 1.22em;
}

@media (min-width: 1040px) {
  .sketch-hero .sketch-hero-copy {
    padding-top: 34px !important;
  }

  .sketch-hero .hero-brand-copy > span {
    font-size: clamp(2.65rem, 3.4vw, 4.1rem) !important;
  }
}

/* 2026-07-09: make the top headline easier to read and remove the yellow streak. */
.sketch-hero .hero-brand-copy {
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif !important;
  font-weight: 900 !important;
  gap: 14px !important;
  text-shadow: none !important;
}

.sketch-hero .hero-brand-copy > span {
  font-family: inherit !important;
  font-weight: 900 !important;
  line-height: 1.16 !important;
  text-shadow: none !important;
}

/* 2026-07-09: split top headline font from section heading font. */
.sketch-hero .hero-brand-copy {
  font-family: "Arial Black", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif !important;
  font-weight: 950 !important;
  text-shadow: none !important;
}

.sketch-hero .hero-brand-copy > span {
  font-family: inherit !important;
  font-weight: 950 !important;
  text-shadow: none !important;
}

.sketch-section > h2,
.about-service > h2,
.points-section > h2,
.faq-section > h2,
.empathy-heading h2,
.entry-heading h2 {
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif !important;
  font-weight: 900 !important;
  text-shadow: none !important;
}

/* 2026-07-09: restore section heading font, enlarge hero, and stretch point bars. */
.sketch-section > h2,
.about-service > h2,
.points-section > h2,
.faq-section > h2,
.empathy-heading h2,
.entry-heading h2 {
  font-family: "Arial Black", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif !important;
  font-weight: 950 !important;
  text-shadow: none !important;
}

.sketch-hero {
  padding-bottom: 48px !important;
}

.sketch-hero .sketch-hero-copy {
  padding-top: 18px !important;
}

.sketch-hero .hero-brand-copy {
  gap: 10px !important;
}

.sketch-hero .hero-brand-copy > span {
  font-size: clamp(2.62rem, 12.8vw, 3.72rem) !important;
  line-height: 1.08 !important;
}

.sketch-hero .main-visual {
  margin-top: -16px !important;
  margin-bottom: -118px !important;
}

.hero-subcopy {
  margin-top: -10px !important;
}

.compact-buttons {
  margin-top: -2px !important;
}

.point-title-bar {
  width: calc(100% + 44px) !important;
  margin-right: -22px !important;
  margin-left: -22px !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  gap: 8px !important;
  padding: 11px 12px !important;
}

.point-title-bar h3 {
  min-width: 0 !important;
  overflow: visible !important;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif !important;
  font-size: clamp(0.9rem, 3.75vw, 1.18rem) !important;
  font-weight: 900 !important;
  line-height: 1.18 !important;
  white-space: nowrap !important;
}

.point-title-bar span {
  padding-right: 9px !important;
  padding-left: 9px !important;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif !important;
  font-weight: 900 !important;
}

@media (min-width: 1040px) {
  .sketch-hero {
    padding-bottom: 58px !important;
  }

  .sketch-hero .sketch-hero-copy {
    padding-top: 26px !important;
  }

  .sketch-hero .hero-brand-copy > span {
    font-size: clamp(3.35rem, 4.35vw, 5.1rem) !important;
  }
}

/* 2026-07-09: bang-style hero headline and wider centered point bars. */
@keyframes heroBangIn {
  0% {
    opacity: 0;
    transform: translateY(-10px) scale(0.86) rotate(-2deg);
  }
  58% {
    opacity: 1;
    transform: translateY(0) scale(1.08) rotate(0.6deg);
  }
  78% {
    transform: translateY(0) scale(0.97) rotate(-0.25deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

.sketch-hero {
  padding-bottom: 96px !important;
}

.sketch-hero .sketch-hero-copy {
  padding-top: 10px !important;
}

.sketch-hero .hero-brand-copy {
  gap: 16px !important;
  animation: heroBangIn 720ms cubic-bezier(0.2, 1.4, 0.24, 1) both !important;
}

.sketch-hero .hero-brand-copy > span {
  position: relative !important;
  z-index: 0 !important;
  color: #102a63 !important;
  font-size: clamp(2.95rem, 14.1vw, 4.16rem) !important;
  line-height: 1.04 !important;
  text-shadow: none !important;
}

.sketch-hero .hero-brand-copy > span::before {
  content: attr(data-text);
  position: absolute;
  z-index: -1;
  left: 0.09em;
  top: 0.08em;
  width: 100%;
  color: #ffe45c;
  pointer-events: none;
}

.sketch-hero .main-visual {
  margin-top: -24px !important;
  margin-bottom: -150px !important;
}

.hero-subcopy {
  width: max-content !important;
  max-width: calc(100% - 20px) !important;
  margin: -24px auto 0 !important;
  font-size: clamp(0.88rem, 3.65vw, 1.02rem) !important;
  line-height: 1.56 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

.compact-buttons {
  margin-top: -8px !important;
}

.point-title-bar {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  width: calc(100% + 44px) !important;
  min-height: 62px !important;
  margin-right: -22px !important;
  margin-left: -22px !important;
  padding: 13px 14px !important;
}

.point-title-bar span {
  min-height: 34px !important;
  padding: 5px 12px !important;
  font-size: 0.95rem !important;
  flex: 0 0 auto !important;
}

.point-title-bar h3 {
  flex: 0 1 auto !important;
  width: auto !important;
  max-width: calc(100% - 76px) !important;
  font-size: clamp(1rem, 4.28vw, 1.28rem) !important;
  line-height: 1.12 !important;
  text-align: center !important;
  white-space: nowrap !important;
}

@media (max-width: 380px) {
  .point-title-bar {
    gap: 8px !important;
    padding-right: 10px !important;
    padding-left: 10px !important;
  }

  .point-title-bar span {
    padding-right: 9px !important;
    padding-left: 9px !important;
    font-size: 0.86rem !important;
  }

  .point-title-bar h3 {
    font-size: clamp(0.86rem, 3.9vw, 1rem) !important;
    max-width: calc(100% - 64px) !important;
  }
}

@media (min-width: 1040px) {
  .sketch-hero {
    padding-bottom: 112px !important;
  }

  .sketch-hero .hero-brand-copy > span {
    font-size: clamp(3.85rem, 5vw, 5.75rem) !important;
  }
}

/* 2026-07-09: refine hero layout, white empathy section, and stronger point copy. */
.sketch-hero {
  padding-bottom: 122px !important;
}

.sketch-hero .hero-brand-copy {
  gap: 10px !important;
  transform-origin: 48% 45% !important;
}

.sketch-hero .hero-brand-copy > span {
  font-size: clamp(2.72rem, 13.1vw, 3.86rem) !important;
  line-height: 1.03 !important;
}

.sketch-hero .hero-brand-copy > span::before {
  content: none !important;
}

.sketch-hero .main-visual {
  margin-top: -32px !important;
  margin-bottom: -166px !important;
}

.hero-subcopy {
  max-width: 100% !important;
  margin-top: -34px !important;
  font-size: clamp(0.78rem, 3.25vw, 0.94rem) !important;
  line-height: 1.48 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}

.hero-temp-logo {
  position: relative;
  z-index: 7;
  margin: -4px auto 0 !important;
  color: #102a63;
  font-family: "Arial Black", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: clamp(2.1rem, 10vw, 3.05rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.compact-buttons {
  margin-top: 2px !important;
}

.empathy-section {
  padding-top: 44px !important;
  padding-bottom: 48px !important;
  background: #fff !important;
}

.empathy-scene {
  margin-top: 34px !important;
}

.empathy-scene::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.96) 62%, #fff 100%) !important;
}

.point-title-bar {
  min-height: 78px !important;
  padding-top: 17px !important;
  padding-bottom: 17px !important;
}

.point-title-bar span {
  min-height: 40px !important;
  padding: 7px 14px !important;
  font-size: 1.04rem !important;
}

.point-title-bar h3 {
  max-width: calc(100% - 86px) !important;
  font-size: clamp(1.1rem, 4.72vw, 1.48rem) !important;
  line-height: 1.08 !important;
}

.point-copy p {
  font-size: 1.03rem !important;
}

.point-emphasis {
  display: inline;
  color: #ff2f92;
  font-size: 1.08em;
  font-weight: 950;
  line-height: 1.35;
}

.point-card:nth-child(1) .point-emphasis,
.point-card:nth-child(3) .point-emphasis {
  color: #0557cf;
}

@media (max-width: 380px) {
  .hero-subcopy {
    font-size: clamp(0.72rem, 3.05vw, 0.84rem) !important;
  }

  .point-title-bar {
    min-height: 72px !important;
    gap: 7px !important;
  }

  .point-title-bar span {
    padding-right: 10px !important;
    padding-left: 10px !important;
    font-size: 0.94rem !important;
  }

  .point-title-bar h3 {
    max-width: calc(100% - 70px) !important;
    font-size: clamp(0.96rem, 4.25vw, 1.12rem) !important;
  }
}

@media (min-width: 1040px) {
  .sketch-hero {
    padding-bottom: 140px !important;
  }

  .sketch-hero .hero-brand-copy > span {
    font-size: clamp(3.6rem, 4.65vw, 5.5rem) !important;
  }
}

/* 2026-07-09: root fix for the hero yellow blob.
   Older logo-icon rules targeted every descendant span in .hero-title-logo. */
.sketch-hero .top-copy-text.hero-title-logo {
  animation: none !important;
}

.sketch-hero .hero-brand-copy,
.sketch-hero .hero-brand-copy > span {
  min-height: 0 !important;
  width: max-content !important;
  height: auto !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.sketch-hero .hero-brand-copy {
  animation: heroBangIn 720ms cubic-bezier(0.2, 1.4, 0.24, 1) both !important;
}

.sketch-hero .hero-brand-copy > span::before,
.sketch-hero .hero-brand-copy > span::after {
  content: none !important;
  background: transparent !important;
}

.sketch-hero .hero-temp-logo {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* 2026-07-09: restore yellow duplicated text layer without span backgrounds. */
.sketch-hero .hero-brand-copy,
.sketch-hero .hero-brand-copy > span {
  background: transparent !important;
}

.sketch-hero .hero-brand-copy > span {
  position: relative !important;
  isolation: isolate;
}

.sketch-hero .hero-brand-copy > span::before {
  content: attr(data-text) !important;
  position: absolute !important;
  z-index: -1 !important;
  left: 0.075em !important;
  top: 0.065em !important;
  width: max-content !important;
  color: #ffe45c !important;
  background: transparent !important;
  text-shadow: none !important;
  pointer-events: none !important;
}

.sketch-hero .hero-brand-copy > span::after {
  content: none !important;
}

/* 2026-07-09: keep the points section inside the phone width. */
.points-section,
.points-section .point-list,
.points-section .point-card {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow-x: clip !important;
}

.points-section > *,
.point-list > *,
.point-card > * {
  min-width: 0 !important;
}

.points-section .reveal-item,
.points-section .reveal-item.reveal-from-right {
  transform: translateY(22px) !important;
}

.points-section .reveal-item.is-visible,
.points-section .point-list.is-visible,
.points-section .point-card.is-visible,
.points-section .point-title-bar.is-visible {
  transform: translateY(0) !important;
}

.point-title-bar {
  box-sizing: border-box !important;
  width: calc(100% + 44px) !important;
  max-width: calc(100% + 44px) !important;
  margin-left: -22px !important;
  margin-right: -22px !important;
  gap: 8px !important;
  overflow: clip !important;
}

.point-title-bar span {
  padding-right: 10px !important;
  padding-left: 10px !important;
}

.point-title-bar h3 {
  max-width: calc(100% - 68px) !important;
  font-size: clamp(1rem, 4.22vw, 1.24rem) !important;
  overflow: hidden !important;
  text-overflow: clip !important;
}

/* 2026-07-09: point titles become stamp + headline instead of color bars. */
@keyframes pointStampPop {
  0% {
    opacity: 0;
    transform: translateY(-12px) rotate(-10deg) scale(1.65);
    filter: blur(2px);
  }
  62% {
    opacity: 1;
    transform: translateY(0) rotate(-7deg) scale(0.9);
    filter: blur(0);
  }
  78% {
    transform: translateY(0) rotate(-7deg) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotate(-7deg) scale(1);
    filter: blur(0);
  }
}

@keyframes pointHeadlineBang {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.94);
  }
  70% {
    opacity: 1;
    transform: translateY(0) scale(1.04);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.points-section > h2 {
  display: grid !important;
  min-height: 218px !important;
  place-items: end center !important;
  padding: 96px 20px 38px !important;
}

.point-list {
  padding-top: 22px !important;
}

.point-card {
  padding-top: 74px !important;
}

.point-title-bar {
  display: grid !important;
  justify-items: center !important;
  align-items: center !important;
  gap: 16px !important;
  width: min(100%, 340px) !important;
  max-width: min(100%, 340px) !important;
  min-height: auto !important;
  margin: 0 auto 8px !important;
  padding: 0 !important;
  color: #102a63 !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
}

.point-title-bar span {
  display: inline-grid !important;
  min-width: 86px !important;
  min-height: 54px !important;
  place-items: center !important;
  padding: 8px 14px !important;
  color: #fff !important;
  border: 4px solid #102a63 !important;
  border-radius: 999px !important;
  background: #ff4fa3 !important;
  box-shadow: 0 6px 0 #102a63 !important;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif !important;
  font-size: 1.1rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  opacity: 0;
  transform-origin: center;
  animation: none;
}

.point-card:nth-child(2) .point-title-bar span {
  background: #1677ff !important;
}

.point-card:nth-child(3) .point-title-bar span {
  background: #00a35b !important;
}

.point-title-bar h3 {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  overflow: visible !important;
  color: #102a63 !important;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif !important;
  font-size: clamp(1.65rem, 7.2vw, 2.18rem) !important;
  font-weight: 900 !important;
  line-height: 1.18 !important;
  text-align: center !important;
  white-space: normal !important;
  opacity: 0;
  animation: none;
}

.point-title-bar.is-visible span {
  animation: pointStampPop 620ms cubic-bezier(0.18, 1.3, 0.24, 1) both;
}

.point-title-bar.is-visible h3 {
  animation: pointHeadlineBang 540ms cubic-bezier(0.2, 1.1, 0.24, 1) 520ms both;
}

.point-copy {
  width: min(100%, 326px) !important;
  max-width: 326px !important;
  justify-self: center !important;
  gap: 12px !important;
  text-align: center !important;
}

.point-copy p {
  margin: 0 !important;
  color: #102a63 !important;
  font-size: 1.03rem !important;
  font-weight: 850 !important;
  line-height: 1.72 !important;
  text-align: center !important;
}

.point-emphasis {
  display: inline !important;
  font-size: 1.1em !important;
  font-weight: 950 !important;
}

.point-emphasis-blue {
  color: #1677ff !important;
}

.point-emphasis-pink {
  color: #ff2f92 !important;
}

.faq-section {
  background: #102a63 !important;
}

.faq-section > h2 {
  color: #fff !important;
}

.faq-section details {
  border-color: rgba(255, 255, 255, 0.32) !important;
  background: #fff !important;
}

@media (max-width: 380px) {
  .point-title-bar {
    width: min(100%, 320px) !important;
    max-width: min(100%, 320px) !important;
  }

  .point-title-bar h3 {
    font-size: clamp(1.48rem, 6.8vw, 1.86rem) !important;
  }

  .point-copy {
    width: min(100%, 306px) !important;
    max-width: 306px !important;
  }
}

/* 2026-07-09: hero sequence, continuous points background, and contest polish. */
@keyframes heroCopySlideIn {
  0% {
    opacity: 0;
    transform: translateX(-46px) rotate(-1deg);
  }
  70% {
    opacity: 1;
    transform: translateX(4px) rotate(0);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0);
  }
}

@keyframes heroLogoDon {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.72) rotate(-2deg);
  }
  62% {
    opacity: 1;
    transform: translateY(0) scale(1.12) rotate(0.8deg);
  }
  82% {
    transform: translateY(0) scale(0.96) rotate(-0.3deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }
}

.sketch-hero {
  padding-bottom: 106px !important;
}

.sketch-hero .sketch-hero-copy {
  padding-top: 18px !important;
}

.sketch-hero .hero-brand-copy {
  gap: 7px !important;
  animation: heroCopySlideIn 760ms cubic-bezier(0.18, 0.92, 0.2, 1) both !important;
}

.sketch-hero .hero-brand-copy > span {
  font-size: clamp(1.7rem, 8.5vw, 2.48rem) !important;
  line-height: 1.05 !important;
}

.sketch-hero .hero-brand-copy > span::before {
  left: 0.07em !important;
  top: 0.06em !important;
}

.sketch-hero .main-visual {
  margin-top: -18px !important;
  margin-bottom: -176px !important;
}

.hero-temp-logo {
  margin-top: -24px !important;
  margin-bottom: 0 !important;
  font-size: clamp(3.05rem, 15vw, 4.62rem) !important;
  letter-spacing: 0 !important;
  opacity: 0 !important;
  animation: heroLogoDon 680ms cubic-bezier(0.18, 1.28, 0.24, 1) 720ms both !important;
}

.hero-subcopy {
  display: block !important;
  width: min(100%, 356px) !important;
  max-width: calc(100% - 28px) !important;
  margin: -6px auto 0 !important;
  padding: 8px 10px !important;
  color: #102a63 !important;
  border-radius: 0 !important;
  background: rgba(255, 255, 255, 0.86) !important;
  font-size: clamp(0.92rem, 3.8vw, 1.08rem) !important;
  font-weight: 950 !important;
  line-height: 1.52 !important;
  text-align: center !important;
  white-space: nowrap !important;
  text-shadow: 0 2px 0 #fff !important;
}

.compact-buttons {
  margin-top: 4px !important;
}

.points-section,
.points-section > h2,
.point-list {
  background: #8fc8ff !important;
}

.points-section > h2 {
  min-height: 236px !important;
  padding: 118px 20px 40px !important;
  box-shadow: none !important;
}

.point-list {
  padding-top: 34px !important;
}

.point-card {
  padding-top: 82px !important;
}

.point-title-bar {
  width: min(100%, 352px) !important;
  max-width: min(100%, 352px) !important;
  gap: 14px !important;
}

.point-title-bar h3 {
  max-width: 9.7em !important;
  font-size: clamp(1.5rem, 6.55vw, 1.92rem) !important;
  line-height: 1.14 !important;
}

.point-copy {
  width: min(100%, 318px) !important;
  max-width: 318px !important;
}

.point-copy p {
  line-height: 1.7 !important;
}

.entry-heading h2 {
  width: min(100%, 10.5em) !important;
  font-size: clamp(1.78rem, 8.6vw, 2.42rem) !important;
  line-height: 1.16 !important;
}

.entry-heading p:not(.section-kicker) {
  width: min(100%, 326px) !important;
  max-width: 326px !important;
  text-align: center !important;
}

.entry-reward {
  border-color: #1677ff !important;
  background: #fff7b8 !important;
  box-shadow: 0 8px 0 #1677ff, 0 22px 36px rgba(16, 42, 99, 0.14) !important;
}

.entry-reward::before,
.entry-reward::after {
  content: none !important;
}

.entry-card strong {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}

@media (max-width: 380px) {
  .sketch-hero .hero-brand-copy > span {
    font-size: clamp(1.54rem, 7.9vw, 2.08rem) !important;
  }

  .hero-temp-logo {
    font-size: clamp(2.72rem, 13.4vw, 3.9rem) !important;
  }

  .hero-subcopy {
    font-size: clamp(0.82rem, 3.45vw, 0.96rem) !important;
  }

  .point-title-bar h3 {
    max-width: 9.2em !important;
    font-size: clamp(1.34rem, 6.25vw, 1.66rem) !important;
  }

  .point-copy {
    width: min(100%, 304px) !important;
    max-width: 304px !important;
  }
}

/* 2026-07-09: keep the temporary Coeshi logo directly under the hero title. */
.sketch-hero .sketch-hero-copy {
  display: grid !important;
  justify-items: start !important;
  gap: 12px !important;
}

.sketch-hero .hero-temp-logo {
  justify-self: center !important;
  width: max-content !important;
  max-width: 100% !important;
  margin: 0 auto 0 !important;
  opacity: 0 !important;
  transform-origin: center !important;
  animation: heroLogoDon 680ms cubic-bezier(0.18, 1.28, 0.24, 1) 760ms both !important;
}

.sketch-hero .main-visual {
  margin-top: -8px !important;
}

/* 2026-07-09: make the temporary logo persist visibly under the title. */
.sketch-hero .hero-temp-logo,
.sketch-hero .hero-temp-logo.reveal-item,
.sketch-hero .hero-temp-logo.reveal-from-right {
  display: block !important;
  position: relative !important;
  z-index: 40 !important;
  justify-self: center !important;
  width: max-content !important;
  max-width: calc(100% - 10px) !important;
  margin: 0 auto 0 !important;
  color: #102a63 !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  transform: none !important;
  animation: heroLogoDon 680ms cubic-bezier(0.18, 1.28, 0.24, 1) 760ms both !important;
}

.sketch-hero .sketch-hero-copy.reveal-item {
  opacity: 1 !important;
  filter: none !important;
}

/* 2026-07-09: top section polish.
   Keep the current pop direction while tightening spacing, type rhythm, and CTA feel. */
.sketch-hero {
  padding-top: 24px !important;
  padding-bottom: 118px !important;
}

.sketch-nav {
  margin-bottom: 8px !important;
}

.sketch-hero .sketch-hero-copy {
  gap: 10px !important;
  padding-top: 14px !important;
}

.sketch-hero .hero-brand-copy {
  gap: 10px !important;
}

.sketch-hero .hero-brand-copy > span {
  line-height: 1.04 !important;
  letter-spacing: 0.01em !important;
}

.sketch-hero .hero-brand-copy > span::before {
  left: 0.055em !important;
  top: 0.055em !important;
}

.sketch-hero .hero-temp-logo,
.sketch-hero .hero-temp-logo.reveal-item,
.sketch-hero .hero-temp-logo.reveal-from-right {
  margin-top: 2px !important;
  line-height: 0.94 !important;
}

.sketch-hero .main-visual {
  margin-top: -2px !important;
  margin-bottom: -164px !important;
}

.hero-subcopy {
  width: min(100%, 348px) !important;
  margin: 4px auto 8px !important;
  padding: 10px 12px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 4px 0 rgba(16, 42, 99, 0.08) !important;
  line-height: 1.48 !important;
}

.compact-buttons {
  margin-top: 8px !important;
}

.compact-buttons .hero-register-button {
  min-height: 58px !important;
  border-radius: 999px !important;
  box-shadow: 0 7px 0 #b51b6b, 0 16px 28px rgba(255, 79, 163, 0.28) !important;
}

/* 2026-07-09: consolidated responsive layout.
   Mobile-first LP shell: the content stays phone-sized and centered;
   desktop only adds viewport-wide background art and side navigation. */
html,
body {
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
}

body {
  display: block;
  min-height: 100vh;
  padding: 0;
  background: #f3f7ff;
}

body::before,
body::after {
  opacity: 0;
}

.phone-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

.desktop-section-nav,
.desktop-brand-copy {
  display: none;
}

.contest-float {
  display: none;
}

@media (min-width: 431px) {
  body {
    padding: 32px 0;
  }

  body::before {
    opacity: 0.2;
  }

  body::after {
    opacity: 0.18;
  }

  .phone-shell {
    width: 430px;
    border-radius: 34px;
    box-shadow: 0 24px 80px rgba(16, 42, 99, 0.14);
  }
}

@media (max-width: 430px) {
  body {
    padding: 0;
  }

  .phone-shell {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 1179px) {
  .desktop-section-nav,
  .desktop-brand-copy {
    display: none;
  }
}

@media (min-width: 1180px) {
  .contest-float {
    position: fixed;
    top: 32px;
    right: 34px;
    left: auto;
    z-index: 20;
    display: grid;
    transform: rotate(4deg);
  }

  .desktop-brand-copy {
    position: fixed;
    top: 50%;
    right: calc(50% + 258px);
    z-index: 4;
    display: grid;
    width: clamp(190px, 18vw, 280px);
    transform: translateY(-50%);
    pointer-events: none;
  }

  .desktop-section-nav {
    position: fixed;
    top: 50%;
    left: calc(50% + 258px);
    z-index: 4;
    display: grid;
    width: clamp(190px, 18vw, 260px);
    transform: translateY(-50%);
  }

  .desktop-section-nav a {
    min-height: 52px;
    gap: 8px;
    font-size: clamp(0.72rem, 0.95vw, 0.95rem);
  }

  .desktop-section-nav span {
    min-width: 36px;
    min-height: 22px;
    font-size: 0.7rem;
  }

  .desktop-brand-copy p,
  .desktop-brand-copy::before,
  .desktop-brand-copy::after {
    display: none;
  }

  .desktop-brand-logo {
    display: inline-flex;
    min-height: 48px;
    padding: 8px 14px;
    font-size: clamp(0.92rem, 1vw, 1.12rem);
  }
}

@media (min-width: 1360px) {
  .desktop-brand-copy {
    right: calc(50% + 282px);
    width: min(24vw, 310px);
  }

  .desktop-section-nav {
    left: calc(50% + 282px);
    width: min(24vw, 280px);
  }
}

/* 2026-07-09: section rhythm polish.
   Keep the vivid pop palette, but reduce section fragmentation with fewer background shifts
   and consistent spacing rules. Delete this block to return to the previous section styling. */
.about-service,
.empathy-section,
.points-section,
.entry-section,
.faq-section {
  gap: 24px !important;
}

.about-service,
.empathy-section {
  padding: 54px 22px 56px !important;
}

.about-service {
  background: #ffe45c !important;
}

.empathy-section {
  position: relative !important;
  overflow: hidden !important;
  background: #fff7c8 !important;
}

.empathy-section::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 0;
  width: auto;
  height: 148px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 247, 200, 0) 0%, #fff0a1 30%, #cfe59a 58%, #8fc8ff 100%);
  border-radius: 0;
  clip-path: none;
  transform: none;
}

.empathy-section::after {
  content: none;
}

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

.empathy-scene::after {
  background: linear-gradient(180deg, rgba(255, 247, 200, 0), rgba(255, 247, 200, 0.9) 64%, #fff7c8 100%) !important;
}

.points-section,
.points-section > h2,
.points-section .point-list,
.points-section .point-card,
.points-section .point-card:nth-child(1),
.points-section .point-card:nth-child(2),
.points-section .point-card:nth-child(3),
.point-voice,
.point-template,
.point-simple,
.points-closing {
  background: #8fc8ff !important;
}

.points-section > h2 {
  padding: 58px 22px 34px !important;
}

.point-list {
  gap: 36px !important;
  padding-top: 28px !important;
}

.point-card {
  padding: 72px 22px 58px !important;
}

.entry-section {
  padding: 58px 22px 76px !important;
  background: linear-gradient(180deg, #ffe45c 0%, #ffbf24 58%, #ffad1f 100%) !important;
}

.faq-section {
  padding: 58px 22px 64px !important;
  background: #102a63 !important;
}

.sketch-section > h2,
.about-service > h2,
.points-section > h2,
.faq-section > h2,
.empathy-heading h2,
.entry-heading h2 {
  margin-bottom: 18px !important;
  letter-spacing: 0.01em !important;
}

.about-lead,
.empathy-heading p,
.entry-heading > p:not(.section-kicker) {
  margin-top: 0 !important;
  margin-bottom: 24px !important;
}

.about-step,
.point-visual,
.entry-card,
.entry-reward,
.faq-section details {
  border-radius: 20px !important;
  box-shadow: 0 10px 0 rgba(16, 42, 99, 0.08), 0 22px 36px rgba(16, 42, 99, 0.12) !important;
}

.about-step,
.entry-card,
.entry-reward {
  padding: 24px 20px !important;
}

.faq-section details {
  margin-bottom: 12px !important;
}

.faq-section details:last-of-type {
  margin-bottom: 0 !important;
}

.button {
  border-radius: 18px;
}

/* 2026-07-09: point section spacing adjustment. */
.points-section > h2 {
  min-height: auto !important;
  padding: 42px 22px 18px !important;
}

.point-list {
  gap: 26px !important;
  padding-top: 8px !important;
}

.point-card {
  min-height: auto !important;
  gap: 12px !important;
  padding-top: 34px !important;
  padding-bottom: 42px !important;
}

.point-title-bar {
  gap: 10px !important;
  margin-bottom: 14px !important;
}

.point-title-bar h3 {
  max-width: 10.5em !important;
  font-size: clamp(1.42rem, 6.2vw, 1.84rem) !important;
  line-height: 1.16 !important;
}

.point-copy {
  gap: 10px !important;
}

.point-copy p {
  line-height: 1.62 !important;
}

.point-visual {
  min-height: 430px !important;
}

/* 2026-07-09: creator-side two-color theme.
   Base blue + vivid pink accent. Layout and responsive shell stay unchanged. */
:root {
  --creator-base: #8fc8ff;
  --creator-base-strong: #1677ff;
  --creator-accent: #ff4fa3;
  --creator-accent-deep: #d81778;
  --creator-ink: #102a63;
  --creator-paper: #ffffff;
}

.sketch-lp:not(.voice-lp) .sketch-hero,
.sketch-lp:not(.voice-lp) .about-service,
.sketch-lp:not(.voice-lp) .empathy-section,
.sketch-lp:not(.voice-lp) .points-section,
.sketch-lp:not(.voice-lp) .points-section > h2,
.sketch-lp:not(.voice-lp) .points-section .point-list,
.sketch-lp:not(.voice-lp) .points-section .point-card,
.sketch-lp:not(.voice-lp) .points-section .point-card:nth-child(1),
.sketch-lp:not(.voice-lp) .points-section .point-card:nth-child(2),
.sketch-lp:not(.voice-lp) .points-section .point-card:nth-child(3),
.sketch-lp:not(.voice-lp) .point-voice,
.sketch-lp:not(.voice-lp) .point-template,
.sketch-lp:not(.voice-lp) .point-simple,
.sketch-lp:not(.voice-lp) .points-closing {
  background: var(--creator-base) !important;
}

.sketch-lp:not(.voice-lp) .about-service {
  background: #6db6ff !important;
}

.sketch-lp:not(.voice-lp) .empathy-section {
  background: #b8dcff !important;
}

.sketch-lp:not(.voice-lp) .empathy-section::before {
  background: linear-gradient(180deg, rgba(184, 220, 255, 0) 0%, #a9d5ff 44%, var(--creator-base) 100%) !important;
}

.sketch-lp:not(.voice-lp) .empathy-scene::after {
  background: linear-gradient(180deg, rgba(184, 220, 255, 0), rgba(184, 220, 255, 0.9) 64%, #b8dcff 100%) !important;
}

.sketch-lp:not(.voice-lp) .entry-section {
  background: var(--creator-accent) !important;
}

.sketch-lp:not(.voice-lp) .hero-brand-copy > span::before,
.sketch-lp:not(.voice-lp) .hero-title-logo span::before {
  color: var(--creator-accent) !important;
}

.sketch-lp:not(.voice-lp) .hero-temp-logo,
.sketch-lp:not(.voice-lp) .about-emphasis,
.sketch-lp:not(.voice-lp) .point-emphasis-pink,
.sketch-lp:not(.voice-lp) .point-title-bar span {
  color: var(--creator-accent) !important;
}

.sketch-lp:not(.voice-lp) .point-emphasis-blue,
.sketch-lp:not(.voice-lp) .section-kicker {
  color: var(--creator-base-strong) !important;
}

.sketch-lp:not(.voice-lp) .button.primary,
.sketch-lp:not(.voice-lp) .hero-register-button,
.sketch-lp:not(.voice-lp) .entry-actions .button.primary,
.sketch-lp:not(.voice-lp) .contest-badge-copy {
  background: var(--creator-accent) !important;
  box-shadow: 0 7px 0 var(--creator-accent-deep), 0 16px 28px rgba(255, 79, 163, 0.28) !important;
}

.sketch-lp:not(.voice-lp) .button.secondary,
.sketch-lp:not(.voice-lp) .entry-actions .button.secondary {
  border-color: var(--creator-base-strong) !important;
  color: var(--creator-ink) !important;
  background: var(--creator-paper) !important;
  box-shadow: 0 6px 0 rgba(22, 119, 255, 0.22) !important;
}

.sketch-lp:not(.voice-lp) .hamburger-button span,
.sketch-lp:not(.voice-lp) .hamburger-button span:nth-child(3),
.sketch-lp:not(.voice-lp) .point-ui label:nth-child(2) i::before,
.sketch-lp:not(.voice-lp) .entry-sheet::after,
.sketch-lp:not(.voice-lp) .entry-character-card em {
  background: var(--creator-accent) !important;
}

.sketch-lp:not(.voice-lp) .hamburger-button span:nth-child(2) {
  background: var(--creator-base-strong) !important;
}

.sketch-lp:not(.voice-lp) .entry-title-art::before,
.sketch-lp:not(.voice-lp) .entry-reward span,
.sketch-lp:not(.voice-lp) .template-phone-screen strong,
.sketch-lp:not(.voice-lp) .desktop-brand-logo,
.sketch-lp:not(.voice-lp) .desktop-section-nav span {
  background: var(--creator-base-strong) !important;
}

.sketch-lp:not(.voice-lp) .entry-card,
.sketch-lp:not(.voice-lp) .entry-reward,
.sketch-lp:not(.voice-lp) .about-step,
.sketch-lp:not(.voice-lp) .point-visual,
.sketch-lp:not(.voice-lp) .faq-section details {
  border-color: var(--creator-ink) !important;
}

.sketch-lp:not(.voice-lp) .entry-heading h2,
.sketch-lp:not(.voice-lp) .entry-heading > p {
  color: var(--creator-paper) !important;
  text-shadow: 4px 4px 0 var(--creator-ink) !important;
}

/* 2026-07-09: final top visual edge-to-edge and centered controls. */
.phone-shell.sketch-lp .sketch-hero > .main-visual {
  justify-self: start !important;
  width: min(430px, 100vw) !important;
  max-width: min(430px, 100vw) !important;
  margin: -10px -20px -82px !important;
  overflow: hidden !important;
}

.phone-shell.sketch-lp .sketch-hero > .main-visual img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: min(430px, calc(100vw + 20px)) !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.phone-shell.sketch-lp .hero-subcopy,
.phone-shell.sketch-lp .hero-lp-switch,
.phone-shell.sketch-lp .sketch-hero > .compact-buttons,
.phone-shell.sketch-lp .sketch-hero > .compact-buttons .hero-register-button {
  justify-self: center !important;
  text-align: center !important;
}

.phone-shell.sketch-lp .hero-subcopy {
  width: min(calc(100% - 44px), 344px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.phone-shell.sketch-lp .hero-lp-switch {
  width: min(calc(100% - 68px), 304px) !important;
  margin: 10px auto 8px !important;
}

.phone-shell.sketch-lp .sketch-hero > .compact-buttons {
  width: min(calc(100% - 68px), 330px) !important;
}

/* 2026-07-09: absolute final top visual edge-to-edge. */
.phone-shell.sketch-lp .sketch-hero > .main-visual {
  justify-self: start !important;
  width: min(430px, 100vw) !important;
  max-width: min(430px, 100vw) !important;
  margin: -10px -20px -82px !important;
  overflow: hidden !important;
}

.phone-shell.sketch-lp .sketch-hero > .main-visual img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: min(430px, calc(100vw + 20px)) !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* 2026-07-09: final top alignment override. */
.sketch-lp .main-visual {
  justify-self: center !important;
  width: calc(100% + 40px) !important;
  max-width: calc(100% + 40px) !important;
  margin: -10px -20px -82px !important;
  overflow: hidden !important;
}

.sketch-lp .main-visual img {
  width: 100% !important;
  height: min(430px, calc(100vw + 20px)) !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.hero-subcopy,
.hero-lp-switch,
.sketch-lp .sketch-hero > .compact-buttons,
.sketch-lp .sketch-hero > .compact-buttons .hero-register-button {
  justify-self: center !important;
  text-align: center !important;
}

.hero-subcopy {
  width: min(calc(100% - 44px), 344px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.hero-lp-switch {
  width: min(calc(100% - 68px), 304px) !important;
  margin: 10px auto 8px !important;
}

.sketch-lp .sketch-hero > .compact-buttons {
  width: min(calc(100% - 68px), 330px) !important;
}

/* 2026-07-09: top visual and centered controls polish. */
.sketch-lp .main-visual {
  justify-self: center !important;
  width: calc(100% + 40px) !important;
  max-width: calc(100% + 40px) !important;
  margin: -10px -20px -82px !important;
  overflow: hidden !important;
}

.sketch-lp .main-visual img {
  width: 100% !important;
  height: min(430px, calc(100vw + 20px)) !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.hero-subcopy,
.hero-lp-switch,
.sketch-lp .sketch-hero > .compact-buttons,
.sketch-lp .sketch-hero > .compact-buttons .hero-register-button {
  justify-self: center !important;
  text-align: center !important;
}

.hero-subcopy {
  width: min(calc(100% - 44px), 344px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.hero-lp-switch {
  width: min(calc(100% - 68px), 304px) !important;
  margin: 10px auto 8px !important;
}

.sketch-lp .sketch-hero > .compact-buttons {
  width: min(calc(100% - 68px), 330px) !important;
}

/* 2026-07-09: cross-links between illustrator and cast LPs. */
.hero-lp-switch {
  display: inline-grid;
  justify-self: center;
  gap: 2px;
  width: min(calc(100% - 72px), 300px);
  margin: 4px auto 8px;
  padding: 10px 16px;
  color: #102a63;
  border: 3px solid #102a63;
  border-radius: 999px;
  background: #fff7c8;
  box-shadow: 0 5px 0 rgba(16, 42, 99, 0.28);
  font-weight: 950;
  line-height: 1.18;
  text-align: center;
  text-decoration: none;
}

.hero-lp-switch span {
  font-size: 0.72rem;
}

.hero-lp-switch strong {
  font-size: 0.92rem;
}

.desktop-lp-switch {
  display: none;
}

@media (min-width: 1180px) {
  .desktop-lp-switch {
    position: fixed;
    top: calc(50% + 82px);
    z-index: 5;
    display: grid;
    gap: 4px;
    width: clamp(148px, 13vw, 190px);
    min-height: 58px;
    place-items: center;
    padding: 12px 16px;
    color: #102a63;
    border: 4px solid #102a63;
    border-radius: 999px;
    background: #ffe45c;
    box-shadow: 7px 7px 0 rgba(16, 42, 99, 0.38);
    font-weight: 950;
    line-height: 1.08;
    text-align: center;
    text-decoration: none;
    transform: rotate(-3deg);
  }

  .desktop-lp-switch-left {
    right: calc(50% + 296px);
  }

  .desktop-lp-switch-right {
    left: calc(50% + 296px);
    transform: rotate(3deg);
  }

  .desktop-lp-switch span {
    font-size: clamp(0.68rem, 0.82vw, 0.78rem);
  }

  .desktop-lp-switch strong {
    font-size: clamp(0.88rem, 1vw, 1.04rem);
  }
}

/* 2026-07-09: shared key visual direction.
   Both LPs use the same top visual; non-mockup decorative images are hidden for now. */
.sketch-lp .main-visual {
  justify-content: center !important;
  justify-self: start !important;
  width: min(390px, calc(100vw - 40px)) !important;
  min-width: 0 !important;
  max-width: min(390px, calc(100vw - 40px)) !important;
  margin: -10px 0 -82px !important;
  overflow: hidden !important;
}

.sketch-lp .main-visual img {
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: 420px !important;
  margin-right: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

.sketch-lp .about-step-image,
.sketch-lp .empathy-visual,
.sketch-lp .worry-bubble img,
.sketch-lp .contest-badge-art,
.sketch-lp .entry-title-art img,
.sketch-lp .template-phone-silhouette,
.sketch-lp .entry-main-silhouette {
  display: none !important;
}

.sketch-lp .about-step {
  min-height: auto !important;
  justify-content: center !important;
}

.sketch-lp .worry-bubble {
  display: grid !important;
  min-height: 142px !important;
  place-items: center !important;
  padding: 20px 18px !important;
  border: 4px solid var(--creator-ink, #102a63) !important;
  border-radius: 32px !important;
  background: #fff !important;
  box-shadow: 8px 8px 0 rgba(16, 42, 99, 0.18) !important;
}

.sketch-lp .worry-bubble p {
  position: static !important;
  transform: none !important;
}

.sketch-lp .entry-title-art {
  display: none !important;
}

body::before,
body::after {
  opacity: 0 !important;
}

body {
  background:
    linear-gradient(90deg, #6d2cff 0 50%, #ff4fa3 50% 100%) !important;
}

.sketch-lp .sketch-hero > .compact-buttons {
  width: min(calc(100% - 92px), 316px) !important;
  justify-self: center !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.sketch-lp .sketch-hero > .compact-buttons .hero-register-button {
  width: 100% !important;
}

@media (min-width: 431px) {
  body::before {
    content: "" !important;
    position: fixed !important;
    inset: -8vh -8vw !important;
    z-index: 0 !important;
    opacity: 0.22 !important;
    pointer-events: none !important;
    background-image: url("../images/final/desktop-background.png?v=20260714-production-1") !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    filter: saturate(1.18) contrast(1.04) !important;
  }

  body::after {
    content: "" !important;
    position: fixed !important;
    inset: 0 !important;
    z-index: 0 !important;
    opacity: 0.72 !important;
    pointer-events: none !important;
    background: linear-gradient(90deg, rgba(109, 44, 255, 0.82) 0 34%, rgba(255, 228, 92, 0.18) 44% 56%, rgba(255, 79, 163, 0.82) 66% 100%) !important;
  }

  .phone-shell {
    position: relative;
    z-index: 2;
  }
}

@media (min-width: 1180px) {
  .desktop-brand-copy,
  .desktop-section-nav {
    color: #fff !important;
  }

  .desktop-brand-copy {
    position: fixed !important;
    z-index: 4 !important;
  }

  .desktop-section-nav {
    position: fixed !important;
    z-index: 4 !important;
  }

  .contest-float {
    position: fixed !important;
    z-index: 20 !important;
  }

  .desktop-brand-logo,
  .desktop-section-nav span,
  .contest-badge-copy {
    color: #102a63 !important;
    background: #ffe45c !important;
    border-color: #102a63 !important;
    box-shadow: 6px 6px 0 rgba(16, 42, 99, 0.34) !important;
  }

  .desktop-section-nav a {
    color: #fff !important;
    border-bottom-color: #ffe45c !important;
    text-shadow: 0 2px 0 rgba(16, 42, 99, 0.35) !important;
  }

  .desktop-section-nav a::after {
    color: #ffe45c !important;
  }
}

/* 2026-07-09: illustrator-side revised theme.
   Base pink + yellow sub color. */
.sketch-lp:not(.voice-lp) {
  --creator-base: #ff4fa3;
  --creator-base-soft: #ff8fc6;
  --creator-base-deep: #d81778;
  --creator-sub: #ffe45c;
  --creator-sub-deep: #f0b900;
  --creator-ink: #102a63;
  --creator-paper: #ffffff;
}

.sketch-lp:not(.voice-lp) .sketch-hero,
.sketch-lp:not(.voice-lp) .about-service,
.sketch-lp:not(.voice-lp) .empathy-section,
.sketch-lp:not(.voice-lp) .points-section,
.sketch-lp:not(.voice-lp) .points-section > h2,
.sketch-lp:not(.voice-lp) .points-section .point-list,
.sketch-lp:not(.voice-lp) .points-section .point-card,
.sketch-lp:not(.voice-lp) .points-section .point-card:nth-child(1),
.sketch-lp:not(.voice-lp) .points-section .point-card:nth-child(2),
.sketch-lp:not(.voice-lp) .points-section .point-card:nth-child(3),
.sketch-lp:not(.voice-lp) .point-voice,
.sketch-lp:not(.voice-lp) .point-template,
.sketch-lp:not(.voice-lp) .point-simple,
.sketch-lp:not(.voice-lp) .points-closing,
.sketch-lp:not(.voice-lp) .entry-section {
  background: var(--creator-base) !important;
}

.sketch-lp:not(.voice-lp) .about-service,
.sketch-lp:not(.voice-lp) .empathy-section {
  background: var(--creator-base-soft) !important;
}

.sketch-lp:not(.voice-lp) .empathy-section::before {
  background: linear-gradient(180deg, rgba(255, 143, 198, 0) 0%, var(--creator-base-soft) 42%, var(--creator-base) 100%) !important;
}

.sketch-lp:not(.voice-lp) .empathy-scene::after {
  background: linear-gradient(180deg, rgba(255, 143, 198, 0), rgba(255, 143, 198, 0.9) 64%, var(--creator-base-soft) 100%) !important;
}

.sketch-lp:not(.voice-lp) .hero-brand-copy > span::before,
.sketch-lp:not(.voice-lp) .hero-title-logo span::before,
.sketch-lp:not(.voice-lp) .hero-temp-logo,
.sketch-lp:not(.voice-lp) .about-emphasis,
.sketch-lp:not(.voice-lp) .point-emphasis-pink,
.sketch-lp:not(.voice-lp) .point-emphasis-blue,
.sketch-lp:not(.voice-lp) .section-kicker {
  color: var(--creator-sub) !important;
}

.sketch-lp:not(.voice-lp) .button.primary,
.sketch-lp:not(.voice-lp) .hero-register-button,
.sketch-lp:not(.voice-lp) .entry-actions .button.primary,
.sketch-lp:not(.voice-lp) .contest-badge-copy,
.sketch-lp:not(.voice-lp) .hamburger-button span,
.sketch-lp:not(.voice-lp) .hamburger-button span:nth-child(2),
.sketch-lp:not(.voice-lp) .hamburger-button span:nth-child(3),
.sketch-lp:not(.voice-lp) .point-title-bar span,
.sketch-lp:not(.voice-lp) .point-ui label:nth-child(2) i::before,
.sketch-lp:not(.voice-lp) .entry-sheet::after,
.sketch-lp:not(.voice-lp) .entry-character-card em,
.sketch-lp:not(.voice-lp) .entry-title-art::before,
.sketch-lp:not(.voice-lp) .entry-reward span,
.sketch-lp:not(.voice-lp) .template-phone-screen strong,
.sketch-lp:not(.voice-lp) .desktop-brand-logo,
.sketch-lp:not(.voice-lp) .desktop-section-nav span {
  background: var(--creator-sub) !important;
  color: var(--creator-ink) !important;
}

.sketch-lp:not(.voice-lp) .button.primary,
.sketch-lp:not(.voice-lp) .hero-register-button,
.sketch-lp:not(.voice-lp) .entry-actions .button.primary {
  box-shadow: 0 7px 0 var(--creator-sub-deep), 0 16px 28px rgba(255, 228, 92, 0.28) !important;
}

.sketch-lp:not(.voice-lp) .button.secondary,
.sketch-lp:not(.voice-lp) .entry-actions .button.secondary {
  border-color: var(--creator-sub) !important;
  background: var(--creator-paper) !important;
  box-shadow: 0 6px 0 rgba(240, 185, 0, 0.28) !important;
}

.sketch-lp:not(.voice-lp) .entry-heading h2,
.sketch-lp:not(.voice-lp) .entry-heading > p {
  color: var(--creator-paper) !important;
  text-shadow: 4px 4px 0 var(--creator-ink) !important;
}
/* 2026-07-09: final top visual edge-to-edge and centered controls. */
.phone-shell.sketch-lp .sketch-hero > .main-visual {
  justify-self: start !important;
  width: min(430px, 100vw) !important;
  max-width: min(430px, 100vw) !important;
  margin: -10px -20px -82px !important;
  overflow: hidden !important;
}

.phone-shell.sketch-lp .sketch-hero > .main-visual img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: min(430px, calc(100vw + 20px)) !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.phone-shell.sketch-lp .hero-subcopy,
.phone-shell.sketch-lp .hero-lp-switch,
.phone-shell.sketch-lp .sketch-hero > .compact-buttons,
.phone-shell.sketch-lp .sketch-hero > .compact-buttons .hero-register-button {
  justify-self: center !important;
  text-align: center !important;
}

.phone-shell.sketch-lp .hero-subcopy {
  width: min(calc(100% - 44px), 344px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
}

.phone-shell.sketch-lp .hero-lp-switch {
  width: min(calc(100% - 68px), 304px) !important;
  margin: 10px auto 8px !important;
  place-items: center !important;
  text-align: center !important;
}

.phone-shell.sketch-lp .sketch-hero > .compact-buttons {
  width: min(calc(100% - 68px), 330px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  place-items: center !important;
}

/* 2026-07-09: keep top controls centered after the edge-to-edge visual. */
.phone-shell.sketch-lp .sketch-hero {
  grid-template-columns: minmax(0, 1fr) !important;
  justify-items: center !important;
}

.phone-shell.sketch-lp .sketch-hero > .main-visual {
  justify-self: start !important;
}

.phone-shell.sketch-lp .sketch-hero > .compact-buttons {
  transform: none !important;
}

/* 2026-07-09: Coeshi brand name with small kana reading. */
.brand-with-kana {
  display: inline-grid !important;
  width: auto !important;
  height: auto !important;
  place-items: center !important;
  gap: 0 !important;
  color: inherit !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  line-height: 0.9 !important;
  letter-spacing: 0.01em !important;
  vertical-align: middle !important;
}

.brand-with-kana small {
  display: block !important;
  margin-top: 0.16em !important;
  color: inherit !important;
  font-size: 0.28em !important;
  font-weight: 950 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
}

.logo-brand .brand-with-kana {
  font-size: 1em !important;
}

.logo-brand .brand-with-kana small {
  font-size: 0.38em !important;
}

.hero-temp-logo .brand-with-kana small,
.desktop-brand-logo .brand-with-kana small {
  font-size: 0.24em !important;
  letter-spacing: 0.12em !important;
}

.sketch-section h2 .brand-with-kana small,
.desktop-section-nav .brand-with-kana small {
  font-size: 0.34em !important;
}

/* 2026-07-09: shared hero copy with kana under Koe/Eshi. */
.sketch-hero .hero-copy-line-mix {
  display: inline-block !important;
  padding-bottom: 0.38em !important;
  margin-bottom: 0 !important;
}

.sketch-hero .hero-copy-line,
.sketch-hero .hero-copy-line * {
  writing-mode: horizontal-tb !important;
}

.sketch-hero .hero-copy-line > span,
.sketch-hero .hero-word-with-kana {
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  text-shadow: inherit !important;
}

.sketch-hero .hero-word-with-kana {
  position: relative !important;
  display: inline-block !important;
  line-height: inherit !important;
  vertical-align: baseline !important;
}

.sketch-hero .hero-word-with-kana small {
  position: absolute !important;
  top: calc(100% - 0.06em) !important;
  left: 50% !important;
  z-index: 3 !important;
  display: block !important;
  margin-top: 0 !important;
  color: inherit !important;
  font-family: inherit !important;
  font-size: 0.28em !important;
  font-weight: 950 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  text-shadow: 1px 1px 0 #ffe45c !important;
  transform: translateX(-50%) !important;
}

.sketch-hero .hero-copy-mark {
  display: inline-block !important;
  transform: translateY(-0.02em) rotate(-7deg) !important;
}

.sketch-hero .hero-copy-line > span:not(.hero-word-with-kana):not(.hero-copy-mark) {
  display: inline-block !important;
}

.sketch-hero .hero-copy-line > span::before,
.sketch-hero .hero-copy-line > span::after,
.sketch-hero .hero-word-with-kana::before,
.sketch-hero .hero-word-with-kana::after,
.sketch-hero .hero-copy-mark::before,
.sketch-hero .hero-copy-mark::after {
  content: none !important;
}

@media (max-width: 430px) {
  .sketch-hero .hero-brand-copy > .hero-copy-line {
    font-size: clamp(2.32rem, 11.2vw, 3.34rem) !important;
  }
}

/* 2026-07-09: make the shared hero copy one line without shadow. */
.sketch-hero .hero-brand-copy {
  display: flex !important;
  align-items: baseline !important;
  gap: 0.12em !important;
  width: max-content !important;
  max-width: 100% !important;
  text-shadow: none !important;
}

.sketch-hero .hero-brand-copy > .hero-copy-line {
  display: inline-block !important;
  width: auto !important;
  font-size: clamp(1.42rem, 6.8vw, 2.02rem) !important;
  line-height: 1.05 !important;
  text-shadow: none !important;
  white-space: nowrap !important;
}

.sketch-hero .hero-brand-copy > .hero-copy-line::before,
.sketch-hero .hero-brand-copy > .hero-copy-line::after {
  content: none !important;
}

.sketch-hero .hero-copy-line-create {
  padding-bottom: 0.38em !important;
}

.sketch-hero .hero-word-with-kana small {
  text-shadow: none !important;
}

/* 2026-07-09: align the Coeshi intro section with the top visual style. */
.sketch-lp .about-service {
  --about-base: var(--creator-base, #ff4fa3);
  --about-base-deep: var(--creator-base-deep, #d81778);
  --about-sub: var(--creator-sub, #ffe45c);
  --about-sub-deep: var(--creator-sub-deep, #f0b900);
  --about-ink: var(--creator-ink, #102a63);
  padding-top: 48px !important;
  padding-bottom: 52px !important;
  background: var(--about-base) !important;
}

.sketch-lp .about-service::after {
  display: none !important;
}

.sketch-lp .about-service > h2 {
  color: var(--about-sub) !important;
  font-size: clamp(1.65rem, 7.4vw, 2.28rem) !important;
  line-height: 1.18 !important;
  text-align: center !important;
}

.sketch-lp .about-service > h2 .brand-with-kana small {
  color: inherit !important;
}

.sketch-lp .about-lead {
  justify-self: center !important;
  width: min(calc(100% - 28px), 350px) !important;
  margin: 0 auto 24px !important;
  padding: 16px 16px 18px !important;
  color: var(--about-ink) !important;
  border: 4px solid var(--about-ink) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 7px 0 var(--about-ink) !important;
  font-size: clamp(1.08rem, 4.8vw, 1.36rem) !important;
  line-height: 1.55 !important;
  text-align: center !important;
}

.sketch-lp .about-lead .about-emphasis {
  display: inline-block !important;
  margin: 0 0.04em !important;
  padding: 0.03em 0.18em 0.08em !important;
  color: var(--about-ink) !important;
  border-radius: 10px !important;
  background: var(--about-sub) !important;
  font-size: 1.08em !important;
  line-height: 1.05 !important;
  transform: rotate(-1deg) !important;
}

.sketch-lp .about-lead .about-emphasis-wide {
  color: var(--about-sub) !important;
  background: var(--about-ink) !important;
  transform: rotate(1deg) !important;
}

.sketch-lp .about-flow {
  width: min(calc(100% - 28px), 354px) !important;
  margin: 0 auto !important;
  gap: 12px !important;
}

.sketch-lp .about-step {
  gap: 12px !important;
  padding: 18px 16px 16px !important;
  border: 4px solid var(--about-ink) !important;
  border-radius: 20px !important;
  background: var(--about-sub) !important;
  box-shadow: 0 8px 0 var(--about-ink) !important;
}

.sketch-lp .about-step:nth-of-type(2) {
  background: #ffffff !important;
}

.sketch-lp .about-step-image {
  display: block !important;
  width: min(88%, 292px) !important;
  max-height: 230px !important;
  object-fit: contain !important;
  filter: drop-shadow(0 7px 0 rgba(16, 42, 99, 0.12)) !important;
}

.sketch-lp .about-step p {
  width: 100% !important;
  color: var(--about-ink) !important;
  font-size: clamp(0.98rem, 4.1vw, 1.14rem) !important;
  font-weight: 950 !important;
  line-height: 1.42 !important;
}

.sketch-lp .about-arrow {
  width: 54px !important;
  height: 62px !important;
  margin: 0 !important;
  filter: drop-shadow(0 4px 0 var(--about-ink)) !important;
}

.sketch-lp .about-arrow-line {
  stroke: var(--about-sub) !important;
}

.sketch-lp .about-arrow-shadow {
  stroke: var(--about-ink) !important;
}

.sketch-lp .about-arrow-head {
  fill: var(--about-sub) !important;
}

/* 2026-07-09: use the supplied Coeshi image for the top logo. */
.sketch-hero .hero-temp-logo {
  display: block !important;
  width: min(96%, 390px) !important;
  margin: -8px auto -4px !important;
  padding: 0 !important;
  color: transparent !important;
  line-height: 0 !important;
  text-align: center !important;
}

.sketch-hero .hero-temp-logo img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  margin: 0 auto !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter:
    drop-shadow(0 0 0 #fff)
    drop-shadow(0 0 4px #fff)
    drop-shadow(0 0 8px #fff)
    drop-shadow(0 8px 0 rgba(16, 42, 99, 0.12)) !important;
}

/* 2026-07-09: brand polish for hero copy, switches, about section, and CTA colors. */
.sketch-hero .hero-brand-copy {
  gap: 0.02em !important;
}

.sketch-hero .hero-copy-line-mix {
  padding-bottom: 0.32em !important;
}

.sketch-hero .hero-copy-line-create {
  margin-left: -0.02em !important;
}

.sketch-hero .hero-word-koe {
  color: #168cff !important;
}

.sketch-hero .hero-word-eshi {
  color: #ff2f92 !important;
}

.sketch-hero .hero-copy-mark {
  color: #ffe45c !important;
  margin: 0 -0.02em !important;
  -webkit-text-stroke: 1px #102a63;
}

.phone-shell.sketch-lp .sketch-hero > .main-visual {
  margin-bottom: -30px !important;
}

.phone-shell.sketch-lp .hero-subcopy {
  margin-top: 22px !important;
}

.hero-lp-switch {
  position: relative !important;
  min-height: 48px !important;
  padding-left: 58px !important;
}

.hero-lp-switch::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 10px !important;
  width: 38px !important;
  height: 38px !important;
  border: 3px solid #102a63 !important;
  border-radius: 999px !important;
  background-color: #168cff !important;
  background-image: url("../images/icon-coe.png") !important;
  background-position: center !important;
  background-size: 76% !important;
  background-repeat: no-repeat !important;
  background-blend-mode: screen !important;
  box-shadow: 0 3px 0 #102a63 !important;
  transform: translateY(-50%) !important;
}

.hero-lp-switch-eshi::before,
.voice-lp .hero-lp-switch::before {
  background-color: #ff2f92 !important;
  background-image: url("../images/icon-eshi.png") !important;
}

.sketch-lp .about-service {
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 228, 92, 0.26) 0 3px, transparent 4px 100%),
    radial-gradient(circle at 82% 20%, rgba(22, 140, 255, 0.18) 0 3px, transparent 4px 100%),
    radial-gradient(circle at 24% 82%, rgba(255, 47, 146, 0.2) 0 3px, transparent 4px 100%),
    linear-gradient(28deg, transparent 0 42%, rgba(255, 255, 255, 0.13) 42% 43%, transparent 43% 100%),
    linear-gradient(150deg, transparent 0 62%, rgba(16, 42, 99, 0.14) 62% 63%, transparent 63% 100%),
    var(--about-base) !important;
}

.sketch-lp .about-lead {
  background: rgba(255, 228, 92, 0.92) !important;
}

.sketch-lp .about-step,
.sketch-lp .about-step:nth-of-type(2) {
  background: rgba(255, 228, 92, 0.94) !important;
}

.sketch-lp .about-step:nth-of-type(2) {
  background: rgba(255, 79, 163, 0.92) !important;
}

.sketch-lp .about-step:nth-of-type(2) p {
  color: #fff !important;
  text-shadow: 2px 2px 0 #102a63 !important;
}

.sketch-lp .about-step:nth-of-type(2) .about-step-image {
  background: rgba(255, 255, 255, 0.86) !important;
  border-radius: 12px !important;
}

.sketch-lp:not(.voice-lp) .entry-section,
.sketch-lp:not(.voice-lp) .entry-actions .button.primary {
  background: #ff4fa3 !important;
}

.sketch-lp .back-to-top {
  color: #102a63 !important;
  border: 4px solid #102a63 !important;
  background: #ffe45c !important;
  box-shadow: 0 6px 0 #102a63 !important;
}

/* 2026-07-09: remove white cards and unify CTA/entry treatment across both LPs. */
.phone-shell.sketch-lp .hero-subcopy {
  width: min(calc(100% - 42px), 360px) !important;
  padding: 0 !important;
  color: #fff !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-shadow:
    2px 2px 0 #102a63,
    -1px -1px 0 #102a63,
    1px -1px 0 #102a63,
    -1px 1px 0 #102a63 !important;
}

.button.primary,
.hero-register-button,
.entry-actions .button.primary {
  color: #102a63 !important;
  border: 0 !important;
  background: #ffe45c !important;
  box-shadow: 0 8px 0 #102a63, 0 18px 26px rgba(16, 42, 99, 0.22) !important;
}

.button.primary::before,
.button.primary::after,
.hero-register-button::before,
.hero-register-button::after {
  opacity: 0.42 !important;
}

.hero-lp-switch,
.desktop-lp-switch {
  overflow: visible !important;
  min-height: 48px !important;
  padding-left: 70px !important;
  border: 0 !important;
  background: #ffe45c !important;
  box-shadow: 0 7px 0 #102a63, 0 16px 22px rgba(16, 42, 99, 0.18) !important;
}

.hero-lp-switch::before,
.desktop-lp-switch::before {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: -12px !important;
  width: 58px !important;
  height: 58px !important;
  border: 4px solid #102a63 !important;
  border-radius: 999px !important;
  background-color: #168cff !important;
  background-image: url("../images/icon-coe.png") !important;
  background-position: center !important;
  background-size: 74% !important;
  background-repeat: no-repeat !important;
  background-blend-mode: screen !important;
  box-shadow: 0 5px 0 #102a63 !important;
  transform: translateY(-50%) !important;
}

.hero-lp-switch-eshi::before,
.desktop-lp-switch-right::before,
.voice-lp .hero-lp-switch::before {
  background-color: #ff2f92 !important;
  background-image: url("../images/icon-eshi.png") !important;
}

@media (min-width: 1180px) {
  .desktop-lp-switch {
    position: fixed !important;
    padding: 16px 22px 16px 74px !important;
  }

  .desktop-lp-switch::before {
    left: -18px !important;
    width: 68px !important;
    height: 68px !important;
  }
}

.about-lead,
.about-step,
.point-visual,
.entry-card,
.entry-reward,
.faq-section details,
.worry-bubble,
.points-closing {
  border-color: #102a63 !important;
  background: #ffe45c !important;
  box-shadow: 0 8px 0 #102a63 !important;
}

.point-card:nth-child(2) .point-visual,
.entry-card,
.faq-section details:nth-of-type(even) {
  background: #ff4fa3 !important;
}

.point-card:nth-child(3) .point-visual,
.entry-reward,
.faq-section details:nth-of-type(odd) {
  background: #168cff !important;
}

.entry-card,
.entry-card strong,
.entry-card li,
.entry-reward,
.entry-reward strong,
.entry-reward p,
.faq-section details:nth-of-type(odd),
.faq-section details:nth-of-type(odd) summary,
.faq-section details:nth-of-type(odd) p {
  color: #fff !important;
  text-shadow: 2px 2px 0 #102a63 !important;
}

.entry-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.3), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(255, 47, 146, 0.2), transparent 24%),
    linear-gradient(180deg, #ffe45c 0%, #ffc326 48%, #ff9d16 100%) !important;
}

.entry-heading h2 {
  color: #102a63 !important;
  text-shadow: 3px 3px 0 #fff, 5px 5px 0 #ff4fa3 !important;
}

.entry-heading p:not(.section-kicker) {
  color: #102a63 !important;
  font-weight: 950 !important;
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.74) !important;
}

.entry-actions .button.secondary {
  color: #102a63 !important;
  border: 0 !important;
  background: #ff4fa3 !important;
  box-shadow: 0 7px 0 #102a63 !important;
}

.back-to-top {
  color: #102a63 !important;
  border: 0 !important;
  background: #ffe45c !important;
  box-shadow: 0 6px 0 #102a63, 0 14px 22px rgba(16, 42, 99, 0.24) !important;
}

/* 2026-07-09: final cleanup for no-white-card top/entry layout. */
.phone-shell.sketch-lp .sketch-hero > .main-visual {
  margin-bottom: 18px !important;
}

.phone-shell.sketch-lp .hero-subcopy {
  position: relative !important;
  z-index: 4 !important;
  margin-top: 0 !important;
}

.phone-shell.sketch-lp .entry-heading h2,
.phone-shell.sketch-lp .entry-heading > p {
  color: #102a63 !important;
  text-shadow: 3px 3px 0 rgba(255, 255, 255, 0.88) !important;
}

.phone-shell.sketch-lp .entry-card,
.phone-shell.sketch-lp .entry-reward {
  color: #102a63 !important;
  border: 4px solid #102a63 !important;
  background: #ffe45c !important;
  box-shadow: 0 8px 0 #102a63 !important;
  text-shadow: none !important;
}

.phone-shell.sketch-lp .entry-card {
  background: #ff4fa3 !important;
}

.phone-shell.sketch-lp .entry-card strong,
.phone-shell.sketch-lp .entry-card li {
  color: #fff !important;
  text-shadow: 2px 2px 0 #102a63 !important;
}

.phone-shell.sketch-lp .entry-reward span,
.phone-shell.sketch-lp .entry-reward strong,
.phone-shell.sketch-lp .entry-reward p {
  color: #102a63 !important;
  text-shadow: none !important;
}

.entry-actions .button.secondary,
.entry-actions .button.secondary:visited {
  color: #fff !important;
  text-shadow: 2px 2px 0 #102a63 !important;
}

.sketch-lp .about-step:nth-of-type(2) .about-step-image {
  background: transparent !important;
}

.entry-actions .button.primary {
  background: #ffe45c !important;
}

/* 2026-07-09: shared gold contest area for both LP variants. */
.phone-shell.sketch-lp .entry-section {
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.36), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(255, 79, 163, 0.22), transparent 24%),
    linear-gradient(180deg, #ffe45c 0%, #ffc326 50%, #ff9d16 100%) !important;
}

.phone-shell.sketch-lp .entry-heading h2,
.phone-shell.sketch-lp .entry-heading > p {
  color: #102a63 !important;
  text-shadow:
    3px 3px 0 rgba(255, 255, 255, 0.9),
    5px 5px 0 rgba(255, 79, 163, 0.34) !important;
}

.phone-shell.sketch-lp .entry-actions .button.primary,
.phone-shell.sketch-lp .entry-actions .button.secondary {
  border: 0 !important;
  box-shadow: 0 8px 0 #102a63, 0 18px 26px rgba(16, 42, 99, 0.22) !important;
}

/* 2026-07-09: artist LP focused polish pass. */
.phone-shell.sketch-lp:not(.voice-lp) .hero-register-button {
  color: #102a63 !important;
  border: 4px solid #102a63 !important;
  background: #ffe45c !important;
  box-shadow: 0 8px 0 #102a63, 0 16px 22px rgba(16, 42, 99, 0.22) !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .hero-register-button::before,
.phone-shell.sketch-lp:not(.voice-lp) .hero-register-button::after {
  display: none !important;
  content: none !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .hero-lp-switch,
.desktop-lp-switch-left {
  color: #fff !important;
  background: #6b2cff !important;
  box-shadow: 0 7px 0 #3d168f, 0 16px 22px rgba(61, 22, 143, 0.22) !important;
  text-shadow: 1px 1px 0 #3d168f !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .hero-lp-switch::before,
.desktop-lp-switch-left::before {
  background-color: #6b2cff !important;
  box-shadow: 0 5px 0 #3d168f !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .about-service {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 228, 92, 0.32) 0 3px, transparent 4px 100%),
    radial-gradient(circle at 86% 24%, rgba(22, 140, 255, 0.22) 0 3px, transparent 4px 100%),
    radial-gradient(circle at 24% 84%, rgba(255, 47, 146, 0.26) 0 3px, transparent 4px 100%),
    #ff4fa3 !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .about-lead {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .about-step,
.phone-shell.sketch-lp:not(.voice-lp) .about-step:nth-of-type(2) {
  color: #102a63 !important;
  border: 4px solid #102a63 !important;
  background: #ffe45c !important;
  box-shadow: 0 8px 0 #102a63 !important;
  text-shadow: none !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .about-step p,
.phone-shell.sketch-lp:not(.voice-lp) .about-step:nth-of-type(2) p {
  color: #102a63 !important;
  text-shadow: none !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .points-section {
  padding-top: 62px !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .points-section > h2 {
  color: #ffe45c !important;
  font-size: clamp(2.05rem, 10vw, 2.85rem) !important;
  line-height: 0.96 !important;
  text-shadow: 3px 3px 0 #102a63 !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .point-title-bar h3 {
  font-size: clamp(1.8rem, 8.4vw, 2.35rem) !important;
  line-height: 1.08 !important;
  max-width: 10.8em !important;
  margin-inline: auto !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .point-title-bar {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  gap: 14px !important;
  text-align: center !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .point-title-bar span {
  justify-self: start !important;
  margin-left: 14px !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .point-visual {
  border: 0 !important;
  background: transparent !important;
  box-shadow:
    0 16px 34px rgba(255, 255, 255, 0.44),
    0 12px 26px rgba(16, 42, 99, 0.22) !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .mock-iframe-shell {
  border: 0 !important;
  background: rgba(255, 255, 255, 0.24) !important;
  box-shadow: 0 18px 34px rgba(255, 255, 255, 0.34) !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .entry-heading h2 {
  color: #102a63 !important;
  font-size: clamp(3rem, 14.5vw, 4.05rem) !important;
  line-height: 0.9 !important;
  letter-spacing: 0 !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  text-shadow:
    3px 3px 0 #fff,
    6px 6px 0 rgba(255, 79, 163, 0.48) !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .entry-subheading {
  margin: 18px auto 14px !important;
  color: #102a63 !important;
  font-size: clamp(1.18rem, 5.2vw, 1.55rem) !important;
  line-height: 1.25 !important;
  font-weight: 950 !important;
  text-shadow: none !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .entry-heading > p:not(.entry-subheading) {
  color: #102a63 !important;
  text-shadow: none !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .entry-reward {
  color: #102a63 !important;
  background: #ffe45c !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .entry-reward span {
  display: inline-grid !important;
  min-width: 96px !important;
  margin: 0 auto 10px !important;
  padding: 7px 16px !important;
  place-items: center !important;
  color: #fff !important;
  border-radius: 999px !important;
  background: #ff2f92 !important;
  text-shadow: 1px 1px 0 #102a63 !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .entry-card,
.phone-shell.sketch-lp:not(.voice-lp) .entry-card strong,
.phone-shell.sketch-lp:not(.voice-lp) .entry-card li {
  color: #102a63 !important;
  text-shadow: none !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .entry-card {
  background: #ffe45c !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .entry-card li {
  padding: 9px 0 9px 28px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .entry-actions .button.secondary {
  color: #102a63 !important;
  background: #ffe45c !important;
  text-shadow: none !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .entry-actions .button.primary,
.phone-shell.sketch-lp:not(.voice-lp) .entry-actions .button.primary:visited {
  color: #fff !important;
  background: #ff2f92 !important;
  text-shadow: 1px 1px 0 #102a63 !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .faq-section details:nth-of-type(odd),
.phone-shell.sketch-lp:not(.voice-lp) .faq-section details:nth-of-type(odd) summary,
.phone-shell.sketch-lp:not(.voice-lp) .faq-section details:nth-of-type(odd) p {
  text-shadow: none !important;
}

/* 2026-07-10: nav polish and desktop menu logo treatment. */
.phone-shell.sketch-lp .sketch-nav {
  position: relative !important;
  z-index: 220 !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: start !important;
}

.phone-shell.sketch-lp .logo-brand {
  position: relative !important;
  z-index: 221 !important;
  min-width: 0 !important;
}

.phone-shell.sketch-lp .hamburger-button {
  position: relative !important;
  z-index: 240 !important;
  width: 52px !important;
  height: 46px !important;
  border: 3px solid #102a63 !important;
  border-radius: 16px !important;
  background: #ffe45c !important;
  box-shadow: 0 5px 0 #102a63 !important;
  transform: rotate(2deg) !important;
}

.phone-shell.sketch-lp .hamburger-button span {
  width: 27px !important;
  height: 4px !important;
  background: #102a63 !important;
}

.phone-shell.sketch-lp .hamburger-button span:nth-child(2) {
  background: #168cff !important;
}

.phone-shell.sketch-lp .hamburger-button span:nth-child(3) {
  background: #ff2f92 !important;
}

.phone-shell.sketch-lp .nav-pills {
  z-index: 235 !important;
  top: 62px !important;
  right: 0 !important;
  min-width: 178px !important;
  border: 4px solid #102a63 !important;
  border-radius: 18px !important;
  background: #ffe45c !important;
  box-shadow: 0 8px 0 #102a63, 0 18px 30px rgba(16, 42, 99, 0.22) !important;
}

.phone-shell.sketch-lp .nav-pills a {
  min-height: 42px !important;
  color: #102a63 !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: #fff !important;
  font-size: 0.82rem !important;
  text-shadow: none !important;
}

.phone-shell.sketch-lp .nav-pills a:nth-child(even) {
  background: #ff4fa3 !important;
  color: #fff !important;
}

@media (min-width: 1180px) {
  .desktop-section-nav .desktop-menu-logo {
    display: block !important;
    width: min(100%, 230px) !important;
    min-height: 0 !important;
    margin: 0 0 16px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
  }

  .desktop-section-nav .desktop-menu-logo img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    transition: transform 0.2s ease !important;
    filter:
      drop-shadow(0 0 4px #fff)
      drop-shadow(0 6px 0 rgba(16, 42, 99, 0.18)) !important;
  }

  .desktop-section-nav .desktop-menu-logo:hover img,
  .desktop-section-nav .desktop-menu-logo:focus-visible img {
    transform: translateY(-2px) scale(1.02);
  }

  .desktop-section-nav .desktop-menu-logo:focus-visible {
    outline: 3px solid #ffe45c !important;
    outline-offset: 5px !important;
  }

  .desktop-section-nav a {
    grid-template-columns: auto minmax(0, 1fr) !important;
  }

  .desktop-section-nav a::after {
    content: none !important;
  }
}

/* Scroll-aware mobile home logo. */
.mobile-home-logo {
  position: fixed;
  top: 14px;
  left: max(12px, calc(50% - 203px));
  z-index: 310;
  display: flex;
  width: 98px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border: 3px solid #102a63;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 5px 0 #102a63, 0 10px 22px rgba(16, 42, 99, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) scale(0.92);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.mobile-home-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.mobile-home-logo.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mobile-home-logo:focus-visible {
  outline: 3px solid #ffe45c;
  outline-offset: 3px;
}

@media (min-width: 1180px) {
  .mobile-home-logo {
    display: none;
  }
}

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

  .mobile-home-logo,
  .desktop-section-nav .desktop-menu-logo img {
    transition: none !important;
  }
}

/* 2026-07-10: simplify top menu and remove side floating ornaments. */
.phone-shell.sketch-lp .sketch-nav {
  grid-template-columns: minmax(0, 1fr) auto !important;
  min-height: 52px !important;
}

.phone-shell.sketch-lp .hamburger-button {
  grid-column: 2 !important;
  justify-self: end !important;
  width: 54px !important;
  height: 44px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.phone-shell.sketch-lp .hamburger-button span,
.phone-shell.sketch-lp .hamburger-button span:nth-child(2),
.phone-shell.sketch-lp .hamburger-button span:nth-child(3) {
  width: 34px !important;
  height: 6px !important;
  background: #ffe45c !important;
  box-shadow: 2px 2px 0 #ff4fa3 !important;
}

.phone-shell.sketch-lp .nav-pills {
  top: 56px !important;
  right: 0 !important;
  width: min(260px, calc(100vw - 58px)) !important;
  padding: 12px !important;
  border: 0 !important;
  background: #ffe45c !important;
  box-shadow: 0 8px 0 #ff4fa3, 0 18px 30px rgba(255, 79, 163, 0.25) !important;
}

.phone-shell.sketch-lp .nav-pills a,
.phone-shell.sketch-lp .nav-pills a:nth-child(even) {
  color: #fff !important;
  background: #ff4fa3 !important;
  box-shadow: none !important;
}

@media (min-width: 1180px) {
  .desktop-brand-copy,
  .contest-float {
    display: none !important;
  }

  .desktop-lp-switch {
    top: 88px !important;
  }

  .desktop-lp-switch-left {
    right: auto !important;
    left: 34px !important;
  }

  .desktop-lp-switch-right {
    right: 34px !important;
    left: auto !important;
  }
}

/* 2026-07-10: hero/menu/entry final alignment. */
.sketch-hero .hero-brand-copy {
  justify-content: center !important;
  margin-inline: auto !important;
  text-align: center !important;
}

.sketch-hero .hero-copy-line-create {
  margin-left: 0 !important;
}

.phone-shell.sketch-lp .hero-lp-switch {
  width: min(calc(100% - 68px), 326px) !important;
  padding-right: 20px !important;
  white-space: nowrap !important;
}

.phone-shell.sketch-lp .hero-lp-switch strong {
  font-size: clamp(0.88rem, 4.2vw, 1rem) !important;
  white-space: nowrap !important;
}

.phone-shell.sketch-lp .hamburger-button {
  position: absolute !important;
  top: 18px !important;
  right: 18px !important;
  width: 44px !important;
  height: 34px !important;
  z-index: 260 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  appearance: none !important;
}

.phone-shell.sketch-lp .hamburger-button span,
.phone-shell.sketch-lp .hamburger-button span:nth-child(2),
.phone-shell.sketch-lp .hamburger-button span:nth-child(3) {
  width: 32px !important;
  height: 6px !important;
  border-radius: 999px !important;
  background: #ffe45c !important;
  box-shadow: none !important;
}

.phone-shell.sketch-lp .hamburger-button::before,
.phone-shell.sketch-lp .hamburger-button::after {
  content: none !important;
  display: none !important;
}

.phone-shell.sketch-lp .nav-pills {
  top: 58px !important;
  right: 18px !important;
}

.phone-shell.sketch-lp .entry-benefits {
  display: grid !important;
  gap: 16px !important;
  padding: 18px !important;
  color: #102a63 !important;
  border: 4px solid #102a63 !important;
  border-radius: 18px !important;
  background: #ffe45c !important;
  box-shadow: 0 8px 0 #102a63 !important;
}

.phone-shell.sketch-lp .entry-benefits .entry-reward,
.phone-shell.sketch-lp .entry-benefits .entry-card {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.phone-shell.sketch-lp .entry-benefits .entry-reward {
  display: grid !important;
  gap: 8px !important;
  text-align: center !important;
}

.phone-shell.sketch-lp .entry-benefits .entry-reward span {
  width: fit-content !important;
  margin-inline: auto !important;
}

.phone-shell.sketch-lp .entry-benefits .entry-reward strong {
  display: block !important;
  color: #102a63 !important;
  font-size: clamp(1.5rem, 7vw, 2.2rem) !important;
  line-height: 1.05 !important;
  text-shadow: 2px 2px 0 #fff, 4px 4px 0 #ff4fa3 !important;
}

.phone-shell.sketch-lp .entry-benefits .entry-card strong {
  display: block !important;
  margin: 4px 0 10px !important;
  text-align: center !important;
}

.phone-shell.sketch-lp .entry-benefits .entry-card ul {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.phone-shell.sketch-lp .entry-benefits .entry-card li {
  position: relative !important;
  display: block !important;
  min-height: 26px !important;
  padding: 4px 0 4px 30px !important;
  line-height: 1.45 !important;
}

.phone-shell.sketch-lp .entry-benefits .entry-card li::before {
  position: absolute !important;
  top: 0.72em !important;
  left: 3px !important;
  width: 14px !important;
  height: 14px !important;
  border: 3px solid #168cff !important;
  border-radius: 999px !important;
  background: #fff !important;
  box-shadow: none !important;
  transform: translateY(-50%) !important;
}

/* 2026-07-10: hamburger is only three lines, no button surface. */
.phone-shell.sketch-lp .hamburger-button {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: center !important;
  gap: 6px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.phone-shell.sketch-lp .hamburger-button span,
.phone-shell.sketch-lp .hamburger-button span:nth-child(2),
.phone-shell.sketch-lp .hamburger-button span:nth-child(3) {
  display: block !important;
  flex: 0 0 auto !important;
  width: 34px !important;
  height: 6px !important;
  background: #ffe45c !important;
  box-shadow: none !important;
}

/* 2026-07-10: new shared hero copy. */
.sketch-hero .top-copy-text.hero-title-logo {
  width: min(calc(100% - 28px), 390px) !important;
  margin: 10px auto 6px !important;
  text-align: center !important;
}

.sketch-hero .hero-new-copy,
.sketch-hero .hero-new-copy span {
  all: unset;
  box-sizing: border-box;
}

.sketch-hero .hero-new-copy {
  display: grid !important;
  gap: 4px !important;
  width: min(calc(100% - 28px), 388px) !important;
  margin-inline: auto !important;
  color: #ffe45c !important;
  font-family: "Arial Black", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif !important;
  font-size: clamp(1.24rem, 5.6vw, 1.82rem) !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
  line-height: 1.08 !important;
  text-align: center !important;
  text-shadow: none !important;
}

.sketch-hero .hero-new-copy span {
  display: block !important;
  width: 100% !important;
  white-space: nowrap !important;
}

.sketch-hero .hero-new-copy em {
  all: unset;
  display: inline !important;
  font: inherit !important;
  color: inherit !important;
  text-shadow: none !important;
}

.sketch-hero .hero-new-copy .hero-word-voice {
  color: inherit !important;
}

.sketch-hero .hero-new-copy .hero-word-draw {
  color: inherit !important;
}

.sketch-hero .hero-service-subtitle {
  width: min(calc(100% - 44px), 330px) !important;
  margin: -6px auto 0 !important;
  padding: 7px 10px !important;
  color: #102a63 !important;
  border-radius: 999px !important;
  background: #ffe45c !important;
  font-size: clamp(0.78rem, 3.25vw, 0.94rem) !important;
  font-weight: 950 !important;
  line-height: 1.25 !important;
  text-align: center !important;
  text-shadow: none !important;
}

.sketch-hero .hero-temp-logo {
  margin-bottom: 0 !important;
}

/* 2026-07-10: desktop shell should sit square against the viewport top, like the reference. */
@media (min-width: 431px) {
  body {
    padding: 0 0 32px !important;
  }

  .phone-shell {
    border-radius: 0 !important;
  }
}

/* 2026-07-10: top lift, centered copy, cleaner emphasis bars, and no circular ornaments. */
.sketch-hero {
  padding-top: 8px !important;
  gap: 8px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,250,255,0.94)) !important;
}

.phone-shell.sketch-lp .sketch-nav {
  min-height: 42px !important;
  margin-top: -4px !important;
}

.phone-shell.sketch-lp .hamburger-button {
  margin-top: -4px !important;
}

.sketch-hero-copy {
  justify-items: center !important;
  width: 100% !important;
  margin-top: -10px !important;
  text-align: center !important;
}

.sketch-hero .top-copy-text.hero-title-logo {
  width: 100% !important;
  max-width: 100% !important;
  margin: -4px auto 2px !important;
  text-align: center !important;
}

.sketch-hero .hero-new-copy {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
  place-items: center !important;
  font-size: clamp(1.34rem, 6.05vw, 1.96rem) !important;
  text-align: center !important;
}

.sketch-hero .hero-new-copy span {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
}

.sketch-hero .hero-temp-logo {
  margin-top: -6px !important;
}

.phone-shell.sketch-lp .sketch-hero > .main-visual {
  margin-top: -18px !important;
  margin-bottom: -92px !important;
}

.phone-shell.sketch-lp .hero-subcopy {
  width: min(calc(100% - 28px), 372px) !important;
  margin-top: -2px !important;
  font-size: clamp(1.02rem, 4.55vw, 1.28rem) !important;
  line-height: 1.48 !important;
  text-align: center !important;
}

.sketch-lp .about-service > h2,
.sketch-lp .points-section > h2 {
  font-size: clamp(1.65rem, 7.4vw, 2.28rem) !important;
  line-height: 1.18 !important;
}

.sketch-lp .about-service > h2 .brand-with-kana,
.sketch-lp .points-section > h2 .brand-with-kana {
  font-size: 1em !important;
  line-height: 0.92 !important;
  vertical-align: -0.05em !important;
}

.sketch-lp .about-service > h2 .brand-with-kana small,
.sketch-lp .points-section > h2 .brand-with-kana small {
  font-size: 0.38em !important;
  line-height: 1 !important;
}

.sketch-lp .about-lead .about-emphasis,
.sketch-lp .about-lead .about-emphasis-wide {
  padding: 0.04em 0.2em 0.08em !important;
  border-radius: 8px !important;
  transform: none !important;
}

.phone-shell.sketch-lp .entry-benefits .entry-reward span {
  min-width: 86px !important;
  padding: 8px 18px !important;
  font-size: clamp(1.02rem, 4.8vw, 1.26rem) !important;
  text-align: center !important;
}

.phone-shell.sketch-lp .entry-benefits .entry-reward strong {
  font-size: clamp(1.62rem, 7.6vw, 2.34rem) !important;
}

.about-service,
.points-section,
.entry-section,
.faq-section {
  background-image: none !important;
}

@media (min-width: 1180px) {
  .desktop-lp-switch {
    width: clamp(168px, 14vw, 216px) !important;
    padding-right: 18px !important;
    line-height: 1.16 !important;
  }

  .desktop-lp-switch strong {
    font-size: clamp(0.92rem, 1.05vw, 1.12rem) !important;
  }
}

/* 2026-07-10: tighten hero centering and lock desktop switch labels to two lines. */
.phone-shell.sketch-lp .sketch-hero {
  justify-items: center !important;
}

.phone-shell.sketch-lp .sketch-nav,
.phone-shell.sketch-lp .sketch-hero-copy,
.phone-shell.sketch-lp .hero-new-copy,
.phone-shell.sketch-lp .hero-temp-logo,
.phone-shell.sketch-lp .hero-service-subtitle,
.phone-shell.sketch-lp .hero-subcopy,
.phone-shell.sketch-lp .hero-lp-switch,
.phone-shell.sketch-lp .sketch-hero > .compact-buttons {
  justify-self: center !important;
  transform: none !important;
}

.phone-shell.sketch-lp .sketch-hero > .main-visual {
  width: calc(100% + 40px) !important;
  max-width: none !important;
  margin-right: -20px !important;
  margin-left: -20px !important;
}

.phone-shell.sketch-lp .about-lead .about-emphasis,
.phone-shell.sketch-lp .about-lead .about-emphasis-wide {
  transform: none !important;
}

.phone-shell.sketch-lp .points-section > h2 .brand-with-kana {
  font-size: 1.14em !important;
}

@media (min-width: 1180px) {
  .desktop-lp-switch {
    width: clamp(190px, 15vw, 240px) !important;
  }

  .desktop-lp-switch strong {
    white-space: nowrap !important;
  }
}

/* 2026-07-10: adjust only the text/logo cluster, without moving the visual or buttons. */
.phone-shell.sketch-lp .sketch-hero > .sketch-hero-copy {
  width: min(100%, 390px) !important;
  transform: translateX(-16px) !important;
}

.phone-shell.sketch-lp.voice-lp .sketch-hero > .sketch-hero-copy {
  transform: translateX(-26px) !important;
}

/* 2026-07-10: align illustrator top controls to the voice LP and normalize point headings. */
.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .main-visual {
  justify-self: start !important;
  width: min(430px, 100vw) !important;
  max-width: min(430px, 100vw) !important;
  margin: -10px -20px 18px !important;
  overflow: hidden !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .main-visual img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: min(430px, calc(100vw + 20px)) !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .hero-subcopy {
  width: min(calc(100% - 44px), 344px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .hero-lp-switch {
  width: min(calc(100% - 68px), 304px) !important;
  margin: 10px auto 8px !important;
  place-items: center !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .compact-buttons {
  width: min(calc(100% - 68px), 330px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  place-items: center !important;
}

.phone-shell.sketch-lp .points-section > h2 {
  color: #ffe45c !important;
  font-size: clamp(1.65rem, 7.4vw, 2.28rem) !important;
  line-height: 1.18 !important;
  text-shadow: 3px 3px 0 #102a63 !important;
}

.phone-shell.sketch-lp .points-section > h2 .brand-with-kana {
  font-size: 1em !important;
  line-height: 0.92 !important;
}

.phone-shell.sketch-lp .entry-benefits .entry-reward strong {
  white-space: nowrap !important;
  font-size: clamp(1.36rem, 6.2vw, 1.92rem) !important;
}

/* 2026-07-10: copy/video polish pass. Keep the current layout, only refine requested details. */
.phone-shell.sketch-lp .hero-new-copy {
  font-weight: 900 !important;
}

.phone-shell.sketch-lp .sketch-hero > .sketch-hero-copy {
  left: auto !important;
  right: auto !important;
  margin-right: auto !important;
  margin-left: auto !important;
  transform: none !important;
}

.phone-shell.sketch-lp.voice-lp .sketch-hero > .sketch-hero-copy {
  transform: none !important;
}

.phone-shell.sketch-lp .hero-new-copy {
  box-sizing: border-box !important;
  width: min(100%, 390px) !important;
  padding-right: 8px !important;
  padding-left: 8px !important;
  overflow: visible !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .hero-subcopy {
  box-sizing: border-box !important;
  width: min(calc(100% - 58px), 330px) !important;
  max-width: calc(100% - 58px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  overflow: visible !important;
  text-align: center !important;
}

.phone-shell.sketch-lp .about-service,
.phone-shell.sketch-lp .points-section,
.phone-shell.sketch-lp .point-card,
.phone-shell.sketch-lp .entry-section,
.phone-shell.sketch-lp .faq-section {
  background-image: none !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .about-service,
.phone-shell.sketch-lp:not(.voice-lp) .points-section,
.phone-shell.sketch-lp:not(.voice-lp) .point-card {
  background-color: #168cff !important;
}

.phone-shell.sketch-lp .entry-section {
  background: linear-gradient(180deg, #ffe45c 0%, #ffc326 52%, #ff9d16 100%) !important;
}

.phone-shell.sketch-lp .about-service > h2,
.phone-shell.sketch-lp .points-section > h2,
.phone-shell.sketch-lp .points-closing {
  color: #ffe45c !important;
  font-size: clamp(1.65rem, 7.4vw, 2.28rem) !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
  text-shadow: 3px 3px 0 #102a63 !important;
}

.phone-shell.sketch-lp .about-service > h2 .brand-with-kana,
.phone-shell.sketch-lp .points-section > h2 .brand-with-kana {
  font-size: 1em !important;
  line-height: 0.92 !important;
}

.phone-shell.sketch-lp .about-service > h2 .brand-with-kana small,
.phone-shell.sketch-lp .points-section > h2 .brand-with-kana small {
  font-size: 0.38em !important;
  line-height: 1 !important;
}

.phone-shell.sketch-lp .about-video-slot {
  width: min(calc(100% - 44px), 338px);
  margin: 22px auto 30px;
  padding: 22px 18px 24px;
  border: 4px solid #102a63;
  border-radius: 20px;
  color: #102a63;
  background: #ffe45c;
  box-shadow: 8px 8px 0 rgba(16, 42, 99, 0.22);
  text-align: center;
}

.phone-shell.sketch-lp .about-video-slot span,
.phone-shell.sketch-lp .about-video-slot strong {
  display: block;
}

.phone-shell.sketch-lp .about-video-slot span {
  font-size: clamp(0.94rem, 4.2vw, 1.08rem);
  font-weight: 900;
}

.phone-shell.sketch-lp .about-video-slot strong {
  margin-top: 4px;
  font-size: clamp(1.7rem, 8vw, 2.34rem);
  font-weight: 950;
  line-height: 1;
}

.phone-shell.sketch-lp .about-video-slot[hidden],
.phone-shell.sketch-lp .about-service.is-video-hidden .about-video-slot {
  display: none !important;
}

.phone-shell.sketch-lp .point-copy p {
  font-size: clamp(1.05rem, 4.7vw, 1.3rem) !important;
  line-height: 1.6 !important;
}

.phone-shell.sketch-lp .point-emphasis-yellow {
  color: #ffe45c !important;
  background: transparent !important;
  text-shadow: none !important;
}

.phone-shell.sketch-lp .point-emphasis-navy {
  color: #102a63 !important;
  background: transparent !important;
  text-shadow: none !important;
}

.phone-shell.sketch-lp .entry-heading h2 {
  line-height: 1.06 !important;
}

/* 2026-07-10: final hero copy centering and lighter visual weight. */
.phone-shell.sketch-lp .sketch-hero-copy {
  display: grid !important;
  justify-items: center !important;
  align-items: start !important;
  justify-self: center !important;
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  transform: none !important;
  text-align: center !important;
}

.phone-shell.sketch-lp .top-copy-text.hero-title-logo {
  display: block !important;
  justify-self: center !important;
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 12px !important;
  padding-left: 12px !important;
  text-align: center !important;
  transform: none !important;
}

.phone-shell.sketch-lp .hero-new-copy {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  justify-self: center !important;
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif !important;
  font-weight: 800 !important;
  text-align: center !important;
  transform: none !important;
}

.phone-shell.sketch-lp .hero-new-copy > span {
  display: block !important;
  width: auto !important;
  max-width: 100% !important;
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
  white-space: nowrap !important;
}

/* 2026-07-10: force all top UI except the edge-to-edge visual into one centered lane. */
.phone-shell.sketch-lp .sketch-hero {
  grid-template-columns: minmax(0, 1fr) !important;
  justify-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  overflow-x: hidden !important;
}

.phone-shell.sketch-lp .sketch-hero-copy,
.phone-shell.sketch-lp .hero-subcopy,
.phone-shell.sketch-lp .hero-lp-switch,
.phone-shell.sketch-lp .sketch-hero > .compact-buttons {
  grid-column: 1 / -1 !important;
  justify-self: center !important;
  box-sizing: border-box !important;
  max-width: calc(100% - 40px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  transform: none !important;
}

.phone-shell.sketch-lp .sketch-hero-copy {
  width: min(calc(100% - 16px), 414px) !important;
}

.phone-shell.sketch-lp .top-copy-text.hero-title-logo,
.phone-shell.sketch-lp .hero-new-copy,
.phone-shell.sketch-lp .hero-temp-logo,
.phone-shell.sketch-lp .hero-service-subtitle {
  justify-self: center !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-right: auto !important;
  margin-left: auto !important;
  text-align: center !important;
  transform: none !important;
}

.phone-shell.sketch-lp .hero-new-copy {
  font-size: clamp(1.05rem, 4.65vw, 1.56rem) !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
}

.phone-shell.sketch-lp .hero-temp-logo img {
  display: block !important;
  width: min(100%, 330px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

.phone-shell.sketch-lp .hero-service-subtitle {
  width: min(100%, 330px) !important;
}

.phone-shell.sketch-lp .hero-subcopy {
  width: min(calc(100% - 58px), 330px) !important;
  overflow: visible !important;
  text-align: center !important;
}

/* 2026-07-10: top order cleanup, section dot removal, and heading normalization. */
.phone-shell.sketch-lp .hero-temp-logo {
  order: 1 !important;
}

.phone-shell.sketch-lp .hero-service-subtitle {
  order: 2 !important;
  margin-top: -2px !important;
  margin-bottom: 10px !important;
}

.phone-shell.sketch-lp .top-copy-text.hero-title-logo {
  order: 3 !important;
  margin-top: 0 !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .hero-subcopy {
  width: min(calc(100% - 72px), 306px) !important;
  max-width: calc(100% - 72px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  font-size: clamp(1.05rem, 4.75vw, 1.3rem) !important;
  line-height: 1.48 !important;
  text-align: center !important;
  text-wrap: balance !important;
  word-break: keep-all !important;
}

.phone-shell.sketch-lp .about-service::before,
.phone-shell.sketch-lp .about-service::after,
.phone-shell.sketch-lp .points-section::before,
.phone-shell.sketch-lp .points-section::after,
.phone-shell.sketch-lp .entry-section::before,
.phone-shell.sketch-lp .entry-section::after {
  display: none !important;
  content: none !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .about-service,
.phone-shell.sketch-lp:not(.voice-lp) .points-section,
.phone-shell.sketch-lp:not(.voice-lp) .point-card {
  background: #ff4fa3 !important;
  background-image: none !important;
}

.phone-shell.sketch-lp .entry-section {
  background: linear-gradient(180deg, #ffe45c 0%, #ffc326 52%, #ff9d16 100%) !important;
  background-image: linear-gradient(180deg, #ffe45c 0%, #ffc326 52%, #ff9d16 100%) !important;
}

.phone-shell.sketch-lp .about-service > h2,
.phone-shell.sketch-lp .points-section > h2 {
  display: block !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  width: min(calc(100% - 32px), 350px) !important;
  min-width: 0 !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 0 !important;
  border: 0 !important;
  color: #ffe45c !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: clamp(1.62rem, 7.2vw, 2.18rem) !important;
  line-height: 1.18 !important;
  text-align: center !important;
  text-shadow: 3px 3px 0 #102a63 !important;
  transform: none !important;
}

.phone-shell.sketch-lp .about-service > h2 *,
.phone-shell.sketch-lp .points-section > h2 * {
  position: static !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.phone-shell.sketch-lp .about-service > h2 .brand-with-kana,
.phone-shell.sketch-lp .points-section > h2 .brand-with-kana {
  display: inline-block !important;
  font-size: 1em !important;
  line-height: 0.92 !important;
}

.phone-shell.sketch-lp .about-service > h2 .brand-with-kana small,
.phone-shell.sketch-lp .points-section > h2 .brand-with-kana small {
  display: block !important;
  margin-top: 0.08em !important;
  font-size: 0.38em !important;
  line-height: 1 !important;
}

.phone-shell.sketch-lp .points-closing {
  width: min(calc(100% - 36px), 358px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  font-size: clamp(1.42rem, 6.7vw, 2rem) !important;
  line-height: 1.22 !important;
  text-align: center !important;
  text-wrap: balance !important;
}

/* 2026-07-10: normalize brand headings, point labels, mockups, and contest leading. */
.phone-shell.sketch-lp .about-service > h2,
.phone-shell.sketch-lp .points-section > h2 {
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 0.08em !important;
  width: min(calc(100% - 28px), 360px) !important;
  font-size: clamp(1.7rem, 7.55vw, 2.25rem) !important;
  line-height: 1.05 !important;
}

.phone-shell.sketch-lp .about-service > h2 .brand-with-kana,
.phone-shell.sketch-lp .points-section > h2 .brand-with-kana {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-end !important;
  font-size: 1em !important;
  line-height: 0.9 !important;
  vertical-align: baseline !important;
}

.phone-shell.sketch-lp .about-service > h2 .brand-with-kana small,
.phone-shell.sketch-lp .points-section > h2 .brand-with-kana small {
  display: block !important;
  margin-top: 0.04em !important;
  font-size: 0.3em !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
}

.phone-shell.sketch-lp .point-title-bar {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  grid-template-rows: auto auto !important;
  place-items: center !important;
  justify-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: min(100%, 360px) !important;
  margin: 0 auto 18px !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
  text-align: center !important;
}

.phone-shell.sketch-lp .point-title-bar span {
  display: inline-grid !important;
  grid-column: 1 !important;
  grid-row: 1 !important;
  place-items: center !important;
  min-width: 92px !important;
  min-height: 42px !important;
  margin: 0 auto !important;
  padding: 0 16px !important;
  border: 3px solid #102a63 !important;
  border-radius: 999px !important;
  color: #102a63 !important;
  background: #ffe45c !important;
  box-shadow: 4px 4px 0 rgba(16, 42, 99, 0.24) !important;
  font-size: clamp(1rem, 4.6vw, 1.18rem) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  transform: none !important;
}

.phone-shell.sketch-lp .point-title-bar h3 {
  grid-column: 1 !important;
  grid-row: 2 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #ffe45c !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: clamp(1.52rem, 7.35vw, 2.05rem) !important;
  line-height: 1.16 !important;
  text-align: center !important;
  text-shadow: 3px 3px 0 #102a63 !important;
  transform: none !important;
}

.phone-shell.sketch-lp .point-visual {
  margin-top: 4px !important;
  background: transparent !important;
  box-shadow: none !important;
}

.phone-shell.sketch-lp .mock-iframe-shell {
  width: min(100%, 330px) !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.phone-shell.sketch-lp .mock-iframe-shell iframe {
  display: block !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .points-closing {
  width: min(calc(100% - 8px), 394px) !important;
  font-size: clamp(1.34rem, 6.05vw, 1.84rem) !important;
  line-height: 1.18 !important;
  white-space: nowrap !important;
}

.phone-shell.sketch-lp .entry-heading h2 {
  line-height: 1.44 !important;
}

/* 2026-07-10: final specificity pass for point labels and mockup frames. */
.phone-shell.sketch-lp .point-card .point-title-bar > span {
  justify-self: center !important;
  align-self: center !important;
  margin: 0 auto !important;
  inset: auto !important;
  transform: none !important;
}

.phone-shell.sketch-lp .point-card .point-visual,
.phone-shell.sketch-lp .point-card:nth-child(2) .point-visual,
.phone-shell.sketch-lp .point-card:nth-child(3) .point-visual {
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
}

.phone-shell.sketch-lp .point-card .point-visual > .mock-iframe-shell {
  width: 211px !important;
  max-width: 100% !important;
  height: 442px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 23px !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  overflow: hidden !important;
}

.phone-shell.sketch-lp .point-card .point-visual > .mock-iframe-shell iframe {
  background: transparent !important;
  background-color: transparent !important;
}

/* 2026-07-13: show visual first, then subtitle and logo, without cropping. */
.phone-shell.sketch-lp .sketch-hero > .main-visual {
  order: 1 !important;
  grid-column: 1 / -1 !important;
  justify-self: center !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.phone-shell.sketch-lp .sketch-hero > .main-visual img {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

.phone-shell.sketch-lp .sketch-hero > .sketch-hero-copy {
  order: 2 !important;
  grid-column: 1 / -1 !important;
  justify-self: center !important;
  width: min(calc(100% - 28px), 390px) !important;
  max-width: calc(100% - 28px) !important;
  margin: 14px auto 0 !important;
  transform: none !important;
}

.phone-shell.sketch-lp .sketch-hero > .hero-subcopy {
  order: 3 !important;
}

.phone-shell.sketch-lp .sketch-hero > .hero-lp-switch {
  order: 4 !important;
}

.phone-shell.sketch-lp .sketch-hero > .compact-buttons {
  order: 5 !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .main-visual,
.phone-shell.sketch-lp.voice-lp .sketch-hero > .main-visual {
  order: 1 !important;
  justify-self: center !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  margin: 0 !important;
  overflow: visible !important;
  transform: none !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .main-visual img,
.phone-shell.sketch-lp.voice-lp .sketch-hero > .main-visual img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .sketch-hero-copy,
.phone-shell.sketch-lp.voice-lp .sketch-hero > .sketch-hero-copy {
  order: 2 !important;
  margin: 14px auto 0 !important;
  transform: none !important;
}

.phone-shell.sketch-lp .sketch-hero > .sketch-hero-copy .hero-service-subtitle {
  order: 1 !important;
}

.phone-shell.sketch-lp .sketch-hero > .sketch-hero-copy .hero-temp-logo {
  order: 2 !important;
}

/* 2026-07-13: compact subtitle band above logo on both LPs. */
.phone-shell.sketch-lp .sketch-hero > .sketch-hero-copy {
  gap: 4px !important;
}

.phone-shell.sketch-lp .sketch-hero > .sketch-hero-copy .hero-service-subtitle {
  order: 1 !important;
  width: min(100%, 280px) !important;
  min-height: 0 !important;
  margin: 0 auto -2px !important;
  padding: 6px 14px 7px !important;
  border-radius: 999px !important;
  font-size: clamp(0.8rem, 3.35vw, 0.94rem) !important;
  line-height: 1.08 !important;
}

.phone-shell.sketch-lp .sketch-hero > .sketch-hero-copy .hero-temp-logo {
  order: 2 !important;
  margin-top: -2px !important;
  margin-bottom: 0 !important;
}

/* 2026-07-13: align illustrator hero with the voice hero composition. */
.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .sketch-hero-copy {
  order: 1 !important;
  width: min(calc(100% - 28px), 390px) !important;
  margin: 8px auto 10px !important;
  gap: 4px !important;
  transform: none !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .sketch-hero-copy .hero-service-subtitle {
  order: 1 !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .sketch-hero-copy .hero-temp-logo {
  order: 2 !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .main-visual {
  order: 2 !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .hero-after-visual-copy {
  order: 3 !important;
  grid-column: 1 / -1 !important;
  justify-self: center !important;
  width: min(calc(100% - 32px), 370px) !important;
  max-width: calc(100% - 32px) !important;
  margin: 18px auto 8px !important;
  color: #ffe85d !important;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif !important;
  font-size: clamp(2rem, 9.6vw, 3.05rem) !important;
  font-weight: 850 !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-shadow: none !important;
  transform: none !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .hero-after-visual-copy .hero-new-copy,
.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .hero-after-visual-copy .hero-new-copy span {
  display: block !important;
  width: 100% !important;
  font: inherit !important;
  line-height: inherit !important;
  text-align: center !important;
  transform: none !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .hero-after-visual-copy em {
  color: inherit !important;
  font: inherit !important;
  font-style: normal !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .hero-copy-divider {
  order: 4 !important;
  grid-column: 1 / -1 !important;
  justify-self: center !important;
  width: min(70%, 260px) !important;
  height: 4px !important;
  margin: 6px auto 14px !important;
  border-radius: 999px !important;
  background: #ffe85d !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .hero-subcopy {
  order: 5 !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .hero-lp-switch {
  order: 6 !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .compact-buttons {
  order: 7 !important;
}

/* 2026-07-13: CSS ribbon section titles while keeping real heading text. */
.phone-shell.sketch-lp .about-service > h2,
.phone-shell.sketch-lp .points-section > h2,
.phone-shell.sketch-lp .entry-heading > h2,
.phone-shell.sketch-lp .faq-section > h2 {
  position: relative !important;
  z-index: 1 !important;
  display: grid !important;
  place-items: center !important;
  isolation: isolate !important;
  width: min(calc(100% - 28px), 390px) !important;
  min-height: 78px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding: 18px 28px 20px !important;
  border: 0 !important;
  background: transparent !important;
  color: #ffffff !important;
  font-family: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif !important;
  font-size: clamp(1.8rem, 8.4vw, 2.65rem) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-shadow: 0 3px 0 rgba(11, 6, 63, 0.42) !important;
  transform: rotate(-1.2deg) !important;
  box-shadow: none !important;
}

.phone-shell.sketch-lp .about-service > h2::before,
.phone-shell.sketch-lp .points-section > h2::before,
.phone-shell.sketch-lp .entry-heading > h2::before,
.phone-shell.sketch-lp .faq-section > h2::before {
  content: "" !important;
  position: absolute !important;
  inset: 8px 0 !important;
  z-index: -1 !important;
  border: 3px solid rgba(255, 255, 255, 0.95) !important;
  background: linear-gradient(102deg, #6127ff 0%, #b934e8 42%, #ff2f89 100%) !important;
  clip-path: polygon(7% 0, 100% 0, 94% 100%, 0 100%) !important;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.35),
    0 0 18px rgba(255, 52, 160, 0.72),
    0 8px 0 rgba(11, 6, 63, 0.24) !important;
}

.phone-shell.sketch-lp .about-service > h2::after,
.phone-shell.sketch-lp .points-section > h2::after,
.phone-shell.sketch-lp .entry-heading > h2::after,
.phone-shell.sketch-lp .faq-section > h2::after {
  content: "✦  ✦" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 24px !important;
  color: #ffe85d !important;
  font-size: clamp(0.86rem, 3.4vw, 1.15rem) !important;
  line-height: 1 !important;
  text-shadow: none !important;
  pointer-events: none !important;
}

.phone-shell.sketch-lp .about-service > h2 > *,
.phone-shell.sketch-lp .points-section > h2 > *,
.phone-shell.sketch-lp .entry-heading > h2 > *,
.phone-shell.sketch-lp .faq-section > h2 > * {
  position: relative !important;
  z-index: 1 !important;
}

.phone-shell.sketch-lp .about-service > h2 .brand-with-kana,
.phone-shell.sketch-lp .points-section > h2 .brand-with-kana {
  display: inline-grid !important;
  justify-items: center !important;
  color: inherit !important;
  font-size: 1em !important;
  line-height: 0.9 !important;
}

.phone-shell.sketch-lp .about-service > h2 .brand-with-kana small,
.phone-shell.sketch-lp .points-section > h2 .brand-with-kana small {
  color: inherit !important;
  font-size: 0.28em !important;
  line-height: 1 !important;
  text-shadow: inherit !important;
}

.phone-shell.sketch-lp .entry-heading > h2 {
  min-height: 132px !important;
  padding-top: 24px !important;
  padding-bottom: 26px !important;
  line-height: 1.2 !important;
}

.phone-shell.sketch-lp .section.about-service > h2,
.phone-shell.sketch-lp .section.points-section > h2,
.phone-shell.sketch-lp .section.entry-section .entry-heading > h2,
.phone-shell.sketch-lp .section.faq-section > h2,
.phone-shell.sketch-lp .section.about-service > h2 *,
.phone-shell.sketch-lp .section.points-section > h2 *,
.phone-shell.sketch-lp .section.entry-section .entry-heading > h2 *,
.phone-shell.sketch-lp .section.faq-section > h2 * {
  color: #ffffff !important;
}

/* 2026-07-13: refine ribbons to one-line thin titles, leaving contest title as before. */
.phone-shell.sketch-lp .about-service > h2,
.phone-shell.sketch-lp .points-section > h2,
.phone-shell.sketch-lp .faq-section > h2 {
  width: min(calc(100% - 34px), 382px) !important;
  min-height: 64px !important;
  padding: 12px 26px 14px !important;
  font-size: clamp(1.48rem, 6.4vw, 2.05rem) !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.phone-shell.sketch-lp .about-service > h2::before,
.phone-shell.sketch-lp .points-section > h2::before,
.phone-shell.sketch-lp .faq-section > h2::before {
  inset: 7px 0 !important;
}

.phone-shell.sketch-lp .about-service > h2 .brand-with-kana,
.phone-shell.sketch-lp .points-section > h2 .brand-with-kana {
  display: inline-grid !important;
  vertical-align: middle !important;
  font-size: 1em !important;
}

.phone-shell.sketch-lp .about-service > h2 .brand-with-kana small,
.phone-shell.sketch-lp .points-section > h2 .brand-with-kana small {
  font-size: 0.24em !important;
}

.phone-shell.sketch-lp .entry-heading > h2 {
  min-height: 0 !important;
  padding: 0 !important;
  color: #ffffff !important;
  font-size: clamp(3.05rem, 14vw, 4.2rem) !important;
  line-height: 1.34 !important;
  text-shadow: 4px 4px 0 #0b063f !important;
  transform: none !important;
}

.phone-shell.sketch-lp .entry-heading > h2::before,
.phone-shell.sketch-lp .entry-heading > h2::after {
  content: none !important;
  display: none !important;
}

/* 2026-07-13: final ribbon sizing lock for one-line section titles. */
.phone-shell.sketch-lp .section.about-service > h2,
.phone-shell.sketch-lp .section.points-section > h2,
.phone-shell.sketch-lp .section.faq-section > h2,
.phone-shell.sketch-lp:not(.voice-lp) .section.about-service > h2,
.phone-shell.sketch-lp:not(.voice-lp) .section.points-section > h2,
.phone-shell.sketch-lp:not(.voice-lp) .section.faq-section > h2 {
  box-sizing: border-box !important;
  width: min(calc(100% - 34px), 382px) !important;
  min-height: 0 !important;
  height: 72px !important;
  padding: 14px 26px 15px !important;
  font-size: clamp(1.36rem, 5.9vw, 1.84rem) !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

/* 2026-07-14: production artwork and overlaid hero composition. */
.phone-shell.sketch-lp .sketch-hero {
  position: relative !important;
  overflow: hidden !important;
  padding: 0 20px 48px !important;
}

.phone-shell.sketch-lp .sketch-hero > .sketch-nav {
  position: absolute !important;
  inset: 0 0 auto !important;
  z-index: 30 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 14px 16px 0 !important;
}

.phone-shell.sketch-lp .sketch-hero > .main-visual,
.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .main-visual {
  position: relative !important;
  order: 1 !important;
  width: calc(100% + 40px) !important;
  max-width: none !important;
  margin: 0 -20px !important;
  overflow: hidden !important;
}

.phone-shell.sketch-lp .sketch-hero > .main-visual img,
.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .main-visual img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

.phone-shell.sketch-lp .sketch-hero > .sketch-hero-copy,
.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .sketch-hero-copy {
  position: absolute !important;
  top: 40px !important;
  left: 50% !important;
  z-index: 20 !important;
  display: grid !important;
  justify-items: center !important;
  width: min(calc(100% - 36px), 394px) !important;
  max-width: none !important;
  margin: 0 !important;
  gap: 7px !important;
  transform: translateX(-50%) !important;
}

.phone-shell.sketch-lp .sketch-hero > .sketch-hero-copy .hero-service-subtitle {
  width: min(78%, 300px) !important;
  margin: 0 auto !important;
  padding: 7px 14px 8px !important;
  color: #102a63 !important;
  border-radius: 999px !important;
  background: #ffe45c !important;
  font-size: clamp(0.78rem, 3.45vw, 0.94rem) !important;
  line-height: 1.08 !important;
  text-align: center !important;
}

.phone-shell.sketch-lp .sketch-hero > .sketch-hero-copy .hero-temp-logo {
  display: grid !important;
  width: min(92%, 360px) !important;
  margin: 0 auto !important;
  place-items: center !important;
}

.phone-shell.sketch-lp .sketch-hero > .sketch-hero-copy .hero-temp-logo img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  filter: none !important;
}

.phone-shell.sketch-lp .about-step-image {
  width: min(92%, 300px) !important;
  max-height: 260px !important;
  object-fit: contain !important;
}

.phone-shell.sketch-lp .template-phone-silhouette {
  display: block !important;
  width: 140px !important;
  height: 140px !important;
  margin: 18px auto 0 !important;
  object-fit: contain !important;
  opacity: 1 !important;
  filter: none !important;
}

.phone-shell.sketch-lp .entry-main-silhouette {
  position: absolute !important;
  top: 52px !important;
  right: -14px !important;
  z-index: 1 !important;
  display: block !important;
  width: 242px !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

/* 2026-07-14: final hero fade and larger contest character. */
.phone-shell.sketch-lp .sketch-hero > .sketch-hero-copy .hero-temp-logo {
  transform: translateY(-8px) !important;
}

.phone-shell.sketch-lp .sketch-hero > .main-visual {
  isolation: isolate !important;
  background: #ff4fa3 !important;
}

.phone-shell.sketch-lp .sketch-hero > .main-visual img {
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 93%, rgba(0, 0, 0, 0.82) 96%, transparent 100%) !important;
  mask-image: linear-gradient(to bottom, #000 0%, #000 93%, rgba(0, 0, 0, 0.82) 96%, transparent 100%) !important;
}

.phone-shell.sketch-lp .sketch-hero > .main-visual::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 2 !important;
  height: 12% !important;
  pointer-events: none !important;
  background: linear-gradient(to bottom, transparent, rgba(255, 79, 163, 0.22)) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  backdrop-filter: blur(5px) !important;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000) !important;
  mask-image: linear-gradient(to bottom, transparent, #000) !important;
}

.phone-shell.sketch-lp .entry-main-silhouette {
  top: 22px !important;
  right: -38px !important;
  width: 300px !important;
}

.phone-shell.sketch-lp .sketch-hero > .main-visual,
.phone-shell.sketch-lp .sketch-hero > .main-visual.reveal-item,
.phone-shell.sketch-lp .sketch-hero > .main-visual.is-visible {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

.phone-shell.sketch-lp .section.about-service > h2 .brand-with-kana,
.phone-shell.sketch-lp .section.points-section > h2 .brand-with-kana,
.phone-shell.sketch-lp:not(.voice-lp) .section.about-service > h2 .brand-with-kana,
.phone-shell.sketch-lp:not(.voice-lp) .section.points-section > h2 .brand-with-kana {
  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 0.12em !important;
  font-size: 1em !important;
  line-height: 1 !important;
  vertical-align: baseline !important;
}

.phone-shell.sketch-lp .section.about-service > h2 .brand-with-kana small,
.phone-shell.sketch-lp .section.points-section > h2 .brand-with-kana small,
.phone-shell.sketch-lp:not(.voice-lp) .section.about-service > h2 .brand-with-kana small,
.phone-shell.sketch-lp:not(.voice-lp) .section.points-section > h2 .brand-with-kana small {
  display: inline !important;
  font-size: 0.28em !important;
  line-height: 1 !important;
}

/* 2026-07-13: force ribbon titles into a single visual line and restore contest color. */
.phone-shell.sketch-lp .section.about-service > h2,
.phone-shell.sketch-lp .section.points-section > h2,
.phone-shell.sketch-lp .section.faq-section > h2,
.phone-shell.sketch-lp:not(.voice-lp) .section.about-service > h2,
.phone-shell.sketch-lp:not(.voice-lp) .section.points-section > h2,
.phone-shell.sketch-lp:not(.voice-lp) .section.faq-section > h2 {
  width: min(calc(100% - 18px), 410px) !important;
  height: 66px !important;
  padding: 13px 20px 14px !important;
  font-size: clamp(1.22rem, 5.28vw, 1.64rem) !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  overflow: visible !important;
}

.phone-shell.sketch-lp .section.about-service > h2 .brand-with-kana,
.phone-shell.sketch-lp .section.points-section > h2 .brand-with-kana,
.phone-shell.sketch-lp:not(.voice-lp) .section.about-service > h2 .brand-with-kana,
.phone-shell.sketch-lp:not(.voice-lp) .section.points-section > h2 .brand-with-kana {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 0.08em !important;
  white-space: nowrap !important;
}

.phone-shell.sketch-lp .section.about-service > h2 .brand-with-kana small,
.phone-shell.sketch-lp .section.points-section > h2 .brand-with-kana small,
.phone-shell.sketch-lp:not(.voice-lp) .section.about-service > h2 .brand-with-kana small,
.phone-shell.sketch-lp:not(.voice-lp) .section.points-section > h2 .brand-with-kana small {
  display: inline !important;
  font-size: 0.22em !important;
  letter-spacing: 0.06em !important;
  transform: translateY(-0.08em) !important;
}

.phone-shell.sketch-lp .section.entry-section .entry-heading > h2,
.phone-shell.sketch-lp .section.entry-section .entry-heading > h2 * {
  color: #0b063f !important;
}

.phone-shell.sketch-lp .section.entry-section .entry-heading > h2 {
  text-shadow: 4px 4px 0 #ffe85d !important;
}

/* 2026-07-13: final title cleanup - no furigana in section headings, contest shadow restored. */
.phone-shell.sketch-lp .section.about-service > h2,
.phone-shell.sketch-lp .section.points-section > h2,
.phone-shell.sketch-lp .section.faq-section > h2,
.phone-shell.sketch-lp:not(.voice-lp) .section.about-service > h2,
.phone-shell.sketch-lp:not(.voice-lp) .section.points-section > h2,
.phone-shell.sketch-lp:not(.voice-lp) .section.faq-section > h2 {
  width: min(calc(100% - 18px), 410px) !important;
  height: 66px !important;
  min-height: 0 !important;
  padding: 13px 24px 14px !important;
  font-size: clamp(1.42rem, 6vw, 1.88rem) !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.phone-shell.sketch-lp .section.entry-section .entry-heading > h2,
.phone-shell.sketch-lp .section.entry-section .entry-heading > h2 * {
  color: #0b063f !important;
}

.phone-shell.sketch-lp .section.entry-section .entry-heading > h2 {
  text-shadow:
    3px 3px 0 #ffffff,
    5px 5px 0 #ff4fa3 !important;
}

/* 2026-07-13: make FAQ text readable on vivid pink panels. */
.phone-shell.sketch-lp:not(.voice-lp) .faq-section details,
.phone-shell.sketch-lp:not(.voice-lp) .faq-section summary,
.phone-shell.sketch-lp:not(.voice-lp) .faq-section details p {
  color: #ffffff !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .faq-section summary {
  text-shadow: none !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .faq-section details p {
  width: 100% !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  text-align: left !important;
  text-indent: 0 !important;
  text-wrap: wrap !important;
  line-break: strict;
  line-height: 1.75 !important;
}

/* 2026-07-13: make FAQ copy slightly more compact on both LPs. */
.phone-shell.sketch-lp .faq-section summary {
  font-size: clamp(0.98rem, 4vw, 1.16rem) !important;
  line-height: 1.5 !important;
}

.phone-shell.sketch-lp .faq-section details p {
  font-size: clamp(0.88rem, 3.45vw, 1rem) !important;
  line-height: 1.82 !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .faq-section .faq-answer-emphasis {
  color: #ffe45c !important;
  font-weight: 950 !important;
  text-decoration: underline;
  text-decoration-color: #ffe45c;
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.18em;
}

/* 2026-07-13: shared pre-registration CTAs for contest and page end. */
.entry-register-note {
  width: min(100%, 320px);
  margin: 20px auto -2px;
  padding: 0;
  color: #0b063f;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-size: clamp(0.72rem, 3vw, 0.84rem);
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.entry-actions .entry-register-button {
  margin-top: 0 !important;
  width: min(100%, 340px) !important;
  color: #102a63 !important;
  border: 0 !important;
  background: #ffe45c !important;
  box-shadow: 0 8px 0 #102a63, 0 18px 26px rgba(16, 42, 99, 0.22) !important;
  animation: none !important;
}

.entry-actions .entry-register-button::before,
.entry-actions .entry-register-button::after {
  content: none !important;
  display: none !important;
}

.bottom-register-cta {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 22px 22px 34px;
  background: #201457;
}

.bottom-register-cta p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(0.9rem, 3.5vw, 1.04rem);
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
}

.bottom-register-cta .hero-register-button {
  border: 4px solid #243f8f !important;
  width: min(100%, 340px) !important;
  margin: 0 auto !important;
  box-shadow: 0 8px 0 #243f8f, 0 18px 28px rgba(36, 63, 143, 0.34) !important;
  animation: registerPulse 2.4s ease-in-out infinite !important;
}

.desktop-register-switch {
  display: none;
}

@media (min-width: 1180px) {
  .desktop-register-switch {
    position: fixed;
    top: 520px;
    z-index: 5;
    display: grid;
    place-items: center;
    width: 142px;
    height: 142px;
    padding: 7px;
    color: #102a63;
    border: 0;
    border-radius: 999px;
    background: #ffe45c;
    box-shadow: 0 8px 0 #102a63, 0 18px 24px rgba(16, 42, 99, 0.2);
    font-weight: 950;
    line-height: 1.16;
    text-align: center;
    text-decoration: none;
    animation: desktopRegisterFloat 2.8s ease-in-out infinite;
  }

  .desktop-register-switch-left {
    left: 34px;
  }

  .desktop-register-switch-right {
    right: 34px;
  }

  .desktop-register-switch strong {
    display: block;
    font-size: clamp(1.22rem, 1.34vw, 1.48rem);
    line-height: 0.94;
    letter-spacing: -0.08em;
  }
}

@keyframes desktopRegisterFloat {
  0%,
  100% {
    transform: translateY(0) scale(1) rotate(-2deg);
  }

  48% {
    transform: translateY(-10px) scale(1.045) rotate(2deg);
  }
}

/* 2026-07-13: slightly reduce the blank space between the menu and hero logo set. */
.phone-shell.sketch-lp .sketch-nav {
  margin-bottom: 0 !important;
}

.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .sketch-hero-copy,
.phone-shell.sketch-lp.voice-lp .sketch-hero > .sketch-hero-copy {
  margin-top: -16px !important;
}

/* 2026-07-13: prevent desktop side switch labels from spilling at intermediate widths. */
@media (min-width: 1180px) {
  .desktop-lp-switch {
    box-sizing: border-box !important;
    width: clamp(214px, 14.5vw, 244px) !important;
    padding: 14px 14px 14px 76px !important;
  }

  .desktop-lp-switch strong {
    display: block !important;
    width: 100% !important;
    max-width: 148px !important;
    margin: 0 auto !important;
    font-size: clamp(0.88rem, 0.94vw, 1.04rem) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.08em !important;
    white-space: nowrap !important;
  }
}

/* 2026-07-14: enlarge the shared ribbon section headings. */
.phone-shell.sketch-lp .section.about-service > h2,
.phone-shell.sketch-lp .section.points-section > h2,
.phone-shell.sketch-lp .section.faq-section > h2,
.phone-shell.sketch-lp:not(.voice-lp) .section.about-service > h2,
.phone-shell.sketch-lp:not(.voice-lp) .section.points-section > h2,
.phone-shell.sketch-lp:not(.voice-lp) .section.faq-section > h2 {
  box-sizing: border-box !important;
  width: min(calc(100% - 8px), 422px) !important;
  height: 80px !important;
  min-height: 80px !important;
  padding: 14px 28px 16px !important;
  font-size: clamp(1.64rem, 7vw, 2.15rem) !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  white-space: nowrap !important;
}

/* 2026-07-14: final production asset placement lock. */
.phone-shell.sketch-lp .sketch-hero {
  position: relative !important;
  overflow: hidden !important;
  padding: 0 20px 48px !important;
}

.phone-shell.sketch-lp .sketch-hero > .sketch-nav {
  position: absolute !important;
  inset: 0 0 auto !important;
  z-index: 30 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 14px 16px 0 !important;
}

.phone-shell.sketch-lp .sketch-hero > .main-visual,
.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .main-visual,
.phone-shell.sketch-lp .sketch-hero > .main-visual.reveal-item,
.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .main-visual.reveal-item {
  position: relative !important;
  isolation: isolate !important;
  order: 1 !important;
  width: calc(100% + 40px) !important;
  max-width: none !important;
  margin: 0 -20px !important;
  overflow: hidden !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
  background: #ff4fa3 !important;
}

.phone-shell.sketch-lp .sketch-hero > .main-visual img,
.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .main-visual img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 93%, rgba(0, 0, 0, 0.82) 96%, transparent 100%) !important;
  mask-image: linear-gradient(to bottom, #000 0%, #000 93%, rgba(0, 0, 0, 0.82) 96%, transparent 100%) !important;
}

.phone-shell.sketch-lp .sketch-hero > .main-visual::after {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 2 !important;
  height: 12% !important;
  content: "" !important;
  pointer-events: none !important;
  background: linear-gradient(to bottom, transparent, rgba(255, 79, 163, 0.22)) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  backdrop-filter: blur(5px) !important;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000) !important;
  mask-image: linear-gradient(to bottom, transparent, #000) !important;
}

.phone-shell.sketch-lp .sketch-hero > .sketch-hero-copy,
.phone-shell.sketch-lp:not(.voice-lp) .sketch-hero > .sketch-hero-copy {
  position: absolute !important;
  top: 40px !important;
  left: 50% !important;
  z-index: 20 !important;
  display: grid !important;
  justify-items: center !important;
  width: min(calc(100% - 36px), 394px) !important;
  max-width: none !important;
  margin: 0 !important;
  gap: 7px !important;
  transform: translateX(-50%) !important;
}

.phone-shell.sketch-lp .sketch-hero > .sketch-hero-copy .hero-service-subtitle {
  width: min(78%, 300px) !important;
  margin: 0 auto !important;
  padding: 7px 14px 8px !important;
  color: #102a63 !important;
  border-radius: 999px !important;
  background: #ffe45c !important;
  font-size: clamp(0.78rem, 3.45vw, 0.94rem) !important;
  line-height: 1.08 !important;
  text-align: center !important;
}

.phone-shell.sketch-lp .sketch-hero > .sketch-hero-copy .hero-temp-logo {
  display: grid !important;
  width: min(92%, 360px) !important;
  margin: 0 auto !important;
  place-items: center !important;
  transform: translateY(-8px) !important;
}

.phone-shell.sketch-lp .sketch-hero > .sketch-hero-copy .hero-temp-logo img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  filter: none !important;
}

.phone-shell.sketch-lp .about-step-image {
  width: min(92%, 300px) !important;
  max-height: 260px !important;
  object-fit: contain !important;
}

.phone-shell.sketch-lp .template-phone-silhouette {
  display: block !important;
  width: 140px !important;
  height: 140px !important;
  margin: 18px auto 0 !important;
  object-fit: contain !important;
  opacity: 1 !important;
  filter: none !important;
}

.phone-shell.sketch-lp .entry-main-silhouette {
  position: absolute !important;
  top: 0 !important;
  right: 50% !important;
  z-index: 3 !important;
  display: block !important;
  width: 440px !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  opacity: 1 !important;
  filter: none !important;
  transform: translateX(50%) !important;
}

.phone-shell.sketch-lp .entry-light-burst {
  position: absolute !important;
  top: 0 !important;
  right: 50% !important;
  z-index: 1 !important;
  display: block !important;
  width: 440px !important;
  height: auto !important;
  max-width: none !important;
  object-fit: contain !important;
  pointer-events: none !important;
  transform: translateX(50%) !important;
}

.phone-shell.sketch-lp .entry-template-phone {
  z-index: 2 !important;
  top: 66px !important;
  transform: rotate(-8deg) scale(1.12) !important;
  transform-origin: left top !important;
}

.phone-shell.sketch-lp .entry-visual {
  min-height: 440px !important;
}

.phone-shell.sketch-lp .entry-contest-stage {
  min-height: 500px !important;
}

/* Contest phone proposal: official character as the first-play guide. */
.phone-shell.sketch-lp .entry-template-phone .template-phone-top {
  justify-content: space-between;
}

.phone-shell.sketch-lp .entry-template-phone .official-phone-logo {
  display: block;
  width: 66px;
  height: auto;
}

.phone-shell.sketch-lp .entry-template-phone .official-guide-label {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 3px 6px;
  color: #102a63;
  border: 1.5px solid #102a63;
  border-radius: 999px;
  background: #ffe45c;
  font-size: 0.42rem;
  line-height: 1;
  white-space: nowrap;
}

.phone-shell.sketch-lp .entry-template-phone .official-phone-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin: 1px 0 5px;
}

.phone-shell.sketch-lp .entry-template-phone .official-phone-flow span {
  display: grid;
  gap: 2px;
  place-items: center;
  color: #8390aa;
  font-size: 0.36rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.phone-shell.sketch-lp .entry-template-phone .official-phone-flow b {
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  border: 1.5px solid #8390aa;
  border-radius: 50%;
  background: #fff;
  font-size: 0.42rem;
}

.phone-shell.sketch-lp .entry-template-phone .official-phone-flow .is-current {
  color: #ff2b91;
}

.phone-shell.sketch-lp .entry-template-phone .official-phone-flow .is-current b {
  color: #fff;
  border-color: #102a63;
  background: #ff2b91;
}

.phone-shell.sketch-lp .entry-template-phone .template-phone-screen {
  min-height: 160px;
  margin-bottom: 6px;
  border-color: #102a63;
  background: #fff5fa;
}

.phone-shell.sketch-lp .entry-template-phone .template-phone-screen strong {
  top: 7px;
  right: auto;
  left: 7px;
  padding: 4px 7px;
  color: #102a63 !important;
  border: 1.5px solid #102a63;
  background: #ffe45c !important;
  font-size: 0.42rem;
}

.phone-shell.sketch-lp .entry-template-phone .template-phone-silhouette {
  width: 118px !important;
  height: 118px !important;
  margin-top: 12px !important;
}

.phone-shell.sketch-lp .entry-template-phone .official-guide-message {
  left: 7px;
  right: 7px;
  bottom: 6px;
  padding: 5px 6px;
  color: #102a63;
  border: 1.5px solid #102a63;
  background: rgba(255, 255, 255, 0.94);
  font-size: 0.48rem;
  line-height: 1.25;
  text-align: left;
}

.phone-shell.sketch-lp .entry-template-phone .official-start-panel {
  display: grid;
  gap: 5px;
  padding: 1px 1px 0;
  color: #102a63;
  font-weight: 950;
  text-align: center;
}

.phone-shell.sketch-lp .entry-template-phone .official-start-panel p {
  margin: 0;
  font-size: 0.58rem;
  line-height: 1.3;
}

.phone-shell.sketch-lp .entry-template-phone .official-start-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 29px;
  padding: 5px 8px 5px 10px;
  color: #fff;
  border: 1.5px solid #102a63;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff2b91, #7d35ed);
  box-shadow: 0 2px 0 #102a63;
  font-size: 0.5rem;
  font-weight: 950;
  line-height: 1;
}

.phone-shell.sketch-lp .entry-template-phone .official-start-button i {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  color: #102a63;
  border-radius: 50%;
  background: #ffe45c;
  font-size: 0.48rem;
  font-style: normal;
}

.phone-shell.sketch-lp .entry-template-phone .official-start-panel small {
  display: block;
  color: #526781;
  font-size: 0.36rem;
  font-weight: 950;
  line-height: 1.1;
}

/* Keep the contest character visible without covering the phone screen. */
.phone-shell.sketch-lp .entry-template-phone {
  top: 50px !important;
  left: 10px !important;
  width: 178px !important;
  min-height: 356px !important;
  padding: 17px 9px 12px !important;
  border-width: 4px !important;
  border-radius: 28px !important;
  transform: rotate(-8deg) scale(1.1) !important;
}

.phone-shell.sketch-lp .entry-template-phone::before {
  top: 8px !important;
  width: 44px !important;
  height: 5px !important;
}

.phone-shell.sketch-lp .entry-light-burst {
  top: -70px !important;
}

.phone-shell.sketch-lp .entry-main-silhouette {
  top: 18px !important;
  right: -45px !important;
  z-index: 4 !important;
  width: 440px !important;
  height: 490px !important;
  object-fit: contain !important;
  transform: none !important;
}

/* Desktop preregistration badge: place it directly below the section menu. */
@media (min-width: 1180px) {
  .desktop-section-nav > .desktop-register-switch {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    justify-self: center !important;
    width: 142px !important;
    height: 142px !important;
    min-height: 142px !important;
    margin: 20px 0 0 !important;
    padding: 4px !important;
    color: #102a63 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #ffe45c !important;
    box-shadow: 0 8px 0 #102a63, 0 18px 24px rgba(16, 42, 99, 0.2) !important;
    text-shadow: none !important;
    animation: desktopRegisterFloat 2.8s ease-in-out infinite !important;
  }

  .desktop-section-nav > .desktop-register-switch::after {
    content: none !important;
  }

  .desktop-section-nav > .desktop-register-switch strong {
    display: block !important;
    width: 136px !important;
    max-width: none !important;
    margin: 0 !important;
    font-size: clamp(1.4rem, 1.65vw, 1.68rem) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.105em !important;
    white-space: normal !important;
  }
}

/* 2026-07-16: keep the page ending navy and place the return control above the footer. */
.phone-shell.sketch-lp .back-to-top-wrap {
  display: grid;
  place-items: center;
  padding: 8px 22px 18px;
  background: #201457;
}

.phone-shell.sketch-lp .back-to-top-wrap .back-to-top {
  margin: 0 !important;
}

.phone-shell.sketch-lp .legal-footer {
  color: #ffffff;
  background: #201457 !important;
}

.phone-shell.sketch-lp .legal-footer a,
.phone-shell.sketch-lp .legal-footer p {
  color: #ffffff;
}

/* Mirror the voice preregistration badge against the illustrator-side badge. */
@media (min-width: 1180px) {
  .voice-page > .desktop-register-switch-left {
    top: calc(50% + 90px) !important;
    left: calc(50% - 329px - clamp(95px, 9vw, 130px)) !important;
    width: 142px !important;
    height: 142px !important;
    min-height: 142px !important;
    padding: 4px !important;
    color: #102a63 !important;
    border: 0 !important;
    border-radius: 50% !important;
    background: #ffe45c !important;
    box-shadow: 0 8px 0 #102a63, 0 18px 24px rgba(16, 42, 99, 0.2) !important;
    text-shadow: none !important;
  }

  .voice-page > .desktop-register-switch-left strong {
    display: block !important;
    width: 136px !important;
    max-width: none !important;
    margin: 0 !important;
    font-size: clamp(1.4rem, 1.65vw, 1.68rem) !important;
    font-weight: 700 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.105em !important;
    white-space: normal !important;
  }
}

@media (min-width: 1360px) {
  .voice-page > .desktop-register-switch-left {
    left: calc(50% - 493px) !important;
  }
}
