  
/* ========================================================
   ROKETOMO LP — ポップ＆フレンドリー / Yellow × Black
   Fonts: RocknRoll One (display), Zen Maru Gothic (body),
          Yusei Magic + Zen Kurenaido (handwritten)
   ======================================================== */

:root {
  --yellow:        #FFE500;
  --yellow-soft:   #FFF4A3;
  --yellow-deep:   #F2C800;
  --black:         #1a1a1a;
  --black-soft:    #2b2b2b;
  --cream:         #FFFBEA;
  --cream-warm:    #FFF6D6;
  --white:         #FFFFFF;
  --pink:          #FF4D6D;
  --blue:          #2D5BFF;
  --green:         #2EAE5F;
  --gray-100:      #F4F1E8;
  --gray-200:      #E6E1D2;
  --gray-400:      #9B9685;
  --gray-600:      #5d5950;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --shadow-hard: 6px 6px 0 0 var(--black);
  --shadow-soft: 0 4px 24px rgba(26,26,26,.10);

  --font-display: 'RocknRoll One', 'Zen Maru Gothic', sans-serif;
  --font-body:    'Zen Maru Gothic', system-ui, sans-serif;
  --font-hand:    'Yusei Magic', 'Zen Kurenaido', cursive;
  --font-reggae:  'Reggae One', 'RocknRoll One', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--black);
  background: var(--cream);
  line-height: 1.7;
  font-feature-settings: "halt";
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul, ol { padding: 0; margin: 0; list-style: none; }
button, input, select, textarea { font-family: inherit; }

.sp-only { display: none; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 32px;
  background: var(--cream);
  border-bottom: 2px solid var(--black);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--black);
  img {
    height: 100%;
    width: auto;
  }
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: 2px 2px 0 0 var(--black);
}
.logo-mark__inner {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1;
  color: var(--black);
}
.nav__logo--big .logo-mark { width: 56px; height: 56px; }
.nav__logo--big .logo-mark__inner { font-size: 28px; }
.nav__logo--big { font-size: 32px; }

.nav__links {
  margin-left: auto;
  display: flex;
  gap: 28px;
  font-weight: 700;
  font-size: 14px;
}
.nav__links a {
  position: relative;
  padding: 6px 2px;
  transition: opacity .2s;
}
.nav__links a:hover { opacity: .6; }
.nav__links a::after {
  content: '';
  position: absolute;
  inset: auto 0 -2px;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding: 10px 16px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 400;
  border: 2.5px solid var(--black);
  border-radius: 14px;
  font-size: 15px;
  letter-spacing: .02em;
  box-shadow: 0 5px 0 0 var(--black), 0 0 0 0 rgba(255,77,109,.45);
  animation: ctaGlow 2.2s ease-in-out infinite;
  transition: transform .15s, box-shadow .15s;
  isolation: isolate;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 7px 0 0 var(--black), 0 0 0 0 rgba(255,77,109,.45); }
.nav__cta:active { transform: translateY(2px); box-shadow: 0 2px 0 0 var(--black); }
.nav__cta-arrow {
  width: 22px; height: 22px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-family: var(--font-body);
  animation: ctaArrow 1.4s ease-in-out infinite;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 60% 50% at 20% 10%, rgba(255,229,0,.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 70%, rgba(255,229,0,.4) 0%, transparent 55%),
    var(--cream);
  padding: 64px 0 0;
  overflow: hidden;
}
.hero__bg-noise {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, var(--black) 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, var(--black) 1px, transparent 1px),
    radial-gradient(circle at 40% 90%, var(--black) 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px, 100px 100px;
  opacity: .04;
  pointer-events: none;
}

.tape {
  position: absolute;
  font-family: var(--font-hand);
  font-size: 16px;
  background: rgba(255,229,0,.85);
  padding: 6px 16px;
  border: 2px dashed var(--black);
  transform: rotate(-3deg);
  z-index: 5;
}
.tape--hero-1 { top: 84px; left: 4%; transform: rotate(-6deg); background: var(--pink); color: var(--white); border-color: var(--black); }
.tape--hero-2 { top: 110px; right: 6%; transform: rotate(4deg); }
.tape--form { position: relative; display: inline-block; top: auto; left: auto; transform: rotate(-4deg); margin-bottom: 8px; background: var(--pink); color: var(--white); }

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.9fr);
  gap: clamp(32px, 4vw, 56px);
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 64px;
  align-items: center;
}
.hero__left { min-width: 0; }



