/* ═══════════════════════════════════════════════════
   SWAEL × LINEAR — Tokens v2 (bee tracker added)
   - Base: #08090A 系の深いダーク（Linearに近い）
   - Accent: Honey (#E8B339) を控えめに、主にCTA/highlightのみ
   - Type: Inter (本文/見出し), JetBrains Mono (kicker, eyebrow), Noto Sans JP (日本語フォールバック)
   ═══════════════════════════════════════════════════ */

:root {
  /* Surfaces */
  --bg:        #08090A;
  --bg-elev:   #0E0F11;
  --bg-card:   #111214;
  --bg-card-2: #16181B;

  /* Text */
  --text:      #F7F8F8;
  --text-2:    #B4B8BD;     /* secondary copy */
  --text-3:    #8A8F98;     /* tertiary, captions */
  --text-4:    #62666D;     /* very faint */

  /* Hairlines */
  --line:      rgba(255,255,255,0.06);
  --line-2:    rgba(255,255,255,0.10);
  --line-3:    rgba(255,255,255,0.16);

  /* Accent — Honey (Swael DNA) */
  --honey:        #E8B339;
  --honey-soft:   #F0C158;
  --honey-deep:   #C99528;
  --honey-glow:   rgba(232,179,57,0.18);

  /* Tasteful gradient backstops (Linear-ish ambient glow) */
  --glow-1: radial-gradient(60% 50% at 50% 0%, rgba(232,179,57,0.10) 0%, rgba(232,179,57,0) 70%);
  --glow-2: radial-gradient(50% 50% at 100% 50%, rgba(232,179,57,0.06) 0%, rgba(232,179,57,0) 70%);

  /* Type */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Noto Sans JP', sans-serif;
  --font-jp:   'Noto Sans JP', 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Type scale */
  --t-display: clamp(48px, 8vw, 104px);
  --t-h2:      clamp(36px, 4.5vw, 60px);
  --t-h3:      clamp(22px, 2.4vw, 28px);
  --t-body:    16px;
  --t-lede:    19px;
  --t-eyebrow: 12px;

  /* Layout */
  --maxw:      1200px;
  --pad-x:     clamp(20px, 4vw, 32px);
  --section-pad: clamp(96px, 14vh, 168px);

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: var(--t-body);
  line-height: 1.55;
  font-feature-settings: 'cv11', 'ss01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--honey-glow); color: var(--text); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ─── Containers ─── */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ═══════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, background 0.2s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-size: 15px;
}
.nav-brand .mark {
  width: 22px; height: 22px;
  display: grid; place-items: center;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
}
.nav-link {
  font-size: 14px;
  color: var(--text-2);
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--text); }

.nav-actions { display: flex; align-items: center; gap: 8px; }

