/* ============================================================
   WabiFace Sakura — Promo Page styles
   (Extends ../style.css)
   ============================================================ */

.promo-hero {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 24px 60px;
  text-align: center;
}

/* Hero video (re-used from main LP) */
.promo-hero-video {
  width: 220px;
  height: 220px;
  margin: 0 auto 32px;
  border-radius: 50%;
  overflow: hidden;
  background: #0a0a14;
  box-shadow: 0 24px 60px rgba(214, 56, 56, 0.18), 0 8px 24px rgba(0, 0, 0, 0.45);
}
.promo-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 540px) {
  .promo-hero-video { width: 160px; height: 160px; margin-bottom: 22px; }
}
@media (max-width: 360px) {
  .promo-hero-video { width: 140px; height: 140px; margin-bottom: 20px; }
}

.promo-hero h1 {
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.2;
  margin: 16px 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: rgba(245, 230, 211, 0.96);
}

.promo-hero h1 .emph {
  color: var(--gold, #d6a750);
  font-style: italic;
}

.promo-hero .lead {
  font-size: 15px;
  color: var(--ink-mute, rgba(245, 230, 211, 0.72));
  margin-bottom: 24px;
  line-height: 1.7;
}

/* ----- Counter ----- */
.promo-counter {
  margin: 28px 0 36px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute, rgba(245, 230, 211, 0.7));
}
.counter-num {
  display: inline-block;
  font-size: 40px;
  font-weight: 500;
  color: var(--gold, #d6a750);
  font-family: 'Cormorant Garamond', serif;
  margin-right: 6px;
  vertical-align: -2px;
  line-height: 1;
}
.counter-sub {
  letter-spacing: 0.04em;
}

/* Inline (subtle) counter — used in launch promotion view */
.promo-counter-inline {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 230, 211, 0.5);
  margin: 8px 0 28px;
}

/* ----- Device compatibility notice ----- */
.device-notice {
  max-width: 480px;
  margin: 0 auto 28px;
  padding: 18px 22px;
  background: rgba(255, 200, 100, 0.08);
  border: 1px solid rgba(255, 200, 100, 0.35);
  border-radius: 10px;
  text-align: left;
}
.device-notice-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffd1a3;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.device-notice-body {
  font-size: 13px;
  color: rgba(245, 230, 211, 0.85);
  line-height: 1.7;
  margin: 0 0 10px;
}
.device-notice-body strong {
  color: #ffe1bb;
}
.device-notice-confirm {
  font-size: 12px;
  color: rgba(245, 230, 211, 0.6);
  margin: 0;
  font-style: italic;
}

.device-help {
  margin: 12px 0;
  padding: 0;
  font-size: 13px;
}
.device-help summary {
  cursor: pointer;
  color: #ffd1a3;
  text-decoration: underline;
  text-underline-offset: 3px;
  list-style: none;
  padding: 6px 0;
  user-select: none;
  transition: color .2s;
}
.device-help summary::-webkit-details-marker { display: none; }
.device-help summary::before {
  content: '▸ ';
  display: inline-block;
  margin-right: 4px;
  transition: transform .2s;
}
.device-help[open] summary::before {
  transform: rotate(90deg);
}
.device-help summary:hover {
  color: #ffe1bb;
}
.device-help-body {
  padding: 10px 0 4px 14px;
  font-size: 12px;
  color: rgba(245, 230, 211, 0.85);
  line-height: 1.7;
  border-left: 2px solid rgba(255, 200, 100, 0.3);
  padding-left: 14px;
  margin-top: 6px;
}
.device-help-body ol {
  padding-left: 18px;
  margin: 6px 0;
}
.device-help-body ol li {
  margin-bottom: 2px;
}
.device-help-body strong {
  color: #ffe1bb;
}
.device-help-links {
  font-size: 11px;
  color: rgba(245, 230, 211, 0.6);
  margin: 8px 0 0;
}
.device-help-links a {
  color: rgba(255, 220, 180, 0.85);
  text-decoration: underline;
}

@media (max-width: 540px) {
  .device-notice {
    padding: 14px 16px;
  }
  .device-notice-title { font-size: 13px; }
  .device-notice-body { font-size: 12px; }
}