.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-hand);
  font-size: 24px;
  color: var(--black-soft);
  margin-bottom: 24px;
  letter-spacing: .04em;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: .6; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.15;
  letter-spacing: -.01em;
  margin: 0 0 24px;
  font-weight: 400;
}
.hl-yellow {
  background: linear-gradient(transparent 55%, var(--yellow) 55%);
  padding: 0 4px;
}
.hl-stroke {
  position: relative;
  display: inline-block;
  color: var(--black);
}
.hl-stroke::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px; bottom: 8px;
  height: 14px;
  background: var(--pink);
  z-index: -1;
  transform: skewX(-6deg);
  border-radius: 2px;
}

.hero__lead {
  font-size: 17px;
  line-height: 1.9;
  margin: 0 0 28px;
  color: var(--black-soft);
  max-width: 540px;
      overflow-wrap: anywhere;
    word-break: auto-phrase;
    line-break: strict;
}
.hero__lead strong { background: var(--yellow); padding: 0 4px; font-weight: 700; }

.hero__badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 2px 2px 0 0 var(--black);
}
.badge--check::before {
  content: '✓';
  display: inline-grid;
  place-items: center;
  width: 18px; height: 18px;
  background: var(--yellow);
  border: 1.5px solid var(--black);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--black);
  border-radius: var(--r-pill);
  padding: 14px 26px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  font-family: var(--font-body);
}
.btn--primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-hard);
}
.btn--primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 0 var(--black);
}

/* ===== CONVERSION CTA — distinct from other pill buttons ===== */
.btn--cta {
  position: relative;
  background: var(--yellow);
  color: var(--black);
  border: 3px solid var(--black);
  border-radius: 20px; /* chunky rounded rect, not pill */
  padding: 20px 36px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: .02em;
  box-shadow: 0 7px 0 0 var(--black), 0 0 0 0 rgba(255,77,109,.45);
  animation: ctaGlow 2.2s ease-in-out infinite;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  isolation: isolate;
}
.btn--cta::before {
  content: '';
  position: absolute;
  inset: 6px;
  border: 1.5px dashed rgba(26,26,26,.35);
  border-radius: 14px;
  pointer-events: none;
}
.btn--cta::after {
  content: 'かんたん\A 3分';
  white-space: pre;
  text-align: center;
  line-height: 1;
  position: absolute;
  top: -28px;
  left: -32px;
  background: var(--pink);
  color: var(--white);
  border: 2.5px solid var(--black);
  border-radius: 50%;
  width: 70px; height: 70px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 13px;
  transform: rotate(-12deg);
  box-shadow: 3px 3px 0 0 var(--black);
  animation: stickerWiggle 3.4s ease-in-out infinite;
  z-index: 2;
}
.btn--cta:hover {
  transform: translateY(-3px);
}
.btn--cta:hover { box-shadow: 0 10px 0 0 var(--black), 0 0 0 0 rgba(255,77,109,.45); }
.btn--cta:active {
  transform: translateY(3px);
  box-shadow: 0 3px 0 0 var(--black);
}
.btn--cta .btn__arrow {
  width: 32px; height: 32px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  animation: ctaArrow 1.4s ease-in-out infinite;
}
.btn--cta.btn--block { width: 100%; justify-content: center; }
.btn--cta-xl {
  padding: 24px 56px;
  font-size: 26px;
  gap: 20px;
}
.btn--cta-xl .btn__arrow {
  width: 38px; height: 38px;
  font-size: 18px;
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 7px 0 0 var(--black), 0 0 0 0 rgba(255,77,109,.5); }
  50% { box-shadow: 0 7px 0 0 var(--black), 0 0 0 14px rgba(255,77,109,0); }
}
@keyframes stickerWiggle {
  0%, 100% { transform: rotate(-12deg) scale(1); }
  50% { transform: rotate(-16deg) scale(1.08); }
}
@keyframes ctaArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}
@media (max-width: 640px) {
  .btn--cta { font-size: 18px; padding: 16px 26px; gap: 12px; }
  .btn--cta-xl { font-size: 20px; padding: 18px 32px; gap: 14px; }
  .btn--cta-xl .btn__arrow { width: 30px; height: 30px; font-size: 14px; }
  .btn--cta::after { width: 60px; height: 60px; top: -22px; left: -22px; font-size: 11px; }
  .btn--cta .btn__arrow { width: 28px; height: 28px; font-size: 14px; }
}
.btn--ghost {
  background: var(--white);
  color: var(--black);
}
.btn--ghost:hover { background: var(--cream-warm); }
.btn--black {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
  box-shadow: 4px 4px 0 0 var(--yellow);
}
.btn--black:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 0 var(--yellow);
}
.btn--lg { font-size: 16px; padding: 16px 30px; }
.btn--xl { font-size: 18px; padding: 20px 36px; }
.btn--block { width: 100%; }
.btn__arrow { transition: transform .2s; font-size: 1.1em; }
.btn:hover .btn__arrow { transform: translateX(4px); }