/* ═══════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
}
.btn-primary {
  background: var(--text);
  color: var(--bg);
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-1px);
}
.btn-honey {
  background: var(--honey);
  color: #1A1102;
  font-weight: 600;
}
.btn-honey:hover {
  background: var(--honey-soft);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--line-3);
  background: rgba(255,255,255,0.03);
}
.btn-link {
  background: transparent;
  color: var(--text-2);
  padding: 10px 8px;
}
.btn-link:hover { color: var(--text); }

.btn-lg {
  font-size: 15px;
  padding: 13px 18px;
}

.arrow {
  display: inline-block;
  font-family: var(--font-mono);
  transition: transform 0.18s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(3px); }

/* ═══════════════════════════════════════════════════
   ATOMS — eyebrow, kicker, lede
   ═══════════════════════════════════════════════════ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: var(--t-eyebrow);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--honey);
  white-space: nowrap;
}
.eyebrow .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--honey);
  box-shadow: 0 0 8px var(--honey-glow);
}

.kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--honey);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.lede {
  font-size: var(--t-lede);
  line-height: 1.55;
  color: var(--text-2);
  letter-spacing: -0.005em;
  text-wrap: pretty;
  max-width: 56ch;
}

.jp { font-family: var(--font-jp); font-weight: 400; }
.mono { font-family: var(--font-mono); }
.honey-text { color: var(--honey); }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  padding: 168px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--glow-1);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  text-align: center;
}
.hero-eyebrow {
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) 0.05s forwards;
}
.hero-h1 {
  font-family: var(--font-sans);
  font-size: var(--t-display);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 600;
  margin: 0 auto 24px;
  max-width: 14ch;
  text-wrap: balance;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.15s forwards;
}
.hero-h1 .grad {
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255,255,255,0.55) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-jp {
  font-family: var(--font-jp);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  color: var(--text-3);
  letter-spacing: 0.02em;
  margin: 0 auto 32px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.25s forwards;
}
.hero-sub {
  font-size: var(--t-lede);
  color: var(--text-2);
  margin: 0 auto 48px;
  max-width: 56ch;
  text-wrap: pretty;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.35s forwards;
}
.hero-cta {
  display: inline-flex; gap: 10px; align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) 0.45s forwards;
}

/* ─── Hero product frame ─── */
.hero-frame-wrap {
  margin-top: 88px;
  position: relative;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.65s forwards;
}
.hero-frame-wrap::before {
  content: '';
  position: absolute;
  left: 50%; top: -20%;
  transform: translateX(-50%);
  width: 80%; height: 60%;
  background: var(--glow-1);
  filter: blur(40px);
  pointer-events: none;
}
.product-frame {
  position: relative;
  border: 1px solid var(--line-2);
  border-radius: 14px;
  background: var(--bg-card);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.02),
    0 60px 120px -40px rgba(0,0,0,0.6),
    0 30px 60px -30px rgba(232,179,57,0.06);
}
.product-frame .frame-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.025), transparent);
}
/* DSR mock — responsive collapse so it never breaks on small viewports */
@media (max-width: 760px) {
  .product-frame .dsr-grid { grid-template-columns: 1fr !important; }
  .product-frame .dsr-aside { display: none !important; }
  .product-frame .dsr-main { padding: 22px 18px 20px !important; }
  .product-frame .dsr-headrow { flex-direction: column; align-items: flex-start !important; gap: 12px; }
}
@media (max-width: 520px) {
  .product-frame .dsr-metrics { grid-template-columns: repeat(2, 1fr) !important; }
  .product-frame .frame-bar .url { font-size: 10px; word-break: break-all; }
}
.frame-bar .dots { display: flex; gap: 6px; }
.frame-bar .dots i {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--bg-card-2);
  border: 1px solid var(--line-2);
}
.frame-bar .url {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  margin-left: 8px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════
   LOGOS
   ═══════════════════════════════════════════════════ */
.logos {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
  margin-top: 80px;
}
.logos-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 32px;
}
.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 56px;
  opacity: 0.55;
}
.logos-row .logo {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--text-2);
  white-space: nowrap;
  display: inline-flex; align-items: center; gap: 8px;
}
.logos-row .logo .dotmark {
  width: 16px; height: 16px;
  border-radius: 4px;
  background: var(--text-3);
  display: inline-block;
}

/* ═══════════════════════════════════════════════════
   FEATURE — alternating
   ═══════════════════════════════════════════════════ */
.feature {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--line);
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.feature.reverse .feature-grid {
  grid-template-columns: 1.1fr 1fr;
}
.feature.reverse .feature-copy { order: 2; }
.feature.reverse .feature-art  { order: 1; }

.feature-copy h2 {
  font-family: var(--font-sans);
  font-size: var(--t-h2);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 16px 0 24px;
  text-wrap: balance;
}
.feature-copy .lede {
  margin-bottom: 28px;
}
.feature-copy .feature-jp {
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.feature-copy .feature-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-copy .feature-bullets li {
  display: flex; gap: 12px;
  font-size: 15px;
  color: var(--text-2);
}
.feature-copy .feature-bullets li::before {
  content: '';
  flex: 0 0 auto;
  width: 14px; height: 14px;
  margin-top: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--honey) 0%, var(--honey) 30%, transparent 31%);
  border: 1px solid var(--line-2);
}