/* Softer info-style notice (launch promo variant — neutral colors, no warning vibes) */
.device-notice-info {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.device-notice-info .device-notice-title {
  color: rgba(245, 230, 211, 0.92);
}
.device-notice-info .device-notice-body strong {
  color: rgba(255, 230, 200, 0.96);
}
.device-notice-info .device-help summary {
  color: rgba(245, 230, 211, 0.78);
}
.device-notice-info .device-help summary:hover {
  color: rgba(245, 230, 211, 0.96);
}
.device-notice-info .device-help-body {
  border-left-color: rgba(255, 255, 255, 0.18);
}

/* ----- Form ----- */
.claim-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}

.claim-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute, rgba(245, 230, 211, 0.65));
  margin-bottom: -4px;
}

.claim-form input[type="email"] {
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: #f5e6d3;
  transition: border-color .2s;
}

.claim-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold, #d6a750);
  background: rgba(255, 255, 255, 0.06);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-mute, rgba(245, 230, 211, 0.65));
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: #d63838;
}

.claim-btn {
  margin-top: 8px;
  padding: 16px 24px;
  font-size: 15px;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 0;
  font-family: inherit;
}

.claim-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.recaptcha-note {
  font-size: 11px;
  color: rgba(245, 230, 211, 0.5);
  text-align: center;
  margin-top: 4px;
}
.recaptcha-note a {
  color: rgba(245, 230, 211, 0.65);
  text-decoration: underline;
}

/* ----- Result ----- */
.claim-result {
  margin-top: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.result-success {
  background: linear-gradient(180deg, rgba(214, 56, 56, 0.10) 0%, rgba(214, 56, 56, 0.04) 100%);
  border: 1px solid rgba(214, 56, 56, 0.35);
  border-radius: 14px;
  padding: 36px 28px;
  text-align: center;
}

.result-eyebrow {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(214, 56, 56, 0.9);
  margin-bottom: 8px;
}

.result-success h2 {
  font-size: 28px;
  margin: 0 0 18px;
}

.code-display {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', monospace;
  font-size: 22px;
  letter-spacing: 0.12em;
  background: rgba(0, 0, 0, 0.45);
  padding: 18px 16px;
  border-radius: 6px;
  margin: 22px 0;
  word-break: break-all;
  color: #fff;
  border: 1px dashed rgba(214, 56, 56, 0.4);
}

.result-success .btn-primary {
  margin-top: 18px;
}

.result-note {
  font-size: 13px;
  color: rgba(245, 230, 211, 0.65);
  margin-top: 24px;
  line-height: 1.6;
}

.spam-notice {
  background: rgba(255, 200, 100, 0.10);
  border: 1px solid rgba(255, 200, 100, 0.35);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  color: rgba(255, 220, 180, 0.95);
  text-align: left;
  margin: 16px 0;
  line-height: 1.6;
}
.spam-notice strong {
  color: #ffd1a3;
}

.redeem-steps {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  padding: 18px 22px;
  margin: 18px 0;
  text-align: left;
}
.redeem-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold, #d6a750);
  margin: 0 0 10px;
}
.redeem-steps ol {
  font-size: 13px;
  color: rgba(245, 230, 211, 0.88);
  padding-left: 20px;
  line-height: 1.8;
  margin: 6px 0 12px;
}
.redeem-steps ol li {
  margin-bottom: 4px;
}
.redeem-steps strong {
  color: #ffe1bb;
}
.redeem-warn {
  font-size: 12px;
  color: #ffb380;
  margin: 8px 0 0;
  line-height: 1.5;
}
.redeem-warn strong {
  color: #ffd1a3;
}

.result-error {
  background: rgba(180, 80, 80, 0.10);
  border: 1px solid rgba(180, 80, 80, 0.35);
  padding: 18px 20px;
  border-radius: 8px;
  text-align: center;
  color: rgba(245, 230, 211, 0.85);
}

/* ----- Sold-out / not ready states ----- */
.promo-state {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 48px 28px;
  text-align: center;
  margin-top: 24px;
}
.promo-state h2 {
  margin: 0 0 14px;
  font-size: 28px;
}
.promo-state p {
  color: rgba(245, 230, 211, 0.7);
  margin-bottom: 24px;
  line-height: 1.6;
}
.promo-state .muted {
  font-size: 13px;
  margin-top: 18px;
  margin-bottom: 0;
}