.hero__meta {
  display: none;
  align-items: center;
  gap: 24px;
  padding-top: 8px;
}
.meta-item__num {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
  color: var(--black);
}
.meta-item__num span { font-size: 14px; margin-left: 4px; font-family: var(--font-body); color: var(--black-soft); }
.meta-item__label { font-size: 12px; color: var(--gray-600); margin-top: 4px; font-weight: 700; }
.meta-divider { width: 1px; height: 36px; background: var(--black); opacity: .2; }

/* Hero right (card + clapper) */
.hero__right {
  position: relative;
  height: 540px;
  width: 100%;
}
.hero-card__caption .hand,
.floating--note .hand {
  word-break: keep-all;
  overflow-wrap: normal;
  text-align: right;
  font-feature-settings: "halt";
}
.hero-card {
  position: absolute;
  inset: 0 32px 60px 0;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: 8px 8px 0 0 var(--black);
  transform: rotate(2deg);
  display: flex;
  flex-direction: column;
}
.hero-card__stamp {
  position: absolute;
  top: -22px; right: -22px;
  width: 92px; height: 92px;
  background: var(--pink);
  color: var(--white);
  border: 3px solid var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 16px;
  text-align: center;
  line-height: 1.1;
  transform: rotate(15deg);
  z-index: 4;
  box-shadow: 3px 3px 0 0 var(--black);
}
.hero-card__photo {
  flex: 1;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(26,26,26,.04) 14px 16px),
    linear-gradient(135deg, var(--yellow-soft), var(--cream-warm));
  border-radius: var(--r-md);
  /* border: 2px dashed var(--gray-400); */
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.hero-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-card__photo::before {
  content: '';
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(to top, rgba(26,26,26,.18), transparent);
}
.ph-label {
  font-family: var(--font-hand);
  color: var(--gray-600);
  background: rgba(255,255,255,.7);
  padding: 6px 12px;
  border-radius: var(--r-pill);
  border: 1.5px dashed var(--gray-400);
  position: relative;
  z-index: 1;
}
.hero-card__caption {
  margin-top: 14px;
  padding: 8px 4px;
}
.hero-card__caption .hand {
  font-family: var(--font-hand);
  font-size: 17px;
  display: block;
  line-height: 1.4;
}
.hero-card__person {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--gray-600);
  font-weight: 700;
  text-align: right;
}

.floating { position: absolute; }
.floating--clapper {
  bottom: 0; left: -100px;
  transform: rotate(-8deg);
  z-index: 3;
  animation: floatY 4s ease-in-out infinite;
}
@keyframes floatY {
  0%,100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-8deg) translateY(-8px); }
}
.clapper {
  width: 200px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--r-md);
  border: 3px solid var(--black);
  overflow: hidden;
  box-shadow: 4px 4px 0 0 var(--yellow);
}
.clapper__top {
  height: 26px;
  background:
    repeating-linear-gradient(135deg, var(--white) 0 24px, var(--black) 24px 48px);
}
.clapper__body {
  padding: 12px 14px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .04em;
}
.clapper__line {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding: 4px 0;
}
.clapper__line:last-child { border-bottom: none; }
.clapper__line span:first-child { color: var(--gray-400); font-size: 11px; }

