/* ══════════════════════════════════════════
   PRICING PAGE — pricing.css
   ══════════════════════════════════════════ */

/* ── HERO ── */
.pricing-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 40px 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.pricing-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.pricing-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  letter-spacing: 0.08em;
  color: var(--text);
  line-height: 1.15;
  animation: fadeUp 1s ease forwards 0.3s;
  opacity: 0;
}

.pricing-hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-soft);
  line-height: 1.8;
  margin-top: 20px;
  animation: fadeUp 1s ease forwards 0.6s;
  opacity: 0;
}

/* ── PRICING GRID ── */
.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 60px 100px;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--dim2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--dim2);
  border: 1px solid var(--dim2);
}

/* ── PRICING CARD ── */
.pricing-card {
  background: var(--bg-card);
  padding: 52px 40px 44px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.3s;
}

.pricing-card:hover {
  background: #131d30;
}

.pricing-card--featured {
  background: #0f1b2e;
}

.pricing-card--featured:hover {
  background: #132035;
}

/* Gold top border on featured */
.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.pricing-featured-badge {
  position: absolute;
  top: -1px;
  right: 32px;
  background: var(--gold);
  color: #070c16;
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 14px;
  font-weight: 500;
}

.pricing-card-top {
  margin-bottom: 28px;
}

.pricing-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 20px;
}

.pricing-type {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.pricing-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.2;
}

/* ── CARD BODY ── */
.pricing-card-body {
  flex: 1;
  margin-bottom: 36px;
}

.pricing-desc {
  font-size: 0.82rem;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-soft);
  padding-left: 16px;
  position: relative;
}

.pricing-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
}

/* ── CTA BUTTON ── */
.pricing-cta {
  display: inline-block;
  padding: 13px 32px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid var(--dim);
  color: var(--text);
  text-align: center;
  transition: all 0.3s;
  margin-top: auto;
}

.pricing-cta:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.pricing-cta--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #070c16;
}

.pricing-cta--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #070c16;
}

/* ── CUSTOM NOTE ── */
.pricing-note {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 60px 110px;
  border-top: 1px solid var(--dim2);
  position: relative;
  z-index: 1;
}

.pricing-note-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.pricing-note-icon {
  font-size: 1.2rem;
  color: var(--gold);
  opacity: 0.5;
}

.pricing-note-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-soft);
  line-height: 1.8;
}

/* ── NAV ACTIVE STATE ── */
.nav-active {
  color: var(--gold) !important;
  opacity: 1 !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pricing-section {
    padding: 40px 28px 70px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-note {
    padding: 50px 28px 80px;
  }
}

/* ── JAPANESE ── */
:lang(ja) .pricing-hero-title,
:lang(ja) .pricing-name {
  font-family: 'Noto Serif JP', serif;
}

:lang(ja) .pricing-hero-sub,
:lang(ja) .pricing-note-text {
  font-family: 'Noto Serif JP', serif;
  font-style: normal;
}