/* ----- Sub-FAQ ----- */
.promo-faq {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.promo-faq h2 {
  font-size: 22px;
  margin-bottom: 18px;
  text-align: center;
}
.promo-faq ol {
  padding-left: 22px;
  line-height: 1.8;
  color: rgba(245, 230, 211, 0.8);
}
.promo-faq ol li {
  margin-bottom: 6px;
}
.promo-faq .muted {
  text-align: center;
  font-size: 13px;
  color: rgba(245, 230, 211, 0.6);
  margin-top: 24px;
}

@media (max-width: 540px) {
  .promo-hero { padding: 110px 18px 40px; }
  .promo-hero h1 { font-size: 28px; line-height: 1.25; }
  .promo-hero .lead { font-size: 14px; }
  .promo-faq { padding: 30px 18px 60px; }
}
@media (max-width: 360px) {
  .promo-hero h1 { font-size: 24px; }
  .promo-counter-inline { font-size: 10px; }
}

/* ----- Privacy note (under form) - kept for backward compatibility ----- */
.privacy-note {
  font-size: 11px;
  color: rgba(245, 230, 211, 0.5);
  text-align: center;
  margin: 8px auto 0;
  line-height: 1.7;
  max-width: 380px;
}
.privacy-note a {
  color: rgba(245, 230, 211, 0.72);
  text-decoration: underline;
}

/* ----- Slim form finefoot (combined recaptcha + privacy) ----- */
.form-finefoot {
  font-size: 11px;
  color: rgba(245, 230, 211, 0.5);
  text-align: center;
  margin: 12px auto 0;
  line-height: 1.7;
  max-width: 380px;
}
.form-finefoot a {
  color: rgba(245, 230, 211, 0.72);
  text-decoration: underline;
}
.form-finefoot-ja {
  margin-top: 6px !important;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 11px;
  color: rgba(245, 230, 211, 0.55);
  font-family: 'Inter', 'Noto Serif JP', 'Hiragino Sans', sans-serif;
}

/* ----- Inline help link inside checkbox ----- */
.inline-help {
  font-size: 12px;
  color: rgba(255, 220, 180, 0.7);
  text-decoration: underline;
  margin-left: 4px;
  white-space: nowrap;
}
.inline-help:hover {
  color: #fff;
}

/* ----- Wear OS help (collapsible, below form) ----- */
.wearos-help-collapsible {
  max-width: 420px;
  margin: 28px auto 0;
  font-size: 13px;
  color: rgba(245, 230, 211, 0.65);
}
.wearos-help-collapsible summary {
  cursor: pointer;
  list-style: none;
  padding: 8px 0;
  text-align: center;
  color: rgba(245, 230, 211, 0.6);
  user-select: none;
  transition: color .2s;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.wearos-help-collapsible summary::-webkit-details-marker { display: none; }
.wearos-help-collapsible summary::before {
  content: '▸ ';
  display: inline-block;
  margin-right: 4px;
  transition: transform .2s;
}
.wearos-help-collapsible[open] summary::before {
  transform: rotate(90deg);
}
.wearos-help-collapsible summary:hover {
  color: rgba(245, 230, 211, 0.95);
}
.wearos-help-body {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  margin-top: 8px;
  text-align: left;
  line-height: 1.7;
}
.wearos-help-body ol {
  padding-left: 22px;
  margin: 6px 0;
}
.wearos-help-body strong {
  color: rgba(255, 230, 200, 0.95);
}
.wearos-help-body .muted {
  font-size: 12px;
  color: rgba(245, 230, 211, 0.5);
  margin: 8px 0 0;
}

/* ----- Alternative CTA: skip the email, buy directly ----- */
.alt-cta {
  max-width: 420px;
  margin: 28px auto 0;
  padding: 22px 0 0;
  text-align: center;
  border-top: 1px dashed rgba(255, 255, 255, 0.13);
}
.alt-cta p {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(245, 230, 211, 0.55);
  margin: 0 0 10px;
  text-transform: uppercase;
}
.alt-cta-link {
  display: inline-block;
  font-size: 14px;
  color: rgba(255, 220, 180, 0.95);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 220, 180, 0.4);
  padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.alt-cta-link:hover {
  color: #fff;
  border-bottom-color: #fff;
}

/* ----- Trust block: Google Play badge + operator ----- */
.trust-block {
  margin: 48px auto 0;
  text-align: center;
  max-width: 420px;
}
.play-badge-link {
  display: inline-block;
  margin-bottom: 18px;
}
.play-badge {
  height: 56px;
  width: auto;
  display: block;
}
.operator-info {
  font-size: 12px;
  color: rgba(245, 230, 211, 0.5);
  line-height: 1.7;
  margin: 0;
}
.operator-info a {
  color: rgba(245, 230, 211, 0.72);
  text-decoration: underline;
}

/* ============================================================
   Early Tester LP — additions (2026-05-08)
   ------------------------------------------------------------
   Mobile-first. Uses the same design tokens as the main LP.
   ============================================================ */

html { scroll-behavior: smooth; }
.tester-lp { scroll-padding-top: 64px; }
.tester-lp section { scroll-margin-top: 64px; }

/* ----- Hero ----- */
.tester-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 96px 24px 40px;
  text-align: center;
}
.tester-hero-media {
  width: 220px;
  height: 220px;
  margin: 0 auto 28px;
  border-radius: 50%;
  overflow: hidden;
  background: #0a0a14;
  box-shadow: 0 24px 60px rgba(214, 56, 56, 0.18), 0 8px 24px rgba(0, 0, 0, 0.45);
}
.tester-hero-media video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.tester-hero h1 {
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.2;
  margin: 14px 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  color: rgba(245, 230, 211, 0.96);
}
.tester-sub {
  font-size: 16px;
  color: rgba(245, 230, 211, 0.78);
  line-height: 1.7;
  margin: 0 auto 26px;
  max-width: 540px;
}
.tester-sub strong { color: rgba(255, 230, 200, 0.96); font-weight: 500; }

.tester-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 18px;
}
.tester-cta-row .btn-primary,
.tester-cta-row .btn-secondary {
  min-width: 220px;
}
.tester-cta-primary {
  cursor: pointer;
  font-family: inherit;
  border: 0;
}
.tester-hero-note {
  font-size: 13px;
  color: rgba(245, 230, 211, 0.6);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 540px) {
  .tester-hero { padding: 100px 18px 28px; }
  .tester-hero-media { width: 160px; height: 160px; margin-bottom: 22px; }
  .tester-hero h1 { font-size: 28px; line-height: 1.25; }
  .tester-sub { font-size: 15px; }
  .tester-cta-row { flex-direction: column; align-items: stretch; }
  .tester-cta-row .btn-primary,
  .tester-cta-row .btn-secondary { width: 100%; min-width: 0; }
}