.floating--note {
  top: 60px;
  right: -22px;
  background: var(--yellow);
  border: 2px solid var(--black);
  padding: 14px 18px;
  border-radius: var(--r-md);
  transform: rotate(6deg);
  box-shadow: 3px 3px 0 0 var(--black);
  animation: floatY2 5s ease-in-out infinite;
}
@keyframes floatY2 {
  0%,100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(6deg) translateY(-6px); }
}
.floating--note .hand {
  font-family: var(--font-hand);
  font-size: 18px;
  display: block;
  line-height: 1.3;
}

/* ============ FILM STRIP ============ */
.film-strip {
  margin-top: 24px;
  background: var(--black);
  padding: 14px 0;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  overflow: hidden;
  position: relative;
}
.film-strip::before,
.film-strip::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 16px;
  background-image: radial-gradient(circle, var(--cream) 4px, transparent 5px);
  background-size: 40px 16px;
  background-repeat: repeat-x;
  background-position: 0 50%;
  z-index: 2;
  pointer-events: none;
}
.film-strip::before { top: 0; }
.film-strip::after { bottom: 0; }

.film-strip__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scrollFilm 40s linear infinite;
  padding: 6px 0;
}
.film-strip__frames {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
@keyframes scrollFilm {
  to { transform: translateX(calc(-50% - 6px)); }
}
.frame {
  width: 220px;
  height: 140px;
  background: var(--c);
  border: 2px solid var(--black);
  border-radius: 6px;
  position: relative;
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.4);
}
.frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1.5px dashed rgba(26,26,26,.3);
  border-radius: 4px;
}
.frame span {
  font-family: var(--font-hand);
  font-size: 16px;
  background: rgba(255,255,255,.75);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  position: relative;
  z-index: 1;
  color: var(--black);
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--yellow);
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
  overflow: hidden;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .02em;
}
.marquee__track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: scrollMarquee 35s linear infinite;
  white-space: nowrap;
}
.marquee__track span { white-space: nowrap; }
@keyframes scrollMarquee {
  to { transform: translateX(calc(-50% - 24px)); }
}

/* ============ Section heads ============ */
.section-head {
  margin-bottom: 48px;
  max-width: 720px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: .25em;
  margin-bottom: 16px;
  color: var(--black);
}
.kicker-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--black);
}
.section-head__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 400;
}
.section-head__sub {
  font-size: 17px;
  color: var(--black-soft);
  line-height: 1.9;
  margin: 0;
}
.section-head--light .section-head__title,
.section-head--light .section-head__kicker,
.section-head--light .section-head__sub { color: var(--cream); }
.section-head--light .kicker-line { background: var(--yellow); }

.hand-inline {
  font-family: var(--font-hand);
  color: var(--pink);
  font-size: .85em;
  display: inline-block;
  transform: rotate(-4deg);
  margin-left: 8px;
}

/* ============ ABOUT ============ */
.about {
  padding: 96px 0 96px;
  background: var(--cream);
}
.about__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.about-card {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  box-shadow: 6px 6px 0 0 var(--black);
  transition: transform .2s, box-shadow .2s;
}
.about-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 0 var(--black);
}
.about-card--big {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}
.about-card--yellow { background: var(--yellow); }
.about-card__num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.about-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 0 0 12px;
  font-weight: 400;
  line-height: 1.3;
}
.about-card p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--black-soft);
  margin: 0;
}
.about-card p strong {
  background: var(--yellow);
  padding: 0 4px;
  font-weight: 700;
}
.about-card--yellow p strong { background: var(--black); color: var(--yellow); }

.about-card__deco--people {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 24px;
}
.people-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--c);
  border: 2px solid var(--black);
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 2px 2px 0 0 var(--black);
}

.mini-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-top: 20px;
}
.mini-cal span {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 2px solid var(--black);
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  background: var(--gray-100);
}
.mini-cal span.on {
  background: var(--yellow);
  position: relative;
}
.mini-cal span.on::after {
  content: '✓';
  position: absolute;
  top: -8px; right: -8px;
  width: 20px; height: 20px;
  background: var(--pink);
  color: var(--white);
  border: 2px solid var(--black);
  border-radius: 50%;
  font-size: 11px;
  display: grid;
  place-items: center;
}

.coin {
  margin-top: 20px;
  width: 64px; height: 64px;
  background: var(--yellow);
  border: 3px solid var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 32px;
  box-shadow: 3px 3px 0 0 var(--black);
}

