/* ===== Design Tokens ===== */
:root {
  --pink: #f9d0d6;
  --yellow: #f9ee99;
  --cyan: #c1f9fc;
  --lavender: #e2e5f2;
  --accent: #e96b8e;
  --accent-dark: #d4567a;
  --ink: #1f1f25;
  --muted: #5b5e6a;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.7);
  --shadow: 0 20px 45px rgba(31, 31, 37, 0.12);
  --shadow-lg: 0 26px 60px rgba(31, 31, 37, 0.18);
  --radius: 24px;
  --radius-sm: 16px;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: linear-gradient(160deg, #fffaf7 0%, #fef5f7 40%, #f6fbff 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.7;
}

body::before, body::after {
  content: "";
  position: fixed;
  width: 520px;
  height: 520px;
  filter: blur(70px);
  opacity: 0.35;
  z-index: -1;
  pointer-events: none;
}
body::before { top: -200px; left: -180px; background: radial-gradient(circle, rgba(249,208,214,0.85), transparent 60%); }
body::after { bottom: -200px; right: -180px; background: radial-gradient(circle, rgba(193,249,252,0.8), transparent 60%); }

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; letter-spacing: -0.02em; margin: 0 0 16px; line-height: 1.25; text-wrap: balance; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.6rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 16px; color: var(--muted); }
strong { color: var(--ink); font-weight: 600; }

/* ===== Skip Link ===== */
.skip-link {
  position: absolute; left: -999px; top: 12px;
  background: var(--accent); color: #fff;
  padding: 10px 16px; border-radius: 999px; z-index: 100;
}
.skip-link:focus { left: 16px; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0;
  backdrop-filter: blur(14px);
  background: rgba(255, 250, 247, 0.88);
  border-bottom: 1px solid rgba(31, 31, 37, 0.06);
  z-index: 50;
}
.nav {
  max-width: 1200px; margin: 0 auto;
  padding: 16px 6vw;
  display: flex; align-items: center; gap: 20px;
}
.logo {
  font-weight: 700; font-size: 1.15rem; color: var(--ink);
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.logo img { border-radius: 8px; }
.nav-links {
  display: flex; flex-wrap: wrap; gap: 16px;
  font-size: 0.9rem; color: var(--muted);
  margin-left: auto;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  padding: 10px 18px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-weight: 600; font-size: 0.9rem;
  flex-shrink: 0; white-space: nowrap;
}
.nav-cta:hover { background: #333; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 28px; height: 24px; position: relative; padding: 0;
  margin-left: auto;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--ink); border-radius: 2px;
  position: absolute; left: 0;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle span:nth-child(1) { top: 4px; }
.nav-toggle span:nth-child(2) { top: 11px; }
.nav-toggle span:nth-child(3) { top: 18px; }

/* ===== Hero ===== */
.hero {
  max-width: 1200px; margin: 0 auto;
  padding: 100px 6vw 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.hero-copy { display: flex; flex-direction: column; gap: 12px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { border-radius: 12px; }
.brand-title { font-size: 1.1rem; font-weight: 700; color: var(--ink); margin: 0; }
.brand-sub { margin: 0; font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.eyebrow {
  text-transform: none; letter-spacing: 0.15em;
  font-size: 0.8rem; color: var(--accent); margin-bottom: 4px; font-weight: 600;
}
.lead { font-size: 1.05rem; color: var(--muted); line-height: 1.8; }

/* Hero Visual / Phone Mockup */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone-mockup {
  position: relative;
  width: 280px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid #1a1a1a;
  background: #000;
}
.phone-mockup::before {
  content: "";
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 120px; height: 28px;
  background: #1a1a1a;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-mockup img { width: 100%; height: auto; display: block; }

/* ===== Hero Question ===== */
.hero-question {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--ink); font-weight: 500;
  line-height: 1.6; margin-bottom: 8px;
}

/* ===== Problem Section ===== */
.problem-section { padding-top: 40px; }
.problem-statement { text-align: center; max-width: 800px; margin: 0 auto 48px; }
.problem-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--ink); margin-bottom: 0;
}
.problem-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-bottom: 56px;
}
.problem-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(31, 31, 37, 0.06);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.problem-illust {
  display: flex; justify-content: center;
  margin-bottom: 16px;
}
.problem-label {
  font-weight: 700; color: var(--ink);
  font-size: 1.1rem; margin-bottom: 8px;
  font-family: "Space Grotesk", sans-serif;
  text-wrap: auto;
}
.problem-card p { text-align: left; }
.problem-label { text-align: center; }
.problem-insight {
  max-width: 720px; margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, rgba(249,208,214,0.2), rgba(193,249,252,0.2));
  border-radius: 32px;
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.6);
}
.insight-visual {
  display: flex; justify-content: center;
  margin-bottom: 24px;
}
.insight-svg { animation: float 6s ease-in-out infinite; }
.problem-insight h3 {
  font-size: 1.3rem; color: var(--ink);
  font-weight: 600; margin-bottom: 16px;
}
.insight-big {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700; color: var(--accent);
  margin-bottom: 24px; letter-spacing: -0.02em;
  line-height: 1.4;
}
.problem-insight > p { font-size: 1.05rem; line-height: 2; color: var(--muted); }
.problem-insight > p:last-child { margin-bottom: 0; }