/* ----- Program section ----- */
.tester-program {
  max-width: 640px;
  margin: 0 auto;
  padding: 30px 18px 30px;
}
.tester-card {
  background: linear-gradient(180deg, rgba(214, 175, 85, 0.06) 0%, rgba(214, 175, 85, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 16px;
  padding: 32px 26px;
  text-align: left;
}
.tester-card h2 {
  font-size: 24px;
  margin: 0 0 14px;
  color: rgba(245, 230, 211, 0.95);
  text-align: center;
}
.tester-card p {
  font-size: 15px;
  color: rgba(245, 230, 211, 0.78);
  line-height: 1.75;
  margin: 0 0 14px;
}
.tester-card p strong { color: #ffe1bb; font-weight: 500; }

.tester-bullets {
  margin: 8px 0 22px;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.tester-bullets li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: rgba(245, 230, 211, 0.85);
  line-height: 1.5;
}
.tester-bullets li::before {
  content: '🌸';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
}
.tester-card .btn-primary {
  display: block;
  text-align: center;
  margin: 6px auto 14px;
  cursor: pointer;
  font-family: inherit;
  border: 0;
}
.tester-fineprint {
  font-size: 12px !important;
  color: rgba(245, 230, 211, 0.55) !important;
  text-align: center;
  margin: 0 !important;
  line-height: 1.7;
}
.tester-counter {
  display: inline-block;
  margin-top: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.85);
}

@media (max-width: 480px) {
  .tester-bullets { grid-template-columns: 1fr; gap: 6px; }
  .tester-card { padding: 26px 20px; }
}

/* ----- Compatibility ----- */
.tester-compat {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 24px;
}
.tester-compat h2 {
  font-size: 22px;
  text-align: center;
  margin: 0 0 22px;
}
.tester-compat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.tester-compat-col {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 18px 20px;
}
.tester-compat-col h3 {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.85);
  margin: 0 0 10px;
}
.tester-compat-col ul {
  margin: 0; padding-left: 18px;
  font-size: 14px;
  color: rgba(245, 230, 211, 0.85);
  line-height: 1.8;
}
.tester-compat-col strong { color: #ffe1bb; }
.tester-compat-note {
  font-size: 12px;
  color: rgba(245, 230, 211, 0.55);
  margin: 10px 0 0;
  line-height: 1.6;
}
.tester-compat .wearos-help-collapsible {
  margin-top: 18px;
}

@media (max-width: 540px) {
  .tester-compat-grid { grid-template-columns: 1fr; }
}

/* ----- Features ----- */
.tester-features {
  max-width: 880px;
  margin: 0 auto;
  padding: 30px 24px 30px;
}
.tester-features h2 {
  font-size: 24px;
  text-align: center;
  margin: 0 0 22px;
}
.tester-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.tester-feature {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 20px 22px;
}
.tester-feature h3 {
  font-size: 16px;
  margin: 0 0 8px;
  color: rgba(255, 230, 200, 0.95);
}
.tester-feature p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 230, 211, 0.78);
}

