/* ==============================================
   studio-rec.css
   OFFBEAT Studio Recording Page Styles
   ============================================== */

/* ----------------------------------------------
   Inner Page Base
   ---------------------------------------------- */
.ob-inner-page {
  --bg: #f7f7f5;
  --paper: #ffffff;
  --text: #222222;
  --muted: #666666;
  --line: rgba(0, 0, 0, .08);
  --accent: #EFA25C;
  --accent-light: rgba(239, 162, 92, .12);
  --accent-border: rgba(239, 162, 92, .6);
  background: var(--bg);
  color: var(--text);
}

/* ----------------------------------------------
   Inner Hero
   ---------------------------------------------- */
.ob-inner-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) 24px clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--line);
}

.ob-inner-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

.ob-inner-hero__label {
  font-family: 'Space Grotesk', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--accent);
  margin: 0 0 20px;
}

.ob-inner-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 10vw, 150px);
  line-height: .92;
  letter-spacing: .03em;
  margin: 0 0 clamp(24px, 4vw, 40px);
  font-weight: 400;
  color: var(--text);
}

.ob-inner-hero__title--accent {
  color: var(--accent);
}

.ob-inner-hero__sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--muted);
  line-height: 1.9;
  margin: 0;
}

.ob-inner-hero__bg-text {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(180px, 32vw, 480px);
  line-height: 1;
  color: rgba(0, 0, 0, .04);
  pointer-events: none;
  user-select: none;
  z-index: 1;
  white-space: nowrap;
}

/* ----------------------------------------------
   Section utility
   ---------------------------------------------- */
.ob-section--gray {
  background: rgba(0, 0, 0, .02);
}

/* ----------------------------------------------
   Use Cases — サービスページ風ライン区切り
   ---------------------------------------------- */
.ob-usecases {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.ob-usecase {
  display: grid;
  grid-template-columns: clamp(60px, 8vw, 80px) 1fr;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--line);
  transition: transform .3s ease;
}

.ob-usecase:first-child {
  border-top: none;
}

.ob-usecase:hover {
  transform: translateX(6px);
}

.ob-usecase__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 64px);
  line-height: 1;
  color: var(--accent);
  opacity: .5;
}

.ob-usecase__title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: .04em;
}

.ob-usecase__text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.9;
  margin: 0;
}

/* ----------------------------------------------
   Studio Equipment — 横2カラム・テーブル風
   ---------------------------------------------- */
.ob-studio-equip {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ob-studio-equip__group {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.ob-studio-equip__label {
  font-family: 'Space Grotesk', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  color: #fff;
  background: var(--text);
  margin: 0;
  padding: 12px 20px;
}

.ob-studio-equip__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ob-studio-equip__list li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
}

.ob-studio-equip__list li:last-child {
  border-bottom: none;
}

.ob-studio-equip__list li:hover {
  background: rgba(239, 162, 92, .04);
}

.ob-studio-equip__cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--accent);
  background: var(--accent-light);
  border-radius: 4px;
  padding: 3px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ob-studio-equip__item {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

/* ----------------------------------------------
   Pricing — 3カード
   ---------------------------------------------- */
.ob-rec-plans {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.ob-rec-plan {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all .3s ease;
}

.ob-rec-plan:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
}

.ob-rec-plan--featured {
  border-color: var(--accent-border);
  background: linear-gradient(145deg, #fff 50%, rgba(239, 162, 92, .06) 100%);
  box-shadow: 0 8px 32px rgba(239, 162, 92, .12);
}

.ob-rec-plan__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.ob-rec-plan__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--muted);
  margin: 0 0 8px;
}

.ob-rec-plan__name {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: .04em;
}

.ob-rec-plan__price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: .04em;
  color: var(--text);
  margin: 0 0 16px;
  line-height: 1;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.ob-rec-plan--featured .ob-rec-plan__price {
  color: var(--accent);
}

.ob-rec-plan__unit {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  color: var(--muted);
  font-weight: 400;
}

.ob-rec-plan__desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.ob-rec-note {
  max-width: 1000px;
  margin: 20px auto 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}

/* ----------------------------------------------
   CTA (Dark)
   ---------------------------------------------- */
.ob-cta {
  background: var(--text);
  padding: clamp(60px, 10vw, 100px) 24px;
  text-align: center;
}

.ob-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}

.ob-cta__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--accent);
  margin: 0 0 20px;
}

.ob-cta__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 80px);
  letter-spacing: .04em;
  color: #fff;
  margin: 0 0 20px;
  font-weight: 400;
}

.ob-cta__text {
  font-size: 15px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
  margin: 0 0 40px;
}

.ob-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.ob-cta .ob-btn {
  background: transparent;
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
}

.ob-cta .ob-btn:hover {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .08);
}

.ob-cta .ob-btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.ob-cta .ob-btn--accent:hover {
  background: #d4863e;
  border-color: #d4863e;
}

.ob-cta .ob-btn--line {
  background: rgba(239, 162, 92, .15);
  border-color: var(--accent-border);
  color: var(--accent);
}

.ob-btn--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.ob-btn--accent:hover {
  background: #d4863e;
  border-color: #d4863e;
  color: #fff;
}

/* ----------------------------------------------
   Responsive
   ---------------------------------------------- */
@media (max-width: 899px) {
  .ob-rec-plans {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .ob-studio-equip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ob-inner-hero__bg-text {
    opacity: .5;
  }

  .ob-usecase {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }
}
