/* =====================================================
   TORECAHACK — CARD INTELLIGENCE Design System v2
   Unified: corporate top + /recruit LP
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

:root {
  --bg0: #05070d;
  --bg1: #0a0f1e;
  --bg2: #0e1426;
  --line: rgba(255,255,255,.07);
  --text: #eef2fa;
  --muted: #8e9bb3;
  --gold: #f5c842;
  --gold-deep: #d4a017;
  --cyan: #37e2ff;
  --violet: #8b5cff;
  --pink: #ff5ec8;
  --holo: linear-gradient(110deg, #37e2ff 0%, #6f8bff 25%, #8b5cff 45%, #ff5ec8 70%, #ffd166 100%);
  --radius: 16px;
  --ease: cubic-bezier(.22,.8,.26,.99);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  background: var(--bg0);
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: rgba(139,92,255,.45); color: #fff; }

/* scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg0); }
::-webkit-scrollbar-thumb { background: #1c2742; border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: #2a3a63; }

.container { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

/* ===== Aurora background ===== */
.aurora {
  position: fixed; inset: 0; z-index: -2; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 70% -10%, #101a3a 0%, var(--bg0) 60%);
}
.aurora::before, .aurora::after {
  content: ""; position: absolute; width: 60vw; height: 60vw;
  border-radius: 50%; filter: blur(110px); opacity: .14;
}
.aurora::before {
  background: radial-gradient(circle, var(--violet), transparent 65%);
  top: -22vw; right: -14vw;
  animation: drift1 26s ease-in-out infinite alternate;
}
.aurora::after {
  background: radial-gradient(circle, var(--cyan), transparent 65%);
  bottom: -28vw; left: -16vw;
  animation: drift2 32s ease-in-out infinite alternate;
}
@keyframes drift1 { to { transform: translate(-9vw, 12vw) scale(1.15); } }
@keyframes drift2 { to { transform: translate(11vw, -9vw) scale(1.1); } }

.gridlines {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 80%);
}

/* ===== Typography helpers ===== */
.holo-text {
  background: var(--holo);
  background-size: 250% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: holoShift 7s ease-in-out infinite alternate;
}
@keyframes holoShift { from { background-position: 0% 50%; } to { background-position: 100% 50%; } }

.sec { padding: 110px 0; position: relative; }
.sec-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.sec-label::before { content: ""; width: 26px; height: 1px; background: var(--gold); }
.sec-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(26px, 4.4vw, 44px); font-weight: 900; line-height: 1.34;
  letter-spacing: .015em; margin-bottom: 18px;
}
.sec-desc { color: var(--muted); font-size: 15px; max-width: 640px; }
.txt-c { text-align: center; }
.txt-c .sec-label::before { display: none; }
.txt-c .sec-desc { margin: 0 auto; }

/* ===== Reveal ===== */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .aurora::before, .aurora::after, .holo-text { animation: none; }
}

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0; transition: all .4s var(--ease);
}
.nav.is-scrolled {
  padding: 10px 0;
  background: rgba(6,9,18,.78);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { max-width: 1120px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: .14em; font-size: 15px; }
.nav-logo img { width: 30px; height: 30px; border-radius: 7px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link { font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: .04em; position: relative; transition: color .3s; }
.nav-link:hover { color: #fff; }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 100%; height: 2px;
  background: var(--holo); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
  border-radius: 2px;
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--gold); color: #0a0c14 !important; font-weight: 800; font-size: 13px;
  padding: 10px 22px; border-radius: 8px; transition: transform .25s var(--ease), box-shadow .25s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,200,66,.35); }
.nav-cta::after { display: none; }
.hamburger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 110; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: all .3s var(--ease); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #ffd866, var(--gold) 55%, var(--gold-deep));
  color: #0a0c14; font-weight: 900; font-size: 15px; letter-spacing: .02em;
  padding: 17px 38px; border-radius: 12px; border: 0; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s;
  box-shadow: 0 6px 24px rgba(245,200,66,.22);
}
.btn-gold::before {
  content: ""; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-22deg); transition: left .55s var(--ease);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 38px rgba(245,200,66,.4); }
.btn-gold:hover::before { left: 130%; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text); font-weight: 700; font-size: 14px;
  padding: 16px 30px; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.03);
  transition: all .3s var(--ease);
}
.btn-ghost:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.07); transform: translateY(-2px); }
.btn-note { font-size: 12px; color: var(--muted); margin-top: 12px; }

