/* LiFTY marketing site — ダーク×ネオンオレンジのブランド訴求配色
   （lib/core/theme/app_colors.dart の AppColors.dark と同じトークン値）。
   CLAUDE.md「アプリ名・ビジュアルアイデンティティ」の通り、ダークは
   ブランド訴求（ロゴ・ストア掲載・SNSなど）の主役という位置付けのため、
   このサイトはシステム設定に関わらずダーク固定とする（アプリ本体とは
   異なる方針）。 */

:root {
  --bg: #0c0a08;
  --surface: #171310;
  --surface2: #211c16;
  --ink: #f5f1e6;
  --ink-soft: #b6ac99;
  --ink-faint: #857c6b;
  --line: rgba(245, 241, 230, 0.12);
  --line-strong: rgba(245, 241, 230, 0.22);
  --accent: #ff6b1a;
  --accent-ink: #180f07;
  --accent-soft: rgba(255, 107, 26, 0.18);
  --glow: rgba(255, 107, 26, 0.45);

  --font-ui: -apple-system, "SF Pro Display", "SF Pro Text", "Segoe UI",
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium",
    "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 720px;
}

/* ヘッダー */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.brand span {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: var(--ink);
}

.header-badge {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 6px 14px;
}

/* ヒーロー */

.hero {
  padding: 64px 0 56px;
  text-align: center;
}

.hero-logo {
  width: 96px;
  height: 96px;
  margin: 0 auto 28px;
  border-radius: 24px;
  filter: drop-shadow(0 0 36px var(--glow));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(255, 107, 26, 0.3);
  border-radius: 999px;
  padding: 7px 16px;
  margin-bottom: 24px;
}

.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--glow);
}

h1 {
  font-size: clamp(32px, 6vw, 52px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin: 0 0 20px;
  text-wrap: balance;
}

h1 .accent-word {
  color: var(--accent);
  text-shadow: 0 0 28px var(--glow);
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  text-wrap: balance;
}

.hero-pillars-note {
  margin-top: 36px;
  font-size: 14px;
  color: var(--ink-faint);
}

/* 差別化3本柱 */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 8px 0 64px;
}

@media (max-width: 760px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

.pillar {
  background: var(--surface2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
}

.pillar h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--ink);
}

.pillar p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin: 0;
}

/* 「近日公開」セクション */

.notify {
  text-align: center;
  padding: 8px 0 72px;
}

.notify-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px 32px;
}

.notify h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 10px;
}

.notify p {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.7;
}

/* フッター */

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--ink-faint);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: var(--ink-faint);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--ink-soft);
}

/* 利用規約・プライバシーポリシー */

.doc-header {
  padding: 40px 0 8px;
}

.doc-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-faint);
  text-decoration: none;
  margin-bottom: 20px;
}

.doc-back:hover {
  color: var(--ink-soft);
}

.doc-header h1 {
  font-size: 28px;
  text-align: left;
  margin: 0 0 8px;
}

.doc-notice {
  font-size: 13.5px;
  color: var(--plate-amber, #ffc94d);
  background: rgba(255, 201, 77, 0.12);
  border: 1px solid rgba(255, 201, 77, 0.25);
  border-radius: 12px;
  padding: 12px 16px;
  margin: 20px 0 40px;
  line-height: 1.6;
}

.doc-body {
  padding-bottom: 72px;
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink-soft);
  white-space: pre-line;
}

.doc-body h2 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin: 32px 0 10px;
}

.doc-body h2:first-child {
  margin-top: 0;
}