.feature-art {
  position: relative;
}

/* Abstract art card */
.art-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 14px;
  border: 1px solid var(--line-2);
  background: linear-gradient(180deg, var(--bg-card), var(--bg-elev));
  overflow: hidden;
  box-shadow:
    0 30px 60px -30px rgba(0,0,0,0.6),
    inset 0 1px 0 rgba(255,255,255,0.04);
}
.art-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--glow-2);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════
   DECAY (carry-over, minimal)
   ═══════════════════════════════════════════════════ */
.decay {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.decay-head {
  text-align: center;
  margin-bottom: 80px;
}
.decay-head h2 {
  font-family: var(--font-sans);
  font-size: var(--t-h2);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 16px 0 20px;
  text-wrap: balance;
}
.decay-head .lede {
  margin: 0 auto;
}
.decay-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-elev);
  padding: 56px 48px 48px;
  position: relative;
  overflow: hidden;
}
.decay-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--glow-2);
  pointer-events: none;
}
.decay-svg-wrap {
  position: relative;
  height: 280px;
}
.decay-svg-wrap svg {
  width: 100%; height: 100%;
  display: block;
}
.decay-axis-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding: 0 4px;
}
.decay-axis-labels span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.04em;
}
.decay-foot {
  margin-top: 32px;
  display: flex; justify-content: space-between; align-items: end;
  gap: 24px;
  flex-wrap: wrap;
}
.decay-foot .stat {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-3);
}
.decay-foot .stat b {
  display: block;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 4px;
}
.decay-foot .stat b.honey { color: var(--honey); }

/* ═══════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════ */
.pricing {
  position: relative;
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--glow-1);
  pointer-events: none;
}
.pricing-head { position: relative; }
.pricing-head h2 { max-width: 860px; }
.pricing-head .lede,
.pricing-head .pricing-notes { max-width: none; }
.pricing-head-top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
}
.pricing-head-top .kicker { margin-bottom: 0; }
.beta-badge {
  flex: 0 0 auto;
  font-family: var(--font-jp);
  font-weight: 600;
  font-size: 14px;
  color: #1A1102;
  background: var(--honey);
  border-radius: 9px;
  padding: 9px 20px;
  letter-spacing: 0.02em;
}
.pricing h2 {
  font-family: var(--font-sans);
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.03em;
  font-weight: 600;
  line-height: 1.1;
  margin: 18px 0 0;
  text-wrap: balance;
}
.pricing .lede { margin: 18px 0 0; }
.pricing .lede b { color: var(--honey); font-weight: 600; }
.pricing-notes {
  list-style: none;
  margin: 22px 0 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.pricing-notes li {
  position: relative;
  font-family: var(--font-jp);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-3);
  padding-left: 16px;
}
.pricing-notes li::before {
  content: '・';
  position: absolute; left: 0;
  color: var(--text-4);
}

.pricing-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
  align-items: stretch;
}
.price-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--line-2);
  border-radius: 16px;
  background: var(--bg-card);
  padding: 36px 30px;
}
.price-card.featured {
  border-color: color-mix(in srgb, var(--honey) 55%, transparent);
  background:
    linear-gradient(180deg, rgba(232,179,57,0.06), transparent 42%),
    var(--bg-card);
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--honey) 28%, transparent),
    0 28px 70px -34px rgba(232,179,57,0.45);
}
.price-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  color: var(--text);
  letter-spacing: 0.01em;
}
.price-amount {
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 18px 0 0;
  font-size: clamp(38px, 4.4vw, 54px);
  line-height: 1;
}
.price-amount .yen { font-size: 0.62em; }
.price-amount .contact-price {
  font-size: 0.62em;
  font-family: var(--font-jp);
  letter-spacing: 0;
}
.price-amount .per {
  font-size: 0.32em;
  color: var(--text-3);
  font-weight: 500;
  align-self: flex-end;
  margin-bottom: 0.45em;
}
.price-feats {
  list-style: none;
  margin: 26px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
  flex: 1;
}
.price-feats li {
  display: flex; gap: 11px; align-items: baseline;
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--text-2);
}
.price-feats li::before {
  content: '';
  flex: 0 0 auto;
  width: 5px; height: 5px; margin-top: 7px;
  border-radius: 50%;
  background: var(--honey);
}

