/* ============================================================
   Top page
   ============================================================ */

.nijiro-element.is-hidden {
  display: none;
}

.hero {
  position: relative;
  padding: 104px 48px 88px;
  min-height: 640px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--charcoal);
  color: #fff;
}
.hero-puzzle {
  display: none;
  position: absolute;
  inset: 0;
  gap: 2px;
  z-index: 0;
  overflow: hidden;
  align-content: start;
}
.hero-puzzle--desktop {
  display: grid;
  grid-template-columns: repeat(50, 1fr);
}
.hero-puzzle--mobile {
  grid-template-columns: repeat(14, 1fr);
}
.hero-puzzle-tile {
  aspect-ratio: 1 / 1;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transform: scale(0.55);
  animation:
    heroPuzzleIn 2.8s cubic-bezier(0.16, 1, 0.3, 1) forwards,
    heroPuzzleBreathe 10s ease-in-out infinite;
  animation-delay: var(--delay), var(--breathe-delay);
}
.hero-puzzle-tile.is-light {
  background: rgba(255, 255, 255, 0.34);
}
.hero-puzzle-tile.is-gray {
  background: rgba(255, 255, 255, 0.15);
}
.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0.6) 35%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  opacity: 0;
  animation: heroTextIn 0.6s ease-out forwards;
  animation-delay: 1.4s;
}
@keyframes heroPuzzleIn {
  to {
    opacity: 1;
  }
}
@keyframes heroPuzzleBreathe {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.78; }
}
.hero-text-panel {
  position: relative;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  padding: 32px 36px 32px 30px;
  border-radius: 2px;
  border-left: 3px solid rgba(255, 255, 255, 0.85);
  display: inline-block;
  max-width: 100%;
  opacity: 0;
  animation: heroTextIn 0.6s ease-out forwards;
  animation-delay: 1.4s;
}
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #d8d0c8;
  margin-bottom: 24px;
  font-weight: 800;
}
.hero-title {
  font-size: clamp(42px, 6.2vw, 78px);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 28px;
  max-width: 820px;
}
.hero-sub {
  font-size: 16px;
  line-height: 2;
  color: #e7e1dc;
  max-width: 660px;
  margin-bottom: 42px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.hero .btn-primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.hero .btn-primary:hover {
  background: #f2e9e0;
  border-color: #f2e9e0;
}
.hero .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}
.hero .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
}
.hero-accent {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  user-select: none;
}
.hero-accent-word {
  display: block;
  width: 280px;
  height: 96px;
  background: url("../img/gladz.png") center / contain no-repeat;
  text-indent: -9999px;
  opacity: 0.1;
  font-size: 0;
}
.business-section {
  background: var(--paper);
}
.labels-section {
  background: #fbfaf8;
  max-width: none;
}
.labels-section > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.business-section,
.labels-section,
.company-cta-section {
  padding: 76px 48px;
  border-bottom: 1px solid var(--line);
}
.business-section,
.labels-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.top-section-head {
  max-width: 760px;
  margin-bottom: 34px;
}
.top-section-head h2,
.labels-header h2,
.creator-copy h2,
.company-cta-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
}
.top-section-head p:not(.section-label),
.creator-copy p,
.company-cta-card p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--text);
  margin-top: 14px;
}
.business-grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.business-panel {
  min-height: 286px;
  padding: 36px 34px;
  border: none;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.2s;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.business-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
}
.business-panel:hover {
  background: #fbfaf8;
}
.business-panel-video::before { background: var(--amber); }
.business-panel-publishing::before { background: var(--rose); }
.panel-kicker {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 18px;
}
.business-panel-video .panel-kicker { color: var(--amber); }
.business-panel h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}
.business-panel p:not(.panel-kicker) {
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
}
.business-panel span {
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.labels-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 34px;
}
.labels-all-link,
.text-link {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--ink);
  padding: 12px 0 12px 18px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 180px;
}
.labels-all-link::after,
.text-link::after {
  content: "→";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 44px;
  margin-left: 0;
  border-left: 1px solid currentColor;
  transition: transform 0.2s;
}
.labels-all-link:hover::after,
.text-link:hover::after {
  transform: translateX(4px);
}
.labels-all-link:hover,
.text-link:hover { color: var(--rose); border-color: var(--rose); }
.label-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.label-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 0;
  padding: 34px 32px 28px;
  text-decoration: none;
  border: none;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.18s;
  min-height: 220px;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.label-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
}
.label-card:hover {
  background: #fff;
}
.lc-logo-wrap {
  height: 74px;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding-left: 4px;
}
.lc-logo {
  max-width: 210px;
  max-height: 68px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.label-card-caffeine::before { background: var(--amber); }
.label-card-oops::before { background: #bf6a28; }
.label-card-nijiro::before { background: var(--rose); }
.label-card-mousou::before { background: var(--violet); }
.lc-inner { flex: 1; }
.lc-category {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  font-weight: 700;
}
.label-card-caffeine .lc-category,
.label-card-oops .lc-category { color: var(--amber); }
.label-card-nijiro .lc-category { color: var(--rose); }
.label-card-mousou .lc-category { color: var(--violet); }
.lc-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
}
.lc-desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 22px;
}
.lc-arrow {
  font-size: 22px;
  display: block;
  margin-top: auto;
  color: var(--ink);
}

.creator-section {
  padding: 76px 48px;
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.creator-copy {
  max-width: 680px;
}
.creator-section .section-label {
  color: #d8d0c8;
}
.creator-copy h2 {
  color: #fff;
}
.creator-copy p {
  color: #e7e1dc;
}
.creator-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}
.creator-section .btn-primary {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.creator-section .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.company-cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  max-width: 1100px;
  margin: 0 auto;
}
.company-cta-card {
  border: none;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 34px 32px;
  background: #fff;
}
.contact-card {
  background: #fbfaf8;
}
.company-cta-card .text-link {
  display: inline-flex;
  margin-top: 24px;
}

@media (max-width: 900px) {
  .business-grid-top,
  .label-grid,
  .company-cta-section {
    grid-template-columns: 1fr;
  }
  .creator-section {
    align-items: flex-start;
    flex-direction: column;
  }
  .creator-actions {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 62px 24px 70px;
    min-height: 520px;
    background: var(--charcoal);
  }
  .hero-puzzle--desktop { display: none; }
  .hero-puzzle--mobile { display: grid; }
  .hero-text-panel {
    padding: 24px 20px 24px 22px;
  }
  .hero-accent { display: none; }
  .business-section,
  .labels-section,
  .creator-section,
  .company-cta-section {
    padding: 52px 24px;
  }
  .labels-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .business-panel,
  .label-card,
  .company-cta-card {
    padding: 30px 26px;
  }
}
