/* 公募ナビAI v1.0 - Premium Dark + Champagne Gold */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@400;500;600;700&display=swap');

:root {
  --bg-primary: #080c16;
  --bg-secondary: #0e1424;
  --bg-card: #141c30;
  --bg-card-hover: #1a2440;
  --accent: #c9a96e;
  --accent-hover: #b8963d;
  --accent-light: rgba(201, 169, 110, 0.12);
  --accent-glow: rgba(201, 169, 110, 0.25);
  --text-primary: #f0ece4;
  --text-secondary: #b8b0a0;
  --text-muted: #7a7060;
  --border: #2a2a3a;
  --border-gold: rgba(201, 169, 110, 0.25);
  --success: #4ade80;
  --warning: #fbbf24;
  --danger: #f87171;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 32px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 24px rgba(201, 169, 110, 0.08);
  --font-heading: 'Shippori Mincho', serif;
  --font-body: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
}

.hidden { display: none !important; }

/* ====== Header ====== */
.header {
  background: rgba(8, 12, 22, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-gold);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__icon { font-size: 22px; }
.header__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.header__badge {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.header__actions { display: flex; align-items: center; gap: 12px; }
.header__user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}
.btn--primary {
  background: linear-gradient(135deg, #c9a96e, #b8963d);
  color: #0a0a0a;
  box-shadow: 0 2px 12px rgba(201, 169, 110, 0.25);
}
.btn--primary:hover {
  background: linear-gradient(135deg, #d4b87a, #c9a96e);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.35);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  border: 1px solid var(--border-gold);
  color: var(--accent);
}
.btn--outline:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}
.btn--sm { padding: 6px 16px; font-size: 13px; }
.btn--lg { padding: 16px 40px; font-size: 16px; }
.btn--full { width: 100%; }
.btn--google {
  background: #fff;
  color: #333;
  border: 1px solid #ddd;
}
.btn--google:hover { background: #f5f5f5; }
.btn--danger { background: var(--danger); color: #fff; }
.btn--danger:hover { opacity: 0.9; }
.btn-link {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ====== Inputs ====== */
.input {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 14px;
  color: var(--text-primary);
  width: 100%;
  transition: border-color 0.3s;
  font-family: var(--font-body);
}
.input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-light); }
.input--lg { padding: 14px 20px; font-size: 16px; }
.input--sm { padding: 8px 12px; font-size: 13px; width: auto; }

.input-group {
  display: flex;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto;
}
.input-group .input { flex: 1; }

/* ====== Section Common ====== */
.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}
.section-desc {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 15px;
  line-height: 1.8;
}
.section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 48px;
}

/* ====== Hero ====== */
.hero {
  padding: 120px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero__label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border-gold);
  padding: 6px 20px;
  border-radius: 24px;
  margin-bottom: 32px;
  font-weight: 500;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.hero__title-accent {
  color: var(--accent);
}
.hero__subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
}
.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}
.hero__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ====== Proof Bar ====== */
.proof-bar {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
}
.proof-bar__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 64px;
}
.proof-bar__item {
  text-align: center;
}
.proof-bar__number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}
.proof-bar__label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