.hand-stamp {
  position: absolute;
  bottom: 10px; right: 10px;
  font-family: var(--font-hand);
  background: var(--pink);
  color: var(--white);
  padding: 6px 14px;
  border: 2px solid var(--black);
  border-radius: var(--r-pill);
  transform: rotate(-8deg);
  font-size: 16px;
}

/* ============ GUIDELINE ============ */
.guideline {
  padding: 96px 0;
  background: var(--white);
  position: relative;
  border-top: 3px solid var(--black);
  border-bottom: 3px solid var(--black);
}
.guideline::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(26,26,26,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(26,26,26,.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.guideline > .container { position: relative; }

.guideline__sheet {
  max-width: 920px;
  margin: 0 auto;
  background: var(--cream);
  border: 3px solid var(--black);
  border-radius: var(--r-lg);
  box-shadow: 8px 8px 0 0 var(--black);
  overflow: hidden;
}
.guideline__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: stretch;
  border-bottom: 2px solid var(--black);
}
.guideline__row:last-child { border-bottom: none; }
.guideline__label {
  background: var(--yellow);
  padding: 24px 24px;
  font-family: var(--font-display);
  font-size: 18px;
  border-right: 2px solid var(--black);
  display: flex;
  align-items: center;
}
.guideline__value {
  padding: 24px 28px;
  font-size: 16px;
  line-height: 1.85;
}
.guideline__value p { margin: 0; }
.sub-note { font-size: 13px; color: var(--gray-600); }

.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
}
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 1px;
  width: 22px; height: 22px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}
.checklist--small li { font-size: 14px; }
.inline-link {
  color: var(--black);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  text-decoration-color: var(--yellow);
  font-weight: 700;
  transition: text-decoration-color .15s;
}
.inline-link:hover { text-decoration-color: var(--pink); }
.big-zero {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  padding: 0 12px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: middle;
}

/* ============ REGISTRATION ============ */
.registration {
  padding: 96px 0;
  background: var(--yellow-soft);
  position: relative;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.steps::before {
  display: none;
  content: '';
  position: absolute;
  top: 90px;
  left: 10%;
  right: 10%;
  height: 3px;
  background-image: radial-gradient(circle, var(--black) 2px, transparent 2px);
  background-size: 14px 3px;
  background-repeat: repeat-x;
  z-index: 0;
}
.step {
  position: relative;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--r-lg);
  padding: 24px 22px 28px;
  box-shadow: 5px 5px 0 0 var(--black);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1;
  transition: transform .2s;
}
.step:hover { transform: translateY(-4px); }
.step__no {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
}
.step__no span {
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--gray-600);
}
.step__body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 8px;
  font-weight: 400;
  line-height: 1.3;
}
.step__body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--black-soft);
  margin: 0;
}
.step__icon {
  position: absolute;
  top: -16px;
  right: 16px;
  width: 56px; height: 56px;
  background: var(--yellow);
  border: 3px solid var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  box-shadow: 3px 3px 0 0 var(--black);
}
.step--final { background: var(--black); color: var(--cream); }
.step--final .step__no { color: var(--yellow); }
.step--final .step__no span { color: var(--cream); opacity: .6; }
.step--final h3 { color: var(--cream); }
.step--final p { color: var(--cream); opacity: .8; }
.step--final .step__icon { background: var(--pink); }

/* ============ FAQ ============ */
.faq {
  padding: 96px 0;
  background: var(--cream);
}
.faq__list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 4px 4px 0 0 var(--black);
  transition: box-shadow .2s;
}
.faq-item[open] { box-shadow: 6px 6px 0 0 var(--black); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__q {
  font-family: var(--font-display);
  font-size: 22px;
  width: 40px; height: 40px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.faq-item__title { line-height: 1.5; }
.faq-item__toggle {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  width: 36px; height: 36px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform .25s;
}
.faq-item[open] .faq-item__toggle { transform: rotate(45deg); }
.faq-item__a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 4px 24px 24px;
  border-top: 2px dashed var(--gray-200);
  padding-top: 20px;
}
.faq-item__a-mark {
  font-family: var(--font-display);
  font-size: 22px;
  width: 40px; height: 40px;
  background: var(--pink);
  color: var(--white);
  border: 2px solid var(--black);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.faq-item__a p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--black-soft);
}