/* ===== Glass card w/ gradient border ===== */
.gcard {
  position: relative; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.gcard:hover { transform: translateY(-6px); border-color: rgba(139,92,255,.4); box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(139,92,255,.15); }
.gcard::before {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius); padding: 1px;
  background: var(--holo); opacity: 0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: opacity .4s; pointer-events: none;
}
.gcard:hover::before { opacity: .55; }

/* =====================================================
   HERO (top)
   ===================================================== */
.hero {
  min-height: 100svh; display: flex; align-items: center;
  padding: 150px 0 90px; position: relative; overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: .24em; text-transform: uppercase;
  color: var(--cyan); border: 1px solid rgba(55,226,255,.3); background: rgba(55,226,255,.06);
  padding: 7px 16px; border-radius: 99px; margin-bottom: 28px;
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .3; } }
.hero-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(34px, 5.6vw, 60px); font-weight: 900; line-height: 1.32;
  letter-spacing: .01em; margin-bottom: 26px;
}
.hero-sub { color: var(--muted); font-size: clamp(14px, 1.6vw, 16px); max-width: 480px; margin-bottom: 40px; }
.hero-sub strong { color: var(--text); font-weight: 700; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ===== TCG holo card ===== */
.tcg-scene { perspective: 1200px; display: flex; justify-content: center; }
.tcg-card {
  width: min(340px, 78vw); aspect-ratio: 63/88;
  border-radius: 18px; position: relative;
  transform-style: preserve-3d;
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transition: transform .18s ease-out;
  animation: floaty 7s ease-in-out infinite;
  background:
    linear-gradient(160deg, #131b33 0%, #0d1322 100%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 40px 90px rgba(0,0,0,.65), 0 0 80px rgba(139,92,255,.12);
  cursor: default; user-select: none;
}
@keyframes floaty { 0%,100% { translate: 0 0; } 50% { translate: 0 -14px; } }
.tcg-card.is-tilting { animation-play-state: paused; }
.tcg-holo {
  position: absolute; inset: 0; border-radius: 18px; pointer-events: none; z-index: 3;
  background:
    radial-gradient(circle at var(--hx, 50%) var(--hy, 40%), rgba(255,255,255,.22) 0%, transparent 28%),
    linear-gradient(115deg,
      rgba(55,226,255,.16) 10%, rgba(139,92,255,.14) 32%,
      rgba(255,94,200,.13) 55%, rgba(255,209,102,.15) 78%);
  background-blend-mode: screen;
  mix-blend-mode: screen;
  opacity: .85;
}
.tcg-inner { position: absolute; inset: 10px; border-radius: 12px; border: 1px solid rgba(245,200,66,.35); padding: 16px 16px 12px; display: flex; flex-direction: column; z-index: 2; background: linear-gradient(170deg, rgba(255,255,255,.03), transparent 40%); }
.tcg-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 10px; }
.tcg-name { font-weight: 900; letter-spacing: .1em; font-size: 16px; }
.tcg-hp { font-size: 12px; font-weight: 800; color: var(--gold); letter-spacing: .06em; }
.tcg-hp b { font-size: 17px; }
.tcg-art {
  border-radius: 9px; border: 1px solid rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 30% 25%, rgba(55,226,255,.25), transparent 55%),
    radial-gradient(circle at 75% 75%, rgba(139,92,255,.3), transparent 60%),
    linear-gradient(150deg, #18223f, #0c1120);
  height: 34%; display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
  overflow: hidden; position: relative;
}
.tcg-art img { width: 66px; height: 66px; border-radius: 14px; filter: drop-shadow(0 6px 18px rgba(0,0,0,.5)); }
.tcg-art::after { content: "CARD INTELLIGENCE"; position: absolute; bottom: 6px; right: 9px; font-size: 7px; letter-spacing: .3em; color: rgba(255,255,255,.4); font-weight: 700; }
.tcg-type { font-size: 10px; color: var(--muted); letter-spacing: .12em; text-align: center; margin-bottom: 10px; }
.tcg-type b { color: var(--gold); }
.tcg-moves { display: flex; flex-direction: column; gap: 7px; flex: 1; }
.tcg-move { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; font-weight: 700; border-bottom: 1px dashed rgba(255,255,255,.1); padding-bottom: 6px; }
.tcg-move .cost { display: inline-flex; gap: 3px; margin-right: 8px; }
.tcg-move .cost i { width: 13px; height: 13px; border-radius: 50%; background: var(--holo); display: inline-block; box-shadow: 0 0 6px rgba(139,92,255,.6); }
.tcg-move .mv { flex: 1; }
.tcg-move .dmg { font-weight: 900; color: var(--cyan); font-size: 13px; }
.tcg-foot { display: flex; justify-content: space-between; align-items: flex-end; font-size: 8.5px; color: var(--muted); letter-spacing: .04em; margin-top: 10px; }
.tcg-foot .meta span { display: block; line-height: 1.7; }
.tcg-foot .meta b { color: var(--text); }
.tcg-rarity { text-align: right; }
.tcg-rarity .rar { font-weight: 900; font-size: 13px; background: var(--holo); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: .14em; }
.tcg-rarity .num { display: block; font-size: 8.5px; }
.tcg-glow { position: absolute; inset: -2px; border-radius: 20px; background: var(--holo); filter: blur(26px); opacity: .16; z-index: -1; animation: holoShift 8s ease-in-out infinite alternate; }

/* ===== Ticker ===== */
.ticker { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 18px 0; overflow: hidden; background: rgba(255,255,255,.014); }
.ticker-track { display: flex; gap: 64px; width: max-content; animation: ticker 30s linear infinite; }
.ticker-track span { font-size: 12px; font-weight: 800; letter-spacing: .34em; text-transform: uppercase; color: rgba(255,255,255,.34); white-space: nowrap; display: inline-flex; align-items: center; gap: 64px; }
.ticker-track span::after { content: "✦"; color: var(--gold); opacity: .7; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* =====================================================
   ABOUT — founder story + missions
   ===================================================== */
.story {
  position: relative; border-radius: 24px; overflow: hidden;
  padding: clamp(40px, 7vw, 84px);
  background:
    linear-gradient(110deg, rgba(5,7,13,.92) 30%, rgba(5,7,13,.55)),
    url('/static/img/about-bg.jpg') center/cover;
  border: 1px solid var(--line);
}
.story-quote { font-family: "Noto Sans JP", sans-serif; font-size: clamp(20px, 3vw, 30px); font-weight: 900; line-height: 1.7; margin-bottom: 24px; }
.story-body { color: #c4cee2; font-size: 15px; max-width: 560px; margin-bottom: 28px; }
.story-badge { display: inline-flex; align-items: center; gap: 14px; border: 1px solid rgba(245,200,66,.4); border-radius: 12px; padding: 12px 20px; background: rgba(245,200,66,.06); }
.story-badge b { font-size: 26px; font-weight: 900; color: var(--gold); letter-spacing: .04em; }
.story-badge small { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

.missions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.mission { padding: 34px 28px; }
.mission .num { font-size: 12px; font-weight: 900; letter-spacing: .2em; color: var(--gold); margin-bottom: 16px; display: block; }
.mission .en { font-size: 11px; letter-spacing: .26em; text-transform: uppercase; color: var(--cyan); display: block; margin-bottom: 6px; }
.mission h3 { font-size: 19px; font-weight: 900; margin-bottom: 12px; line-height: 1.5; }
.mission p { font-size: 13.5px; color: var(--muted); }

/* =====================================================
   SERVICE
   ===================================================== */
.svc-main { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 54px; }
.svc-card { padding: 40px 36px; display: flex; flex-direction: column; overflow: hidden; }
.svc-num { font-size: 44px; font-weight: 900; line-height: 1; background: var(--holo); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 18px; opacity: .9; }
.svc-tag { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: .22em; color: var(--gold); border: 1px solid rgba(245,200,66,.4); padding: 4px 12px; border-radius: 99px; margin-bottom: 16px; width: fit-content; }
.svc-card h3 { font-size: clamp(20px, 2.4vw, 25px); font-weight: 900; line-height: 1.5; margin-bottom: 14px; }
.svc-card > p { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.svc-feats { list-style: none; margin-bottom: 28px; }
.svc-feats li { font-size: 13.5px; color: #c4cee2; padding: 7px 0 7px 24px; position: relative; border-bottom: 1px dashed rgba(255,255,255,.07); }
.svc-feats li::before { content: "✦"; position: absolute; left: 2px; color: var(--gold); font-size: 11px; }
.svc-link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 800; color: var(--gold); transition: gap .3s var(--ease); }
.svc-link:hover { gap: 14px; }
.svc-sub { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; margin-top: 22px; }
.svc-mini { padding: 26px 30px; display: flex; align-items: center; gap: 20px; }
.svc-mini .ico { font-size: 24px; flex-shrink: 0; }
.svc-mini h4 { font-size: 15.5px; font-weight: 800; margin-bottom: 4px; }
.svc-mini p { font-size: 12.5px; color: var(--muted); }
.svc-mini p a { color: var(--gold); border-bottom: 1px solid rgba(245,200,66,.4); }

/* =====================================================
   COMPANY
   ===================================================== */
.company-tbl { width: 100%; border-collapse: collapse; margin-top: 48px; max-width: 760px; margin-left: auto; margin-right: auto; }
.company-tbl tr { border-bottom: 1px solid var(--line); }
.company-tbl th { text-align: left; font-size: 12px; font-weight: 800; letter-spacing: .1em; color: var(--muted); padding: 22px 18px; width: 30%; vertical-align: top; white-space: nowrap; }
.company-tbl td { font-size: 14.5px; padding: 22px 18px; color: #d7deec; }

/* =====================================================
   CONTACT FORM (shared)
   ===================================================== */
.form-wrap { max-width: 680px; margin: 52px auto 0; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.f-group { margin-bottom: 20px; }
.f-group label { display: block; font-size: 12.5px; font-weight: 800; letter-spacing: .05em; color: #c4cee2; margin-bottom: 8px; }
.req { color: var(--pink); }
.f-group input, .f-group select, .f-group textarea {
  width: 100%; background: rgba(255,255,255,.035); color: var(--text);
  border: 1px solid rgba(255,255,255,.12); border-radius: 10px;
  padding: 14px 16px; font-size: 14px; font-family: inherit;
  transition: border-color .3s, box-shadow .3s, background .3s;
  appearance: none; -webkit-appearance: none;
}
.f-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238e9bb3' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.f-group select option { background: var(--bg1); }
.f-group input::placeholder, .f-group textarea::placeholder { color: #56617a; }
.f-group input:focus, .f-group select:focus, .f-group textarea:focus {
  outline: none; border-color: rgba(139,92,255,.65);
  box-shadow: 0 0 0 4px rgba(139,92,255,.14); background: rgba(255,255,255,.05);
}
.f-group textarea { resize: vertical; min-height: 130px; }
.form-actions { text-align: center; margin-top: 8px; }
.form-msg { display: none; margin-top: 18px; padding: 13px 18px; border-radius: 10px; font-size: 13.5px; text-align: center; }
.form-msg.error { display: block; background: rgba(255,94,140,.1); border: 1px solid rgba(255,94,140,.3); color: #ff8aa8; }

/* thanks panel */
.thanks {
  display: none; max-width: 560px; margin: 52px auto 0; text-align: center;
  padding: 58px 40px; border-radius: 20px;
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  border: 1px solid rgba(245,200,66,.3);
  animation: thanksIn .6s var(--ease);
}
@keyframes thanksIn { from { opacity: 0; transform: translateY(26px) scale(.97); } }
.thanks .tk-ico {
  width: 72px; height: 72px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--holo); display: flex; align-items: center; justify-content: center;
  font-size: 32px; font-weight: 900; color: #0a0c14;
  box-shadow: 0 0 44px rgba(139,92,255,.4);
}
.thanks h3 { font-size: 21px; font-weight: 900; margin-bottom: 14px; }
.thanks p { font-size: 14px; color: #c4cee2; margin-bottom: 18px; }
.thanks p strong { color: var(--gold); }
.thanks small { font-size: 12px; color: var(--muted); line-height: 1.8; display: block; }
.thanks small a { color: var(--gold); border-bottom: 1px solid rgba(245,200,66,.4); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { border-top: 1px solid var(--line); padding: 60px 0 36px; background: rgba(255,255,255,.012); }
.ft-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.ft-logo img { height: 72px; width: auto; border-radius: 12px; }
.ft-tagline { font-size: 12.5px; color: var(--muted); margin-top: 14px; }
.ft-links { display: flex; gap: 26px; flex-wrap: wrap; }
.ft-links a { font-size: 12.5px; color: var(--muted); transition: color .3s; }
.ft-links a:hover { color: #fff; }
.ft-copy { text-align: center; font-size: 11px; color: #4c5670; padding-top: 26px; letter-spacing: .06em; }

/* =====================================================
   RECRUIT LP specific
   ===================================================== */
.r-hero { min-height: 92svh; display: flex; align-items: center; padding: 160px 0 80px; }
.r-hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items: center; }
.r-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.r-badge { font-size: 12px; color: var(--muted); border: 1px solid var(--line); background: rgba(255,255,255,.03); border-radius: 8px; padding: 7px 14px; }
.r-badge b { color: var(--gold); font-weight: 800; }

/* applicant card stack (recruit hero visual) */
.stack-scene { perspective: 1100px; display: flex; justify-content: center; }
.stack { position: relative; width: min(300px, 70vw); aspect-ratio: 63/88; transform-style: preserve-3d; }
.scard {
  position: absolute; inset: 0; border-radius: 16px;
  background: linear-gradient(165deg, #141c36, #0c1122);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 70px rgba(0,0,0,.55);
  padding: 22px; display: flex; flex-direction: column; gap: 12px;
}
.scard.back1 { transform: rotate(-9deg) translate(-26px, 10px); opacity: .5; }
.scard.back2 { transform: rotate(8deg) translate(26px, 4px); opacity: .7; }
.scard.front { animation: floaty 6s ease-in-out infinite; }
.scard .sc-head { display: flex; justify-content: space-between; align-items: center; font-size: 11px; letter-spacing: .14em; color: var(--muted); font-weight: 800; }
.scard .sc-head .ok { color: #34e8a0; }
.scard .sc-ava { width: 58px; height: 58px; border-radius: 50%; background: var(--holo); opacity: .85; }
.scard .sc-name { font-size: 16px; font-weight: 900; }
.scard .sc-tag { font-size: 11px; color: var(--muted); }
.scard .sc-bars { display: flex; flex-direction: column; gap: 9px; margin-top: 4px; }
.scard .sc-bar { font-size: 10.5px; color: var(--muted); letter-spacing: .06em; }
.scard .sc-bar i { display: block; height: 6px; border-radius: 3px; background: rgba(255,255,255,.08); margin-top: 4px; position: relative; overflow: hidden; }
.scard .sc-bar i::after { content: ""; position: absolute; inset: 0; width: var(--w, 60%); border-radius: 3px; background: var(--holo); animation: barIn 1.6s var(--ease) both; }
@keyframes barIn { from { width: 0; } }
.scard .sc-verdict { margin-top: auto; text-align: center; font-size: 12px; font-weight: 900; letter-spacing: .18em; color: var(--gold); border: 1px dashed rgba(245,200,66,.5); border-radius: 8px; padding: 9px; }

/* voice cards */
.voices { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 50px; }
.voice { padding: 28px 30px; font-size: 14.5px; color: #ccd5e6; position: relative; }
.voice::after { content: "”"; position: absolute; top: 6px; right: 18px; font-size: 54px; line-height: 1; font-family: Georgia, serif; background: var(--holo); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: .5; }

/* causes */
.causes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px; }
.cause { padding: 32px 28px; text-align: left; }
.cause .c-num { font-size: 38px; font-weight: 900; background: var(--holo); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 16px; }
.cause h3 { font-size: 16.5px; font-weight: 900; margin-bottom: 10px; }
.cause p { font-size: 13.5px; color: var(--muted); }
.causes-after { text-align: center; color: #c4cee2; font-size: 15px; margin-top: 36px; font-weight: 700; }

/* steps (4つの仕組み) */
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 54px; }
.step { padding: 36px 32px; }
.step .s-top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.step .s-num { font-size: 12px; font-weight: 900; letter-spacing: .2em; color: var(--gold); border: 1px solid rgba(245,200,66,.4); border-radius: 8px; padding: 5px 12px; }
.step h3 { font-size: 18.5px; font-weight: 900; line-height: 1.5; margin-bottom: 10px; }
.step > p { font-size: 13.5px; color: var(--muted); margin-bottom: 16px; }
.step .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.step .tags span { font-size: 11px; font-weight: 700; color: var(--cyan); background: rgba(55,226,255,.07); border: 1px solid rgba(55,226,255,.22); padding: 4px 12px; border-radius: 99px; }
.step .opt { margin-top: 14px; font-size: 12px; color: var(--muted); }
.step .opt b { color: var(--pink); font-weight: 800; letter-spacing: .1em; }

/* strengths */
.strengths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 54px; }
.strength { padding: 34px 28px; }
.strength .st-no { font-size: 11px; letter-spacing: .26em; color: var(--gold); font-weight: 800; margin-bottom: 14px; display: block; text-transform: uppercase; }
.strength h3 { font-size: 17px; font-weight: 900; line-height: 1.55; margin-bottom: 12px; }
.strength p { font-size: 13px; color: var(--muted); }

/* pricing */
.pricing { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; margin-top: 54px; max-width: 860px; margin-left: auto; margin-right: auto; }
.price-card { padding: 40px 36px; text-align: left; position: relative; }
.price-card.featured { border-color: rgba(245,200,66,.45); }
.price-card.featured::after { content: "MAIN PLAN"; position: absolute; top: -11px; left: 32px; font-size: 10px; font-weight: 900; letter-spacing: .2em; background: var(--gold); color: #0a0c14; padding: 4px 14px; border-radius: 6px; }
.price-plan { font-size: 12px; font-weight: 800; letter-spacing: .18em; color: var(--gold); margin-bottom: 12px; text-transform: uppercase; }
.price-amount { font-size: clamp(24px, 3.4vw, 34px); font-weight: 900; margin-bottom: 4px; }
.price-unit { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.price-inc { font-size: 13px; color: #c4cee2; padding: 7px 0 7px 24px; position: relative; border-bottom: 1px dashed rgba(255,255,255,.07); }
.price-inc::before { content: "✓"; position: absolute; left: 2px; color: var(--cyan); font-weight: 900; }
.price-note { margin-top: 20px; font-size: 12.5px; color: var(--muted); background: rgba(245,200,66,.05); border: 1px solid rgba(245,200,66,.18); border-radius: 10px; padding: 14px 16px; }
.price-note strong { color: var(--gold); }

/* flow */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 54px; counter-reset: fl; }
.fl-step { padding: 30px 22px; text-align: center; position: relative; }
.fl-step .f-num { width: 46px; height: 46px; margin: 0 auto 16px; border-radius: 50%; background: var(--holo); color: #0a0c14; font-weight: 900; font-size: 16px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 26px rgba(139,92,255,.35); }
.fl-step h4 { font-size: 14.5px; font-weight: 900; margin-bottom: 8px; line-height: 1.5; }
.fl-step p { font-size: 12px; color: var(--muted); }
.flow-note { text-align: center; margin-top: 26px; font-size: 13.5px; color: var(--muted); }
.flow-note strong { color: var(--gold); }

/* faq accordion */
.faq-list { max-width: 740px; margin: 50px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; color: var(--text);
  display: flex; align-items: center; gap: 16px; text-align: left;
  font-size: 15px; font-weight: 800; font-family: inherit; padding: 24px 4px;
  transition: color .3s;
}
.faq-q:hover { color: var(--gold); }
.faq-q .q-ico { width: 26px; height: 26px; border-radius: 50%; background: var(--holo); color: #0a0c14; font-size: 13px; font-weight: 900; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.faq-q .q-arrow { margin-left: auto; transition: transform .35s var(--ease); color: var(--muted); flex-shrink: 0; }
.faq-item.is-open .q-arrow { transform: rotate(180deg); color: var(--gold); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { font-size: 13.5px; color: var(--muted); padding: 0 4px 24px 46px; }

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 960px) {
  .hero-grid, .r-hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .tcg-scene, .stack-scene { order: -1; }
  .missions, .causes, .strengths { grid-template-columns: 1fr; }
  .svc-main, .steps, .voices, .pricing { grid-template-columns: 1fr; }
  .svc-sub { grid-template-columns: 1fr; }
  .flow { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .sec { padding: 76px 0; }
  .hero { padding: 120px 0 64px; }
  .nav-links {
    position: fixed; inset: 0; background: rgba(5,7,13,.97);
    backdrop-filter: blur(20px); flex-direction: column; justify-content: center;
    gap: 34px; transform: translateY(-100%); transition: transform .45s var(--ease);
    z-index: 105;
  }
  .nav-links.is-open { transform: none; }
  .nav-link { font-size: 18px; }
  .hamburger { display: block; position: relative; z-index: 110; }
  .f-row { grid-template-columns: 1fr; gap: 0; }
  .flow { grid-template-columns: 1fr; }
  .ft-inner { flex-direction: column; }
}