@media (max-width: 540px) {
  .tester-feature-grid { grid-template-columns: 1fr; }
}

/* ----- Redeem steps (card style) ----- */
.tester-redeem {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 24px 30px;
}
.tester-redeem h2 {
  font-size: 24px;
  text-align: center;
  margin: 0 0 22px;
}
.tester-redeem-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.tester-redeem-steps > li {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  align-items: flex-start;
}
.tester-step-num {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: rgba(212, 175, 55, 0.95);
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  line-height: 28px;
  user-select: none;
}
.tester-redeem-steps h4 {
  font-size: 14px;
  margin: 0 0 4px;
  color: rgba(255, 230, 200, 0.95);
  font-weight: 500;
}
.tester-redeem-steps p {
  margin: 0;
  font-size: 13px;
  color: rgba(245, 230, 211, 0.72);
  line-height: 1.6;
}
.tester-redeem-warn {
  font-size: 13px;
  color: #ffb380;
  text-align: center;
  margin: 6px auto 0;
  line-height: 1.6;
  max-width: 540px;
}
.tester-redeem-warn.muted {
  color: rgba(245, 230, 211, 0.55);
}

@media (max-width: 640px) {
  .tester-redeem-steps { grid-template-columns: 1fr; }
}

/* ----- Form section ----- */
.tester-form-section {
  max-width: 560px;
  margin: 0 auto;
  padding: 30px 24px 20px;
  text-align: center;
}
.tester-form-section h2 {
  font-size: 24px;
  margin: 0 0 10px;
}
.tester-form-lead {
  font-size: 14px;
  color: rgba(245, 230, 211, 0.7);
  margin: 0 0 24px;
  line-height: 1.7;
}
.claim-form .required { color: rgba(214, 56, 56, 0.95); }
.claim-form .optional { color: rgba(245, 230, 211, 0.45); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
.claim-form input[type="text"] {
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: #f5e6d3;
  transition: border-color .2s;
}
.claim-form input[type="text"]:focus {
  outline: none;
  border-color: var(--gold, #d6a750);
  background: rgba(255, 255, 255, 0.06);
}

/* Honeypot field — visually hidden + accessibility-friendly */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
}

/* ----- FAQ ----- */
.tester-faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 30px 24px 50px;
}
.tester-faq h2 {
  font-size: 24px;
  text-align: center;
  margin: 0 0 22px;
}
.tester-faq details {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 16px 4px;
}
.tester-faq details:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.tester-faq summary {
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  color: rgba(245, 230, 211, 0.92);
  position: relative;
  padding-right: 28px;
  user-select: none;
}
.tester-faq summary::-webkit-details-marker { display: none; }
.tester-faq summary::after {
  content: '+';
  position: absolute;
  right: 6px;
  top: -2px;
  color: rgba(212, 175, 55, 0.85);
  font-size: 22px;
  line-height: 1;
  transition: transform .2s;
}
.tester-faq details[open] summary::after { content: '−'; }
.tester-faq details p {
  font-size: 14px;
  color: rgba(245, 230, 211, 0.75);
  margin: 12px 0 4px;
  line-height: 1.75;
}