/* ============ LESSON ============ */
.lesson {
  padding: 96px 0;
  background: var(--white);
  border-top: 3px solid var(--black);
}
.lesson__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}
.lesson__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lesson-card {
  background: var(--cream);
  border: 3px solid var(--black);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: 6px 6px 0 0 var(--black);
  position: relative;
}
.lesson-card--yellow { background: var(--yellow); }
.lesson-card__tag {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  border: 2px solid var(--black);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
}
.lesson-card__tag--alt { background: var(--black); color: var(--yellow); }
.lesson-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  margin: 0 0 12px;
  font-weight: 400;
  line-height: 1.3;
}
.lesson-card p {
  font-size: 15px;
  line-height: 1.9;
  margin: 0 0 16px;
  color: var(--black-soft);
}
.lesson-card__note {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 2px dashed var(--gray-400);
}
.lesson-card__note .hand {
  font-family: var(--font-hand);
  font-size: 16px;
  color: var(--gray-600);
}
.lesson-card__list {
  margin: 12px 0 20px;
}
.lesson-card__list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  margin-bottom: 6px;
}
.lesson-card__list li::before {
  content: '◆';
  position: absolute;
  left: 0; top: 0;
  color: var(--black);
}

/* ============ FORM ============ */
.form-section {
  padding: 96px 0 120px;
  background: var(--black);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.form-section::before,
.form-section::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .1;
  pointer-events: none;
}
.form-section::before { top: -100px; left: -100px; }
.form-section::after { bottom: -100px; right: -100px; }

.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.form-wrap__head {
  text-align: center;
  margin-bottom: 40px;
}
.form {
  background: var(--cream);
  color: var(--black);
  border: 3px solid var(--cream);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: 10px 10px 0 0 var(--yellow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 100%;
  box-sizing: border-box;
}
.field {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.field--half { grid-column: span 1; }
.field label {
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.req {
  background: var(--pink);
  color: var(--white);
  font-size: 10px;
  padding: 2px 8px;
  border-radius: var(--r-pill);
  font-weight: 700;
}
.field__hint {
  font-size: 13px;
  color: var(--gray-600);
  margin: -4px 0 4px;
  line-height: 1.6;
}
.field input,
.field select,
.field textarea {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--black);
  transition: box-shadow .15s, transform .15s;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  box-shadow: 3px 3px 0 0 var(--yellow), 4px 4px 0 0 var(--black);
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a1a1a' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; background-size: 12px; padding-right: 40px; }

.field--check { flex-direction: row; align-items: center; }
.check {
  display: flex;
  gap: 12px;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
}
.check input { position: absolute; opacity: 0; pointer-events: none; }
.check__box {
  width: 24px; height: 24px;
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: 6px;
  position: relative;
  flex-shrink: 0;
  transition: background .15s;
}
.check input:checked + .check__box {
  background: var(--yellow);
}
.check input:checked + .check__box::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 16px;
}
.ul { text-decoration: underline; }

.form button[type="submit"] {
  grid-column: span 2;
  margin-top: 8px;
}
.form__note {
  grid-column: span 2;
  text-align: center;
  font-size: 13px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.8;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--cream);
  border-top: 3px solid var(--black);
  padding: 64px 0 0;
}
.footer__inner { position: relative; }
.footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand p {
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--black-soft);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  margin: 0 0 16px;
  font-weight: 400;
}
.footer__col ul li {
  margin-bottom: 10px;
}
.footer__col ul a {
  font-size: 14px;
  color: var(--black-soft);
  font-weight: 500;
  transition: color .15s;
}
.footer__col ul a:hover { color: var(--pink); }