/* ====== Service Sample (Browser Mockup) ====== */
.service-sample {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.mockup {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.4), 0 0 0 1px rgba(201, 169, 110, 0.08);
}
.mockup__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #0c1220;
  border-bottom: 1px solid var(--border);
}
.mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mockup__dot--red { background: #f87171; }
.mockup__dot--yellow { background: #fbbf24; }
.mockup__dot--green { background: #4ade80; }
.mockup__url {
  flex: 1;
  background: var(--bg-primary);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
}
.mockup__body {
  padding: 28px;
}
.mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.mockup__header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--text-primary);
}
.mockup__date {
  font-size: 12px;
  color: var(--text-muted);
}

/* Mockup Opportunity Cards */
.mockup-opp {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.3s;
}
.mockup-opp:hover {
  border-color: var(--border-gold);
}
.mockup-opp__score {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  min-width: 52px;
  text-align: center;
  line-height: 1.2;
}
.mockup-opp__score--high { color: var(--success); }
.mockup-opp__score--mid { color: var(--accent); }
.mockup-opp__score--low { color: var(--text-muted); }
.mockup-opp__badge {
  font-size: 10px;
  display: block;
  margin-top: 2px;
}
.mockup-opp__badge--high { color: var(--success); }
.mockup-opp__badge--mid { color: var(--accent); }
.mockup-opp__badge--low { color: var(--text-muted); }
.mockup-opp__body { flex: 1; }
.mockup-opp__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.mockup-opp__meta {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.mockup-opp__reason {
  font-size: 12px;
  color: var(--text-secondary);
  padding-top: 6px;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}
.mockup-opp__tags {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}
.mockup-opp__tag {
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 12px;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 500;
}

/* ====== Steps ====== */
.steps {
  padding: 100px 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.step-card__number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #c9a96e, #b8963d);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}
.step-card__icon { font-size: 36px; margin-bottom: 16px; }
.step-card h3 {
  font-family: var(--font-heading);
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.step-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.8; }

/* ====== Comparison ====== */
.comparison {
  padding: 100px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.comparison__grid {
  display: flex;
  align-items: stretch;
  gap: 24px;
  margin-top: 20px;
}
.comparison__card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
}
.comparison__card h3 {
  font-family: var(--font-heading);
  margin-bottom: 20px;
  font-size: 18px;
}
.comparison__card ul { list-style: none; }
.comparison__card ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.comparison__card ul li:last-child { border: none; }
.comparison__card--before { opacity: 0.65; }
.comparison__card--before ul li::before {
  content: '\2716';
  margin-right: 10px;
  color: var(--danger);
  font-size: 12px;
}
.comparison__card--after {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.comparison__card--after ul li::before {
  content: '\2714';
  margin-right: 10px;
  color: var(--success);
  font-size: 12px;
}
.comparison__arrow {
  font-size: 28px;
  color: var(--accent);
  font-weight: 700;
  display: flex;
  align-items: center;
}
.comparison__label {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  padding: 6px 16px;
  border-radius: 20px;
  background: var(--bg-secondary);
  display: inline-block;
  letter-spacing: 0.05em;
}
.comparison__label--highlight {
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 600;
}

/* ====== Competitor Comparison Table ====== */
.competitor {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.competitor__wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.competitor__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  font-size: 14px;
}
.competitor__table thead {
  background: var(--bg-secondary);
}
.competitor__table th {
  padding: 16px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.competitor__feature-col {
  width: 160px;
  text-align: left !important;
}
.competitor__col--self {
  color: var(--accent) !important;
  font-weight: 700 !important;
  position: relative;
}
.competitor__col--self::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}
.competitor__table td {
  padding: 14px 14px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.competitor__table tbody tr:last-child td {
  border-bottom: none;
}
.competitor__table tbody tr {
  transition: background 0.2s;
}
.competitor__table tbody tr:hover {
  background: rgba(201, 169, 110, 0.03);
}
.competitor__label {
  text-align: left !important;
  font-weight: 600;
  color: var(--text-primary) !important;
  white-space: nowrap;
}
.competitor__self {
  background: rgba(201, 169, 110, 0.06);
  color: var(--text-primary) !important;
  font-weight: 500;
}
.competitor__check {
  color: var(--success);
  font-size: 16px;
  font-weight: 700;
}
.competitor__cross {
  color: var(--text-muted);
  font-size: 14px;
}
.competitor__note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
}

/* ====== Sample Cards (Match Score) ====== */
.sample-section {
  padding: 100px 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.sample-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sample-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.sample-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.sample-card__score {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 4px;
}
.sample-card--high .sample-card__score { color: var(--success); }
.sample-card--mid .sample-card__score { color: var(--accent); }
.sample-card--low .sample-card__score { color: var(--text-muted); }
.sample-card__badge {
  display: inline-block;
  font-size: 11px;
  padding: 2px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.sample-card--high .sample-card__badge { background: rgba(74, 222, 128, 0.12); color: var(--success); }
.sample-card--mid .sample-card__badge { background: var(--accent-light); color: var(--accent); }
.sample-card--low .sample-card__badge { background: rgba(122,112,96,0.15); color: var(--text-muted); }
.sample-card h4 { font-size: 15px; margin-bottom: 6px; font-weight: 600; }
.sample-card p { font-size: 13px; color: var(--text-secondary); }
.sample-card__reason {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-style: italic;
  line-height: 1.7;
}

/* ====== Pricing ====== */
.pricing {
  padding: 100px 24px;
  background: var(--bg-secondary);
}
.pricing__grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  max-width: 720px;
  margin: 20px auto 0;
}
.pricing__card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.pricing__card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}
.pricing__card--yearly {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(201, 169, 110, 0.12);
}
.pricing__ribbon {
  position: absolute;
  top: -12px;
  right: 16px;
  background: linear-gradient(135deg, #c9a96e, #b8963d);
  color: #0a0a0a;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.pricing__card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}
.pricing__price {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 28px;
}
.pricing__yen { font-size: 20px; vertical-align: super; }
.pricing__period { font-size: 16px; color: var(--text-muted); font-weight: 400; }
.pricing__features {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}
.pricing__features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}
.pricing__features li:before {
  content: '\2714';
  color: var(--accent);
  margin-right: 10px;
  font-weight: 700;
}

/* ====== FAQ ====== */
.faq {
  padding: 100px 24px;
  max-width: 700px;
  margin: 0 auto;
}
.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  transition: border-color 0.3s;
}
.faq__item:hover { border-color: var(--border-gold); }
.faq__item summary {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
}
.faq__item summary:hover { color: var(--accent); }
.faq__item p {
  padding: 0 24px 18px;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
}

/* ====== CTA ====== */
.cta {
  padding: 100px 24px;
  text-align: center;
  position: relative;
}
.cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta h2 {
  font-family: var(--font-heading);
  font-size: 30px;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.cta p { color: var(--text-secondary); margin-bottom: 28px; font-size: 15px; }

/* ====== Onboarding ====== */
.onboarding {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 24px;
}
.onboarding__progress {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
}
.onboarding__step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
}
.onboarding__step.active { color: var(--accent); }
.onboarding__step.done { color: var(--success); }
.onboarding__step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  border: 2px solid var(--border);
}
.onboarding__step.active .onboarding__step-num {
  border-color: var(--accent);
  background: linear-gradient(135deg, #c9a96e, #b8963d);
  color: #0a0a0a;
}
.onboarding__step.done .onboarding__step-num {
  border-color: var(--success);
  background: var(--success);
  color: #fff;
}
.onboarding__panel h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 8px;
}
.onboarding__panel p { color: var(--text-secondary); margin-bottom: 24px; }
.onboarding__actions {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

/* Profile Card */
.profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.profile-card__row {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.profile-card__row:last-child { border: none; }
.profile-card__label {
  width: 140px;
  color: var(--text-muted);
  flex-shrink: 0;
}
.profile-card__value { color: var(--text-primary); }

/* Area Selector */
.area-selector {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.area-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.area-checkbox:hover { border-color: var(--accent); }
.area-checkbox input { display: none; }
.area-checkbox.checked { border-color: var(--accent); background: var(--accent-light); }
.area-checkbox__info h4 { font-size: 15px; }
.area-checkbox__info p { font-size: 12px; color: var(--text-muted); }

/* ====== Dashboard ====== */
.dashboard {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px;
}
.dashboard__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.dashboard__header h2 {
  font-family: var(--font-heading);
  font-size: 24px;
}
.dashboard__meta { display: flex; align-items: center; gap: 12px; }
.badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.badge--trial { background: var(--accent-light); color: var(--accent); }
.badge--active { background: rgba(74, 222, 128, 0.12); color: var(--success); }
.badge--cancelled { background: rgba(248, 113, 113, 0.12); color: var(--danger); }

/* Tabs */
.dashboard__tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.tab {
  padding: 12px 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.tab:hover { color: var(--text-primary); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Filter Bar */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.filter-bar__count { font-size: 13px; color: var(--text-muted); margin-left: auto; }

/* Opportunity List */
.opportunity-list { display: flex; flex-direction: column; gap: 12px; }
.opp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 20px;
  transition: border-color 0.3s;
}
.opp-card:hover { border-color: var(--border-gold); }
.opp-card__score {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  min-width: 60px;
  text-align: center;
}
.opp-card__score--high { color: var(--success); }
.opp-card__score--mid { color: var(--accent); }
.opp-card__score--low { color: var(--text-muted); }
.opp-card__body { flex: 1; }
.opp-card__title { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
.opp-card__meta { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.opp-card__reason { font-size: 13px; color: var(--text-secondary); }
.opp-card__actions { display: flex; gap: 8px; margin-top: 8px; }

.empty-state {
  text-align: center;
  padding: 60px 24px;
  color: var(--text-muted);
}
.empty-state p { margin-bottom: 8px; }

/* Settings */
.settings-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.settings-section h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--accent);
}
.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}
.setting-row:last-child { border: none; }

/* Subscription Info */
.sub-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.sub-card__plan {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.sub-card__price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}
.sub-card__info { font-size: 14px; color: var(--text-secondary); margin-bottom: 24px; }

/* ====== Modal ====== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  padding: 40px;
  width: 100%;
  max-width: 420px;
  position: relative;
}
.modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
}
.modal h2 {
  font-family: var(--font-heading);
  margin-bottom: 24px;
  text-align: center;
}
.auth-form { display: flex; flex-direction: column; gap: 12px; }
.auth-switch { text-align: center; margin-top: 16px; font-size: 14px; color: var(--text-muted); }
.auth-reset { display: block; text-align: center; margin-top: 8px; }
.error-msg { color: var(--danger); font-size: 13px; text-align: center; }
.status-msg { text-align: center; margin-top: 12px; font-size: 14px; color: var(--accent); }

/* ====== Footer ====== */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 32px 24px;
  margin-top: 0;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer p { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.footer a { color: var(--accent); text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer__links { display: flex; justify-content: center; gap: 24px; }
.footer__links a { font-size: 12px; color: var(--text-muted); }

/* ====== Keyword Tags ====== */
.keyword-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.keyword-tag {
  background: var(--accent-light);
  color: var(--accent);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.keyword-tag__remove {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .hero__title { font-size: 28px; }
  .hero { padding: 80px 20px 60px; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .steps__grid { grid-template-columns: 1fr; }
  .comparison__grid { flex-direction: column; }
  .comparison__arrow { transform: rotate(90deg); justify-content: center; }
  .sample-cards { grid-template-columns: 1fr; }
  .pricing__grid { flex-direction: column; }
  .input-group { flex-direction: column; }
  .onboarding__progress { gap: 16px; font-size: 12px; }
  .header__inner { padding: 12px 16px; }
  .header__title { font-size: 16px; }
  .header__badge { display: none; }
  .opp-card { flex-direction: column; gap: 8px; }
  .opp-card__score { text-align: left; }
  .proof-bar__inner { flex-direction: column; gap: 28px; }
  .proof-bar__number { font-size: 28px; }
  .section-title { font-size: 24px; }
  .mockup-opp { flex-direction: column; gap: 8px; }
  .mockup-opp__score { text-align: left; }
  .mockup__body { padding: 16px; }
}