/* ===== Solution Section ===== */
.solution-section { padding-top: 40px; }
.solution-step { text-align: left; }
.solution-step h3 { margin-top: 4px; text-wrap: auto; }
.solution-step .card-number,
.solution-step-illust { text-align: center; }
.solution-step-illust {
  display: flex; justify-content: center;
  margin-bottom: 8px;
}
.solution-statement {
  text-align: center; max-width: 800px;
  margin: 0 auto 48px;
}
.solution-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--ink);
}
.solution-lead {
  font-size: 1.1rem; line-height: 2;
  color: var(--muted); max-width: 680px; margin: 0 auto;
}
.solution-grid { grid-template-columns: repeat(3, 1fr); }
.card-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.4rem; font-weight: 700;
  color: rgba(233, 107, 142, 0.2);
  margin-bottom: 8px; line-height: 1;
}

/* ===== Buttons ===== */
.cta-group { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.btn {
  padding: 12px 22px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  border: 1px solid transparent;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.btn.primary { background: var(--accent); color: #fff; box-shadow: 0 12px 25px rgba(233,107,142,0.25); }
.btn.primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn.primary.alt { background: #1f1f25; box-shadow: 0 12px 25px rgba(31,31,37,0.2); }
.btn.primary.alt:hover { background: #333; transform: translateY(-2px); }
.btn.ghost { border-color: rgba(31,31,37,0.4); color: var(--ink); background: transparent; }
.btn.ghost:hover { transform: translateY(-2px); border-color: var(--accent); color: var(--accent); }
.btn.large { padding: 14px 28px; font-size: 1rem; }
.btn svg { flex-shrink: 0; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.hero-chips span {
  padding: 6px 12px; border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(31,31,37,0.08);
  font-size: 0.8rem; color: var(--muted);
}
.hero-microcopy {
  font-size: 0.82rem; color: var(--muted); margin: 0;
  font-weight: 500; letter-spacing: 0.02em;
}

/* ===== Concept Sequence ===== */
.concept-sequence {
  padding-top: 28px;
  padding-bottom: 40px;
}
.concept-sequence-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.concept-step {
  padding: 24px 20px;
  border: 1px solid rgba(31,31,37,0.06);
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
}
.concept-step-number {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: rgba(233,107,142,0.12);
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
}
.concept-step h3 {
  font-size: 1.02rem;
  line-height: 1.55;
  margin-bottom: 10px;
}
.concept-step p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.8;
}
.concept-step-emphasis {
  background: linear-gradient(135deg, rgba(249,208,214,0.22), rgba(193,249,252,0.18));
  border-color: rgba(233,107,142,0.14);
}

/* ===== Story Line ===== */
.story-section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.story-layout {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}
.story-layout.reverse {
  grid-template-columns: minmax(0, 1fr) 180px;
}
.story-layout.reverse .story-meta {
  order: 2;
}
.story-layout.reverse .story-copy {
  order: 1;
}
.story-meta {
  position: sticky;
  top: 110px;
}
.story-step {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  font-weight: 700;
  line-height: 0.9;
  color: rgba(233,107,142,0.22);
}
.story-copy {
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(31,31,37,0.06);
  border-radius: 32px;
  box-shadow: var(--shadow);
  padding: 36px 40px;
}
.story-copy h2 {
  max-width: none;
  font-size: clamp(1.75rem, 1.25rem + 1.5vw, 2.6rem);
  margin-bottom: 18px;
  line-height: 1.14;
  letter-spacing: -0.03em;
  text-wrap: pretty;
}
.story-heading-line {
  display: block;
}
.story-copy p {
  font-size: 1.04rem;
  line-height: 1.9;
}
.story-list {
  margin-top: 24px;
}
.story-list li {
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(249,208,214,0.18), rgba(193,249,252,0.16));
}
.story-section-final .story-copy {
  background: linear-gradient(135deg, rgba(249,208,214,0.22), rgba(193,249,252,0.18));
}
.support-section {
  padding-top: 32px;
}
.support-grid {
  grid-template-columns: repeat(2, 1fr);
}
/* ===== Trust Bar ===== */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid rgba(31,31,37,0.04);
  border-bottom: 1px solid rgba(31,31,37,0.04);
  padding: 32px 6vw;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.trust-item { display: flex; align-items: flex-start; gap: 12px; }
.trust-icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.trust-title { font-weight: 700; color: var(--ink); margin: 0; font-size: 0.9rem; }
.trust-desc { font-size: 0.8rem; color: var(--muted); margin: 0; line-height: 1.4; }

/* ===== Sections ===== */
.section { max-width: 1200px; margin: 0 auto; padding: 80px 6vw; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-kicker {
  color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.25em; font-size: 0.75rem;
  margin-bottom: 8px; font-weight: 600;
}
.section-lead { font-size: 1.05rem; line-height: 1.8; }

/* ===== Grids ===== */
.grid { display: grid; gap: 24px; }
.feature-grid, .trainer-grid, .outcome-grid, .practice-grid { grid-template-columns: repeat(3, 1fr); }
.assessment-grid { grid-template-columns: repeat(4, 1fr); }
.target-grid { grid-template-columns: repeat(4, 1fr); }
.preview-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; }

/* ===== Cards ===== */
.card {
  background: var(--surface);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31,31,37,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card.soft { background: rgba(255,255,255,0.75); border-color: rgba(31,31,37,0.05); }
.card-icon { font-size: 2rem; margin-bottom: 12px; line-height: 1; }
.card h3 { text-wrap: auto; }

.pill {
  display: inline-flex; padding: 6px 12px; border-radius: 999px;
  background: rgba(233,107,142,0.12); color: var(--accent);
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.assessment-meta { margin-top: 14px; font-size: 0.85rem; color: var(--muted); }

/* ===== Social Proof Section ===== */
.social-proof-section { padding-top: 40px; }
.proof-stats {
  display: flex; gap: 32px; justify-content: center;
  margin-bottom: 48px; flex-wrap: wrap;
}
.proof-stat {
  text-align: center; display: flex; flex-direction: column; gap: 4px; align-items: center;
}
.proof-value {
  display: flex; align-items: baseline; gap: 2px;
}
.proof-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--accent);
  line-height: 1;
}
.proof-suffix {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600; color: var(--accent);
}
.proof-label {
  font-size: 0.85rem; color: var(--muted); font-weight: 500;
}
.proof-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.proof-card {
  background: var(--surface);
  border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31,31,37,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.proof-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.proof-card-header {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.proof-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; color: #fff;
  flex-shrink: 0;
}
.proof-name {
  font-weight: 600; color: var(--ink); margin: 0; font-size: 0.9rem;
}
.proof-age {
  font-weight: 400; color: var(--muted); font-size: 0.8rem;
}
.proof-stars {
  color: #f5a623; font-size: 0.85rem; letter-spacing: 2px;
}
.proof-text {
  font-size: 0.95rem; line-height: 1.8; color: var(--muted); margin: 0;
}

@media (max-width: 1100px) {
  .proof-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .proof-cards { grid-template-columns: 1fr; }
  .proof-stats { gap: 24px; }
}

/* ===== Personal Color Section ===== */
.color-section { padding-top: 40px; padding-bottom: 40px; }
.color-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.color-visual { display: flex; justify-content: center; }
.color-shot {
  width: min(100%, 280px);
  padding: 18px;
  border-radius: 32px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(31,31,37,0.06);
  box-shadow: var(--shadow);
}
.color-shot img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(31,31,37,0.12);
}
.color-orbs { position: relative; width: 280px; height: 280px; }
.orb {
  position: absolute; border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
.orb-1 { width: 180px; height: 180px; top: 10px; left: 50px; background: radial-gradient(circle at 30% 30%, #ffd7e0, #e96b8e); box-shadow: 0 20px 40px rgba(233,107,142,0.3); }
.orb-2 { width: 120px; height: 120px; top: 120px; left: 0; background: radial-gradient(circle at 30% 30%, #c1f9fc, #7bc9d0); box-shadow: 0 15px 30px rgba(123,201,208,0.3); animation-delay: -2s; }
.orb-3 { width: 100px; height: 100px; top: 60px; right: 0; background: radial-gradient(circle at 30% 30%, #f9ee99, #e6c84f); box-shadow: 0 15px 30px rgba(230,200,79,0.3); animation-delay: -4s; }

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

/* ===== Comparison Table ===== */
.comparison-table { overflow-x: auto; }
.comparison-table table {
  width: 100%; border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.comparison-table th, .comparison-table td {
  padding: 16px 20px; text-align: left;
  border-bottom: 1px solid rgba(31,31,37,0.06);
  font-size: 0.95rem;
}
.comparison-table th {
  background: rgba(31,31,37,0.03);
  font-weight: 600; color: var(--ink);
}
.comparison-table th.highlight,
.comparison-table td.highlight {
  background: rgba(233,107,142,0.06);
  color: var(--ink); font-weight: 500;
}
.comparison-table th.highlight { font-weight: 700; color: var(--accent); }
.comparison-table tbody tr:last-child td { border-bottom: none; }

/* ===== Preview ===== */
.preview-card { display: grid; gap: 18px; }
.preview-top {
  display: grid; grid-template-columns: auto 1fr;
  gap: 18px; align-items: center;
}
.preview-orb {
  width: 80px; height: 80px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffd7e0, #e96b8e);
  box-shadow: 0 18px 30px rgba(233,107,142,0.28);
}
.preview-label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); margin-bottom: 6px; }
.preview-value { font-size: 1.3rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.preview-sub { margin-bottom: 0; }
.preview-chart { display: grid; gap: 10px; }
.chart-bar {
  position: relative; padding: 10px 14px;
  border-radius: 999px;
  background: rgba(193,249,252,0.35);
  overflow: hidden; color: var(--ink); font-size: 0.9rem;
  display: flex; justify-content: space-between;
}
.chart-bar span { font-weight: 600; font-size: 0.85rem; }
.chart-bar::after {
  content: ""; position: absolute; inset: 0;
  width: var(--value);
  background: linear-gradient(90deg, rgba(233,107,142,0.5), rgba(249,238,153,0.5));
  z-index: -1;
  transition: width 1s ease;
}
.preview-side { display: grid; align-content: start; gap: 12px; }
.clean-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.clean-list li {
  padding: 10px 14px; border-radius: 12px;
  background: rgba(255,255,255,0.85); color: var(--ink);
  border: 1px solid rgba(31,31,37,0.06);
}

/* ===== Screenshot Gallery ===== */
.screenshot-gallery {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}
.screenshot-gallery::-webkit-scrollbar { height: 6px; }
.screenshot-gallery::-webkit-scrollbar-track { background: transparent; }
.screenshot-gallery::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

.screenshot-track {
  display: flex; gap: 24px;
  padding: 0 4px;
  width: max-content;
}
.screenshot-item {
  scroll-snap-align: center;
  flex-shrink: 0; width: 220px;
  margin: 0;
}
.screenshot-item img {
  width: 100%; height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31,31,37,0.06);
}
.screenshot-item figcaption {
  text-align: center;
  font-size: 0.8rem; color: var(--muted);
  margin-top: 10px;
}

/* ===== Promo Section ===== */
.promo-section { padding-top: 40px; padding-bottom: 40px; }
.promo-card {
  background: linear-gradient(135deg, rgba(249,208,214,0.5), rgba(193,249,252,0.5));
  border-radius: 32px;
  padding: 48px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.6);
}
.promo-card h2 { color: var(--accent); }
.promo-card p { max-width: 640px; margin-left: auto; margin-right: auto; }
.promo-card .cta-group { justify-content: center; }
.promo-microcopy {
  margin-top: 12px; font-size: 0.8rem; color: var(--muted); font-weight: 500;
}

/* ===== Steps ===== */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 16px;
  counter-reset: steps;
}
.steps li {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid rgba(31,31,37,0.05);
}
.steps li::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute; top: 20px; right: 24px;
  font-size: 1.8rem; font-weight: 700;
  color: rgba(233,107,142,0.2);
  font-family: "Space Grotesk", sans-serif;
}

/* ===== FAQ ===== */
.faq { display: grid; gap: 12px; }
details {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(31,31,37,0.05);
}
summary {
  cursor: pointer; font-weight: 600; color: var(--ink);
  list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; font-size: 1.4rem; font-weight: 300;
  color: var(--accent); flex-shrink: 0;
  transition: transform 0.3s;
}
details[open] summary::after { content: "-"; }
.faq-answer { padding-top: 12px; }
.faq-answer p { line-height: 1.8; }

/* ===== CTA Section ===== */
.cta-section {
  padding: 80px 6vw 100px;
  background: linear-gradient(120deg, rgba(249,208,214,0.6), rgba(193,249,252,0.6));
  margin-top: 20px;
}
.cta-inner {
  max-width: 800px; margin: 0 auto; text-align: center;
}
.cta-inner h2 { margin-bottom: 12px; }
.cta-inner .cta-group { justify-content: center; margin-top: 24px; }
.cta-note {
  margin-top: 16px;
  font-size: 0.85rem; color: var(--accent); font-weight: 600;
}
.cta-trust {
  margin-top: 8px;
  font-size: 0.78rem; color: var(--muted); font-weight: 500;
}
.desktop-qr {
  margin-top: 24px; text-align: center;
}
.desktop-qr-label {
  font-size: 0.82rem; color: var(--muted); margin-bottom: 12px; font-weight: 500;
}
.desktop-qr canvas {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(31,31,37,0.08);
  border: 4px solid #fff;
}
@media (max-width: 1100px) {
  .desktop-qr { display: none; }
}

/* ===== Footer ===== */
.site-footer {
  padding: 60px 6vw 80px;
  background: #14161b; color: #f3f4f6;
}
.site-footer .logo { color: #fff; font-size: 1.2rem; }
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
.footer-title { font-weight: 600; margin-bottom: 12px; color: #fff; }
.footer-text, .footer-note,
.site-footer p, .site-footer a {
  color: rgba(243,244,246,0.7); font-size: 0.9rem;
}
.site-footer a { display: block; margin-bottom: 8px; }
.site-footer a:hover { color: var(--accent); }

/* ===== Mini Assessment ===== */
.mini-assess {
  background: var(--surface);
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(31,31,37,0.06);
  overflow: hidden;
}
.mini-tabs {
  display: flex; border-bottom: 1px solid rgba(31,31,37,0.08);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.mini-tab {
  flex: 1; min-width: 0;
  padding: 16px 12px; border: none; background: none;
  font-size: 0.9rem; font-weight: 600; color: var(--muted);
  cursor: pointer; white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  font-family: "Space Grotesk", sans-serif;
}
.mini-tab:hover { color: var(--ink); }
.mini-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.mini-panel { padding: 32px; display: none; }
.mini-panel.active { display: block; }
.mini-intro { margin-bottom: 24px; }
.mini-intro h3 { color: var(--ink); margin-bottom: 8px; }
.mini-intro p { font-size: 0.95rem; line-height: 1.8; }
.mini-progress {
  height: 4px; background: rgba(31,31,37,0.08);
  border-radius: 2px; margin-bottom: 24px; overflow: hidden;
}
.mini-progress-bar {
  height: 100%; width: var(--prog, 0%);
  background: linear-gradient(90deg, var(--accent), #f9a8c0);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.mini-q-area { min-height: 180px; }
.mini-q {
  animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.mini-q-text {
  font-size: 1.05rem; font-weight: 500; color: var(--ink);
  line-height: 1.7; margin-bottom: 20px;
}
.mini-q-num {
  font-size: 0.8rem; color: var(--muted); margin-bottom: 8px;
  font-weight: 600;
}
/* Likert scale */
.likert-scale {
  display: flex; gap: 8px; justify-content: center;
  margin-bottom: 12px; flex-wrap: wrap;
}
.likert-btn {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid rgba(31,31,37,0.12);
  background: var(--surface); cursor: pointer;
  font-size: 1rem; font-weight: 700; color: var(--muted);
  transition: all 0.2s ease;
  display: flex; align-items: center; justify-content: center;
}
.likert-btn:hover { border-color: var(--accent); color: var(--accent); transform: scale(1.1); }
.likert-btn.selected { background: var(--accent); color: #fff; border-color: var(--accent); transform: scale(1.1); }
.likert-labels {
  display: flex; justify-content: space-between;
  font-size: 0.75rem; color: var(--muted);
  padding: 0 8px;
}
/* Likert 7-point */
.likert-scale.likert-7 .likert-btn { width: 44px; height: 44px; font-size: 0.9rem; }
/* Choice options */
.choice-options { display: grid; gap: 10px; }
.choice-btn {
  display: block; width: 100%; text-align: left;
  padding: 14px 18px; border-radius: var(--radius-sm);
  border: 2px solid rgba(31,31,37,0.1);
  background: var(--surface); cursor: pointer;
  font-size: 0.95rem; color: var(--ink); line-height: 1.6;
  transition: all 0.2s ease;
}
.choice-btn:hover { border-color: var(--accent); background: rgba(233,107,142,0.04); }
.choice-btn.selected { border-color: var(--accent); background: rgba(233,107,142,0.08); }
/* Scenario text */
.mini-scenario {
  background: rgba(31,31,37,0.03);
  border-radius: var(--radius-sm);
  padding: 18px 20px; margin-bottom: 16px;
  font-size: 0.95rem; line-height: 1.8; color: var(--ink);
  border-left: 3px solid var(--accent);
}
/* Result bars */
.mini-result h3 { text-align: center; margin-bottom: 20px; }
.mini-bars { display: grid; gap: 12px; max-width: 500px; margin: 0 auto 20px; }
.mini-bar-row { display: grid; grid-template-columns: 100px 1fr 40px; gap: 12px; align-items: center; }
.mini-bar-label { font-size: 0.85rem; font-weight: 600; color: var(--ink); text-align: right; }
.mini-bar-track { height: 10px; background: rgba(31,31,37,0.08); border-radius: 5px; overflow: hidden; }
.mini-bar-fill {
  height: 100%; border-radius: 5px;
  background: linear-gradient(90deg, var(--accent), #f9a8c0);
  transition: width 0.8s ease;
}
.mini-bar-val { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.mini-note {
  text-align: center; font-size: 0.85rem; color: var(--muted);
  margin-top: 16px; line-height: 1.8;
}
/* Share buttons */
.share-buttons {
  display: flex; gap: 10px; justify-content: center;
  margin-top: 16px; flex-wrap: wrap;
}
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(31,31,37,0.12);
  background: var(--surface); cursor: pointer;
  font-size: 0.82rem; font-weight: 600; color: var(--ink);
  transition: all 0.2s ease;
}
.share-btn:hover { transform: translateY(-1px); }
.share-line:hover { background: #06C755; color: #fff; border-color: #06C755; }
.share-x:hover { background: #1a1a1a; color: #fff; border-color: #1a1a1a; }
.share-copy:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.share-btn.copied { background: var(--accent); color: #fff; border-color: var(--accent); }

.mini-cta-trust {
  text-align: center; font-size: 0.78rem; color: var(--muted);
  font-weight: 500; margin: 8px 0 0;
}
.mini-locked {
  display: inline-block;
  background: rgba(233,107,142,0.08);
  border: 1px dashed rgba(233,107,142,0.3);
  border-radius: 8px;
  padding: 6px 12px; margin: 8px 0;
  color: var(--accent); font-weight: 600;
  font-size: 0.85rem;
}
/* Mini assess responsive */
@media (max-width: 760px) {
  .mini-panel { padding: 20px 16px; }
  .mini-tab { padding: 12px 8px; font-size: 0.8rem; }
  .likert-btn { width: 48px; height: 48px; }
  .likert-scale.likert-7 .likert-btn { width: 38px; height: 38px; font-size: 0.8rem; }
  .mini-bar-row { grid-template-columns: 80px 1fr 36px; }
}

/* ===== Floating Mobile CTA ===== */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 250, 247, 0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(31,31,37,0.08);
  z-index: 40;
  gap: 8px;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.floating-cta.visible { transform: translateY(0); }
.floating-cta .btn { flex: 1; max-width: 180px; justify-content: center; padding: 10px 16px; font-size: 0.85rem; }

@media (max-width: 760px) {
  .floating-cta { display: flex; }
  .site-footer { padding-bottom: 100px; }
}

/* ===== Reveal Animation ===== */
[data-reveal] {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0ms);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ===== SP-only line break ===== */
.sp-only { display: none; }
@media (max-width: 760px) { .sp-only { display: inline; } }

/* ===== Responsive: Tablet ===== */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { align-items: center; }
  .hero-visual { order: -1; }
  .cta-group { justify-content: center; }
  .story-layout, .story-layout.reverse { grid-template-columns: 1fr; }
  .story-layout.reverse .story-meta, .story-layout.reverse .story-copy { order: initial; }
  .story-meta { position: static; }
  .support-grid { grid-template-columns: 1fr; }
  .feature-grid, .trainer-grid, .outcome-grid, .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .assessment-grid, .target-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-grid { grid-template-columns: 1fr; }
  .color-layout { grid-template-columns: 1fr; text-align: center; }
  .color-copy { order: 1; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 760px) {
  .nav { flex-wrap: wrap; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none; flex-direction: column;
    width: 100%; gap: 8px; padding: 12px 0;
    text-align: center;
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }

  .hero { padding-top: 80px; }
  .phone-mockup { width: 220px; }
  .story-copy { padding: 28px 22px; }
  .story-copy h2 {
    font-size: clamp(1.55rem, 1.2rem + 2.2vw, 2rem);
    line-height: 1.16;
  }
  .story-step { font-size: 2.6rem; }
  .outcome-grid, .practice-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 60px 5vw; }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, [data-reveal] { transition: none; }
  .orb { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