/* ----- Bottom CTA ----- */
.tester-bottom-cta {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  text-align: center;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  margin-top: 20px;
}
.tester-bottom-cta h2 {
  font-size: 22px;
  margin: 0 0 8px;
}
.tester-bottom-cta p {
  font-size: 14px;
  color: rgba(245, 230, 211, 0.65);
  margin: 0 0 20px;
}
.tester-bottom-cta .btn-primary {
  cursor: pointer;
  font-family: inherit;
  border: 0;
  min-width: 240px;
}

/* ============================================================
   CV-optimized additions (2026-05-09)
   ============================================================ */

/* ----- Hero: tighter mobile, CTA visible above the fold ----- */
.tester-hero {
  padding: 76px 22px 28px;
}
.tester-hero h1 {
  font-size: clamp(26px, 5vw, 40px);
  line-height: 1.22;
  margin: 10px 0 14px;
}
.tester-hero-media {
  width: 160px;
  height: 160px;
  margin: 0 auto 18px;
}
.tester-sub {
  font-size: 15px;
  margin: 0 auto 14px;
}
.tester-hero-meta {
  font-size: 13px;
  color: rgba(245, 230, 211, 0.7);
  line-height: 1.7;
  margin: 0 auto 18px;
  max-width: 520px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}
.tester-hero-meta strong {
  color: rgba(255, 230, 200, 0.95);
}
.tester-cta-row {
  margin: 0 0 12px;
}
.tester-cta-sub {
  font-size: 13px;
  color: rgba(245, 230, 211, 0.7);
  margin: 0 0 6px;
  line-height: 1.6;
}
.tester-counter-inline {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 999px;
  font-size: 11px;
  color: rgba(212, 175, 55, 0.95);
  letter-spacing: 0.04em;
}

/* Tighten hero on small screens so CTA appears with minimal scroll */
@media (max-width: 540px) {
  .tester-hero { padding: 90px 16px 22px; }
  .tester-hero-media { width: 130px; height: 130px; margin-bottom: 14px; }
  .tester-hero h1 { font-size: 24px; line-height: 1.25; margin-bottom: 10px; }
  .tester-sub { font-size: 14px; margin-bottom: 10px; }
  .tester-hero-meta { font-size: 12px; padding: 8px 12px; margin-bottom: 14px; }
  .tester-cta-row { gap: 10px; }
  .tester-cta-row .btn-primary,
  .tester-cta-row .btn-secondary { padding: 14px 20px; font-size: 15px; }
}
@media (max-width: 360px) {
  .tester-hero-media { width: 110px; height: 110px; }
  .tester-hero h1 { font-size: 22px; }
}

/* ----- Feedback note inside Program card ----- */
.tester-feedback-note {
  font-size: 13px !important;
  color: rgba(245, 230, 211, 0.7) !important;
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid rgba(212, 175, 55, 0.55);
  padding: 12px 14px !important;
  border-radius: 4px;
  margin: 0 0 18px !important;
  line-height: 1.7 !important;
}

/* ----- Reassurance card (just above form) ----- */
.reassure-card {
  max-width: 460px;
  margin: 0 auto 18px;
  padding: 22px 24px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.06) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.30);
  border-radius: 12px;
  text-align: left;
}
.reassure-title {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 230, 200, 0.96);
  margin: 0 0 12px;
  text-align: center;
}
.reassure-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.reassure-list li {
  font-size: 13px;
  color: rgba(245, 230, 211, 0.85);
  padding: 4px 0;
  line-height: 1.6;
}
.reassure-after {
  font-size: 13px;
  color: rgba(245, 230, 211, 0.78);
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  line-height: 1.6;
}
.reassure-after-ja {
  font-size: 11px;
  color: rgba(245, 230, 211, 0.55);
  margin: 8px 0 0;
  line-height: 1.7;
  font-family: 'Inter', 'Noto Serif JP', 'Hiragino Sans', sans-serif;
}

@media (max-width: 480px) {
  .reassure-card { padding: 18px 18px; }
  .reassure-title { font-size: 14px; }
}