.footer__bottom {
  border-top: 2px solid var(--black);
  padding: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.footer__big {
  font-family: var(--font-display);
  font-size: clamp(60px, 16vw, 200px);
  line-height: 1;
  letter-spacing: -.02em;
  background: linear-gradient(180deg, var(--black) 60%, var(--yellow) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
}
.footer__copy {
  font-size: 12px;
  color: var(--gray-600);
}

/* === FORM responsive (independent of hero breakpoint) === */
@media (max-width: 720px) {
  .form { grid-template-columns: 1fr; padding: 28px; gap: 18px; box-shadow: 6px 6px 0 0 var(--yellow); }
  .field, .field--half, .field--check,
  .form button[type="submit"], .form__note { grid-column: 1 / -1; }
  .form-section { padding: 72px 0 96px; }
}

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .sp-only { display: inline; }
  .nav__links { display: none; }
  .nav { padding: 12px 20px; gap: 16px; }
  .container { padding: 0 20px; }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 24px 20px 48px;
    text-align: center;
  }
  .hero__left { max-width: 640px; margin: 0 auto; }
  .hero__eyebrow { margin-left: auto; margin-right: auto; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__badges { justify-content: center; }
  .hero__ctas { justify-content: center; }
  .hero__meta { justify-content: center; }
  .hero__right { height: 520px; max-width: 460px; margin: 0 auto; }
  .hero-card { inset: 0 24px 104px 0; }
  .floating--note { right: -16px; }
  .floating--clapper { left: -12px; bottom: -8px; }
  .hero__meta { gap: 16px; }
  .meta-item__num { font-size: 24px; }
  .about__grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-card--big { grid-column: span 2; grid-row: auto; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .lesson__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__top { grid-template-columns: 1fr; }
  .form { grid-template-columns: 1fr; padding: 28px; }
  .field, .field--half, .field--check,
  .form button[type="submit"], .form__note { grid-column: 1 / -1; }
  .guideline__row { grid-template-columns: 1fr; }
  .guideline__label { border-right: none; border-bottom: 2px solid var(--black); padding: 14px 20px; }
  .guideline__value { padding: 20px; }
}
@media (max-width: 640px) {
  .about__grid { grid-template-columns: 1fr; }
  .about-card--big { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .tape--hero-1, .tape--hero-2 { display: none; }
}

/* ===== Narrow phones (<=480px, supports down to 350px) ===== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav { padding: 10px 14px; gap: 10px; }
  .logo-svg--nav { height: 28px; }
  .nav__cta { padding: 8px 12px; font-size: 13px; gap: 8px; }
  .nav__cta-arrow { width: 18px; height: 18px; font-size: 11px; }
  .hero { padding-top: 32px; }
  .hero__inner { padding: 16px 16px 32px; gap: 20px; }
  .hero__eyebrow { font-size: 16px; padding: 5px 12px; }
  .hero__title { font-size: 34px; line-height: 1.18; }
  .hero__lead { font-size: 15px; }
  .hero__badges { gap: 6px; }
  .badge { padding: 6px 12px; font-size: 12px; }
  .hero__meta { gap: 12px; flex-wrap: wrap; }
  .meta-item__num { font-size: 22px; }
  .meta-item__num span { font-size: 11px; }
  .meta-divider { height: 26px; }
  .hero__right { height: 400px; max-width: 100%; }
  .hero-card { inset: 0 16px 88px 0; padding: 12px; }
  .hero-card__stamp { width: 72px; height: 72px; font-size: 12px; top: -32px; right: -24px; border-width: 2.5px; }
  .hero-card__caption { margin-top: 8px; }
  .hero-card__caption .hand { font-size: 15px; }
  .floating--note { right: -8px; padding: 10px 14px; top: 32px; }
  .floating--note .hand { font-size: 14px; }
  .floating--clapper { left: -12px; bottom: -8px; }
  .clapper { width: 140px; }
  .clapper__top { height: 18px; }
  .clapper__body { padding: 8px 10px; font-size: 11px; }
  .btn--cta-xl { font-size: 18px; padding: 16px 26px; gap: 12px; min-width: 280px; }
  .btn--cta-xl .btn__arrow { width: 28px; height: 28px; font-size: 14px; }
  .btn--cta::after { width: 54px; height: 54px; top: -16px; left: -14px; font-size: 10px; }
  .section-head__title { font-size: 32px; }
  /* .section-head__sub { font-size: 14px; } */
  .form { padding: 20px; box-shadow: 6px 6px 0 0 var(--yellow); }
  .form-section { padding: 56px 0 72px; }
  .form-wrap__head { margin-bottom: 28px; }
  .lesson-card { padding: 22px; }
  .lesson-card h3 { font-size: 22px; }
  .about-card { padding: 22px; }
  .about-card h3 { font-size: 22px; }
  .step { padding: 22px 18px; }
  .step__body h3 { font-size: 20px; }
  .marquee { font-size: 18px; padding: 12px 0; }
  .frame { width: 160px; height: 110px; }
  .frame span { font-size: 14px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer { padding-top: 48px; }
  .guideline { padding: 64px 0; }
  .guideline__label { padding: 12px 16px; font-size: 16px; }
  .guideline__value { padding: 16px; }
  .big-zero { font-size: 36px; }
  .registration { padding: 64px 0; }
  .faq { padding: 64px 0; }
  .faq-item summary { padding: 18px 16px; gap: 12px;}
  .faq-item__q, .faq-item__a-mark { width: 34px; height: 34px; font-size: 18px; }
  .faq-item__toggle { width: 30px; height: 30px; font-size: 20px; }
  .faq-item__a { padding: 0 16px 20px; gap: 12px; }
  .lesson { padding: 64px 0; }
  .about { padding: 64px 0; }
}



/* === LOGO SVG SIZING === */
.logo-svg { display: block; height: auto; }
.logo-svg--nav { height: 36px; width: auto; }
.logo-svg--footer { height: 56px; width: auto; }
.logo-svg--form { height: 64px; width: auto; margin: 0 auto 16px; }
.form-wrap__logo { display: flex; justify-content: center; }
.footer-logo { display: inline-block; }

@media (max-width: 1000px) {
  .logo-svg--nav { height: 32px; }
  .logo-svg--footer { height: 48px; }
  .logo-svg--form { height: 52px; }
}

/* ============ PRIVACY POLICY ============ */
.privacy-policy {
  padding: 96px 0;
  background: var(--cream);
  min-height: 60vh;
}
.privacy-policy__header {
  margin-bottom: 56px;
}
.privacy-policy__content {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border: 3px solid var(--black);
  border-radius: var(--r-lg);
  padding: 48px;
  box-shadow: 8px 8px 0 0 var(--black);
}
.privacy-policy__intro {
  margin-bottom: 40px;
  padding: 24px;
  background: var(--yellow-soft);
  border: 2px solid var(--black);
  border-radius: var(--r-md);
}
.privacy-policy__intro p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
  color: var(--black-soft);
}
.privacy-policy__section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px dashed var(--gray-200);
}
.privacy-policy__section:last-of-type {
  border-bottom: none;
  margin-bottom: 32px;
}
.privacy-policy__section h2 {
  font-family: var(--font-display);
  font-size: 24px;
  margin: 0 0 16px;
  font-weight: 400;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 12px;
}
.privacy-policy__section h2::before {
  content: '';
  width: 6px;
  height: 24px;
  background: var(--yellow);
  border: 2px solid var(--black);
  border-radius: 2px;
  flex-shrink: 0;
}
.privacy-policy__section p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--black-soft);
  margin: 0 0 16px;
}
.privacy-policy__section p:last-child {
  margin-bottom: 0;
}
.privacy-policy__section ul {
  margin: 16px 0;
  padding-left: 0;
}
.privacy-policy__section ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--black-soft);
}
.privacy-policy__section ul li::before {
  content: '●';
  position: absolute;
  left: 8px;
  top: 0;
  color: var(--yellow-deep);
  font-size: 12px;
}
.privacy-policy__contact {
  background: var(--cream);
  border: 2px solid var(--black);
  border-radius: var(--r-md);
  padding: 20px 24px;
  margin-top: 16px;
}
.privacy-policy__contact p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.8;
}
.privacy-policy__contact p:last-child {
  margin-bottom: 0;
}
.privacy-policy__contact strong {
  font-weight: 700;
  color: var(--black);
}
.privacy-policy__footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid var(--gray-200);
  text-align: right;
}
.privacy-policy__footer p {
  font-size: 13px;
  color: var(--gray-600);
  margin: 4px 0;
}
.privacy-policy__back {
  max-width: 880px;
  margin: 40px auto 0;
  text-align: center;
}

@media (max-width: 1100px) {
  .privacy-policy { padding: 72px 0; }
  .privacy-policy__content { padding: 32px 28px; }
}
@media (max-width: 480px) {
  .privacy-policy { padding: 56px 0; }
  .privacy-policy__content { padding: 24px 20px; }
  .privacy-policy__intro { padding: 16px; }
  .privacy-policy__section h2 { font-size: 20px; }
  .privacy-policy__contact { padding: 16px; }
}