.pricing-fees {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.fee {
  display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap;
  border-radius: 12px;
  padding: 18px 26px;
  font-family: var(--font-jp);
}
.fee b {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.fee small { font-size: 12.5px; line-height: 1.5; }
.fee-outcome {
  grid-column: 1 / 3;
  background: linear-gradient(180deg, rgba(232,179,57,0.16), rgba(232,179,57,0.07));
  border: 1px solid color-mix(in srgb, var(--honey) 38%, transparent);
  color: var(--honey-soft);
}
.fee-outcome small { color: var(--text-2); }
.fee-consult {
  grid-column: 3 / 4;
  background: var(--honey);
  color: #1A1102;
}
.fee-consult small { color: rgba(26,17,2,0.7); }

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing-fees { grid-template-columns: 1fr; }
  .fee-outcome, .fee-consult { grid-column: auto; }
}

/* ═══════════════════════════════════════════════════
   INBOUND — One-Diagram Journey
   ═══════════════════════════════════════════════════ */
.inbound {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.inbound::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--glow-2);
  pointer-events: none;
}
.inbound-head {
  text-align: center;
  margin: 0 auto 56px;
  position: relative;
  max-width: 760px;
}
.inbound-head .lede {
  margin-left: auto;
  margin-right: auto;
}
.inbound-head h2 {
  font-family: var(--font-sans);
  font-size: var(--t-h2);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 16px auto 0;
  text-wrap: balance;
}

.jrn-diagram-wrap {
  border: 1px solid var(--line);
  background: var(--bg-elev);
  border-radius: 16px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
}
.jrn-diagram-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 80% 30%, rgba(232,179,57,0.06), transparent 70%);
  pointer-events: none;
}
.jrn-svg {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.jrn-legend {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.jrn-legend-item {
  display: flex;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-card);
  align-items: flex-start;
}
.jrn-legend-item:first-child {
  border-color: color-mix(in srgb, var(--honey) 32%, transparent);
  background:
    linear-gradient(180deg, rgba(232,179,57,0.06), transparent 60%),
    var(--bg-card);
}
.jrn-legend-swatch {
  flex-shrink: 0;
  width: 14px; height: 14px;
  border-radius: 4px;
  margin-top: 3px;
}
.jrn-legend-swatch.swael {
  background: rgba(232,179,57,0.20);
  border: 1.5px solid var(--honey);
}
.jrn-legend-swatch.existing {
  background: rgba(120,130,145,0.10);
  border: 1.5px dashed rgba(180,184,189,0.45);
}
.jrn-legend-item b {
  display: block;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.jrn-legend-item:first-child b { color: var(--honey); }
.jrn-legend-item span {
  display: block;
  font-family: var(--font-jp);
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.55;
}

@media (max-width: 720px) {
  .jrn-diagram-wrap { padding: 20px 12px 16px; }
  .jrn-legend { grid-template-columns: 1fr; gap: 10px; }
  .jrn-legend-item { padding: 14px; }
}

/* ═══════════════════════════════════════════════════
   QUOTE
   ═══════════════════════════════════════════════════ */
.quote-section {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--line);
}
.quote-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.quote-block blockquote {
  font-family: var(--font-sans);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 500;
  margin: 0 0 32px;
  color: var(--text);
  text-wrap: balance;
}
.quote-block blockquote .honey-text { color: var(--honey); }
.quote-block .attrib {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: var(--text-3);
}
.quote-block .attrib .avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--honey-deep), var(--honey-soft));
  border: 1px solid var(--line-2);
}
.quote-block .attrib b {
  color: var(--text-2);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════════ */
.final {
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--glow-1);
  pointer-events: none;
}
.final h2 {
  font-family: var(--font-sans);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 18px auto 16px;
  max-width: 18ch;
  text-wrap: balance;
}
.final .final-jp {
  font-family: var(--font-jp);
  font-size: 16px;
  color: var(--text-3);
  margin-bottom: 40px;
}
.final-cta-row {
  display: inline-flex; gap: 10px; align-items: center; flex-wrap: wrap; justify-content: center;
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  padding: 56px 0 48px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--text-3);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--text-2);
  font-weight: 500;
}
.footer-brand .mark { width: 18px; height: 18px; display: inline-grid; place-items: center; }
.footer-meta {
  display: flex; gap: 24px; flex-wrap: wrap;
}
.footer-meta a:hover { color: var(--text); }