/* ----- Compatibility quick-card (yes / no) ----- */
.compat-card {
  max-width: 460px;
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.compat-col {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 10px;
  padding: 12px 14px;
  text-align: left;
}
.compat-col h4 {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-weight: 500;
}
.compat-col-yes h4 { color: rgba(140, 220, 160, 0.85); }
.compat-col-no  h4 { color: rgba(220, 150, 140, 0.85); }
.compat-col ul {
  margin: 0;
  padding-left: 18px;
  font-size: 12px;
  color: rgba(245, 230, 211, 0.82);
  line-height: 1.7;
}
.compat-col-yes ul { list-style: '✓ '; }
.compat-col-no  ul { list-style: '× '; padding-left: 22px; }

@media (max-width: 480px) {
  .compat-card { grid-template-columns: 1fr; }
  .compat-col { padding: 10px 12px; }
}

/* ----- Form section: tighten + emphasize ----- */
.tester-form-section {
  padding: 24px 22px 18px;
}
.tester-form-section h2 {
  margin: 0 0 18px;
}
.claim-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 22px 18px;
  border-radius: 12px;
}
.claim-form input[type="email"],
.claim-form input[type="text"] {
  padding: 16px 16px;
  font-size: 16px;
  min-height: 50px;
}
.claim-btn {
  min-height: 54px;
  font-size: 16px !important;
  font-weight: 600 !important;
}

@media (max-width: 480px) {
  .tester-form-section { padding: 22px 16px 18px; }
  .claim-form { padding: 18px 16px 14px; }
}

/* ----- Honeypot (re-confirmed invisibility) ----- */
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  top: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.hp-field input { width: 1px; }

/* ----- FAQ first item highlight ----- */
.tester-faq details[open] summary {
  color: rgba(255, 230, 200, 0.96);
}
.tester-faq details:first-of-type[open] {
  background: rgba(212, 175, 55, 0.04);
  border-radius: 6px;
  padding: 16px 14px;
}

/* ============================================================
   Friction-zero claim UI (2026-05-09 v3)
   ============================================================ */

/* Counter badge in Hero */
.counter-badge {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 18px;
  background: rgba(212, 175, 55, 0.10);
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(245, 230, 211, 0.92);
}
.counter-badge strong {
  color: rgba(212, 175, 55, 1);
  font-size: 15px;
  font-weight: 600;
}

/* Quick-claim form (large, prominent) */
.quick-claim {
  max-width: 460px;
  margin: 0 auto 18px;
  padding: 24px 22px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  text-align: left;
}
.checkbox-large {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(245, 230, 211, 0.92);
  cursor: pointer;
  padding: 8px 0 16px;
}
.checkbox-large input[type="checkbox"] {
  width: 22px;
  height: 22px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #d4af37;
}
.checkbox-large strong { color: rgba(255, 230, 200, 0.96); }

.claim-btn-hero {
  display: block;
  width: 100%;
  padding: 18px 24px !important;
  font-size: 17px !important;
  font-weight: 600 !important;
  cursor: pointer;
  font-family: inherit;
  border: 0;
  letter-spacing: 0.02em;
  margin-top: 8px;
}
.claim-btn-hero:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.claim-microcopy {
  font-size: 12px;
  color: rgba(245, 230, 211, 0.6);
  text-align: center;
  margin: 12px 0 0;
  letter-spacing: 0.03em;
}

@media (max-width: 480px) {
  .quick-claim { padding: 20px 16px; }
  .checkbox-large { font-size: 14px; }
  .claim-btn-hero { padding: 16px 20px !important; font-size: 16px !important; }
}

/* Hero secondary CTA divider + buy button */
.hero-alt-cta {
  max-width: 460px;
  margin: 24px auto 0;
  text-align: center;
}
.hero-alt-cta-divider {
  position: relative;
  font-size: 11px;
  color: rgba(245, 230, 211, 0.45);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.hero-alt-cta-divider span {
  display: inline-block;
  background: var(--bg, #0b0e16);
  padding: 0 14px;
  position: relative;
  z-index: 1;
}
.hero-alt-cta-divider::before {
  content: '';
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
}
.hero-buy-cta {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.hero-alt-cta-note {
  font-size: 11px;
  color: rgba(245, 230, 211, 0.5);
  margin: 8px 0 0;
}

/* Apple Watch / non-Wear OS note */
.apple-watch-note {
  max-width: 460px;
  margin: 22px auto 0;
  font-size: 12px;
  color: rgba(245, 230, 211, 0.55);
  text-align: center;
  line-height: 1.7;
}
.apple-watch-note strong { color: rgba(245, 230, 211, 0.78); }
.apple-watch-note a {
  color: rgba(245, 230, 211, 0.65);
  text-decoration: underline;
}

/* Optional email (collapsed by default, with perks) */
.optional-email {
  max-width: 460px;
  margin: 22px auto 0;
  text-align: left;
  border: 1px dashed rgba(212, 175, 55, 0.30);
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.03);
  padding: 4px;
}
.optional-email summary {
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 230, 200, 0.92);
  padding: 12px 16px;
  user-select: none;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.optional-email summary::-webkit-details-marker { display: none; }
.optional-email summary::after {
  content: '▾';
  display: inline-block;
  margin-left: 6px;
  color: rgba(212, 175, 55, 0.7);
  font-size: 12px;
  transition: transform 0.2s;
}
.optional-email[open] summary::after { transform: rotate(180deg); }
.optional-email summary:hover { color: #fff; }
.opt-perk-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.20);
  color: rgba(212, 175, 55, 1);
  padding: 3px 10px;
  border-radius: 999px;
}
.optional-email-perks {
  list-style: none;
  padding: 0;
  margin: 0 16px 14px;
}
.optional-email-perks li {
  font-size: 13px;
  color: rgba(245, 230, 211, 0.86);
  line-height: 1.6;
  padding: 5px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.optional-email-perks li:first-child { border-top: 0; }
.optional-email-perks strong { color: rgba(255, 230, 200, 0.96); font-weight: 600; }

.optional-email input[type="email"] {
  display: block;
  width: calc(100% - 32px);
  margin: 0 16px 8px;
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.40);
  border-radius: 6px;
  color: #f5e6d3;
  box-sizing: border-box;
}
.optional-email input[type="email"]:focus {
  outline: none;
  border-color: var(--gold, #d6a750);
  background: rgba(255, 255, 255, 0.08);
}
.optional-email-note {
  font-size: 11px;
  color: rgba(245, 230, 211, 0.55);
  margin: 8px 16px 0;
  line-height: 1.7;
}
.optional-email-note a { color: rgba(245, 230, 211, 0.7); text-decoration: underline; }
.optional-email-note-ja {
  font-size: 11px;
  color: rgba(245, 230, 211, 0.45);
  margin: 6px 16px 14px;
  line-height: 1.7;
  font-family: 'Inter', 'Noto Serif JP', 'Hiragino Sans', sans-serif;
}

@media (max-width: 480px) {
  .optional-email summary { font-size: 13px; padding: 10px 12px; flex-direction: column; gap: 6px; }
  .opt-perk-tag { font-size: 10px; padding: 2px 8px; }
}

/* Compatibility mini (compact card) */
.tester-compat-mini {
  max-width: 480px;
  margin: 0 auto;
  padding: 24px 22px;
}

/* Trust block section wrapper */
.trust-block-section {
  padding: 30px 22px 50px;
  text-align: center;
}

/* === Result panel enhancements === */
.code-display {
  cursor: pointer;
  user-select: all;
  position: relative;
}
.copy-btn {
  display: block;
  width: 100%;
  margin: 12px 0 18px;
  padding: 13px 18px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer;
  font-family: inherit;
  border: 0;
}
.result-email-sent,
.result-no-email {
  font-size: 13px;
  color: rgba(245, 230, 211, 0.78);
  margin: 4px 0 14px;
  text-align: center;
}
.go-redeem {
  display: block;
  margin: 14px 0 22px;
  padding: 14px 18px !important;
  font-size: 15px !important;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
  border: 0;
}

/* Review CTA after claim */
.review-cta {
  margin: 22px 0 0;
  padding: 20px 22px;
  background: rgba(255, 200, 100, 0.06);
  border: 1px solid rgba(255, 200, 100, 0.30);
  border-radius: 12px;
  text-align: center;
}
.review-cta-title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 220, 180, 0.96);
  margin: 0 0 8px;
}
.review-cta-text {
  font-size: 13px;
  color: rgba(245, 230, 211, 0.78);
  margin: 0 0 14px;
  line-height: 1.6;
}
.review-cta .btn-secondary {
  display: inline-block;
  padding: 12px 22px;
  font-size: 14px;
}