/* ═══════════════════════════════════════════════════
   REVEAL
   ═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature.reverse .feature-grid { grid-template-columns: 1fr; }
  .feature.reverse .feature-copy { order: 1; }
  .feature.reverse .feature-art  { order: 2; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-actions .btn-link { display: none; }
  .hero { padding: 132px 0 60px; }
  .hero-frame-wrap { margin-top: 56px; }
  .logos-row { gap: 32px; }
  .decay-card { padding: 32px 20px 28px; }
  .decay-svg-wrap { height: 200px; }
  .decay-foot .stat b { font-size: 26px; }
}

/* ═══════════════════════════════════════════════════
   BEE TRACKER — ロゴ中央ドット = 蜂が画面を移動
   ═══════════════════════════════════════════════════ */
.bee-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 60;
  contain: strict;
}
.bee-trail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.85;
}
.bee {
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 0;
  opacity: 0;
  transition: opacity 0.4s ease-out;
  will-change: transform;
}
.bee-body {
  position: absolute;
  left: -8px;
  top: -8px;
  width: 16px;
  height: 16px;
  transform: rotate(var(--bee-tilt, 0deg));
  transition: transform 0.3s ease-out;
}
.bee-halo {
  position: absolute;
  left: -10px; top: -10px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,179,57,0.32) 0%, rgba(232,179,57,0) 65%);
  animation: beeHaloPulse 1.6s ease-in-out infinite;
}
@keyframes beeHaloPulse {
  0%, 100% { transform: scale(1);   opacity: 0.85; }
  50%      { transform: scale(1.25); opacity: 1; }
}
.bee-dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #FBE38A 0%, var(--honey) 40%, var(--honey-deep) 100%);
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.18),
    0 0 14px var(--honey-glow),
    0 0 28px rgba(232,179,57,0.32);
}
.bee-wing {
  position: absolute;
  width: 12px;
  height: 7px;
  top: 1px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background: rgba(255,255,255,0.55);
  filter: blur(0.6px);
  transform-origin: center bottom;
  animation: beeWing var(--bee-flap, 0.16s) ease-in-out infinite;
}
.bee-wing-l { left: -8px; transform: rotate(-18deg); animation-delay: -0.04s; }
.bee-wing-r { left:  10px; transform: rotate( 18deg) scaleX(-1); }
@keyframes beeWing {
  0%, 100% { transform: rotate(-22deg) scaleY(1); opacity: 0.65; }
  50%      { transform: rotate(  6deg) scaleY(0.55); opacity: 0.95; }
}
.bee-wing-r {
  animation-name: beeWingR;
}
@keyframes beeWingR {
  0%, 100% { transform: rotate(22deg) scaleX(-1) scaleY(1); opacity: 0.65; }
  50%      { transform: rotate(-6deg) scaleX(-1) scaleY(0.55); opacity: 0.95; }
}

/* When the bee has landed on a kicker, the kicker glows briefly */
.kicker.bee-landed {
  color: var(--honey);
  text-shadow: 0 0 16px rgba(232,179,57,0.32);
  transition: color 0.5s ease, text-shadow 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {
  .bee-layer { display: none; }
}
@media (max-width: 720px) {
  .bee-layer { display: none; }
}
