/* ==========================================================================
   wireframe.css — shared styles for all inner pages
   Inherits the full design system. Only inner-page specifics here.
   ========================================================================== */

.page-hero {
  padding-top:    calc(var(--nav-height) + var(--space-16));
  padding-bottom: var(--space-16);
  border-bottom:  var(--border-subtle);
  background:     radial-gradient(ellipse 60% 50% at 50% 0%, #00d4aa0e 0%, transparent 70%);
}

.page-hero__label  { margin-bottom: var(--space-3); }
.page-hero__title  { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: var(--fw-semibold); letter-spacing: var(--ls-tightest); line-height: var(--lh-tight); margin-bottom: var(--space-4); }
.page-hero__sub    { font-size: var(--text-lg); color: var(--color-text-secondary); max-width: 52ch; line-height: var(--lh-relaxed); }

/* Wireframe placeholder blocks */
.wf-block {
  background-color: var(--color-surface);
  border:           var(--border-default);
  border-radius:    var(--radius-xl);
  display:          flex;
  align-items:      center;
  justify-content:  center;
  color:            var(--color-text-tertiary);
  font-size:        var(--text-sm);
  font-family:      var(--font-mono);
  letter-spacing:   var(--ls-wide);
  text-transform:   uppercase;
}

.wf-block--sm   { height: 120px; }
.wf-block--md   { height: 220px; }
.wf-block--lg   { height: 340px; }
.wf-block--xl   { height: 480px; }
.wf-block--full { min-height: 560px; }

/* Sidebar layout */
.page-layout {
  display:               grid;
  grid-template-columns: 1fr;
  gap:                   var(--space-12);
  padding-block:         var(--space-16);
}
@media (min-width: 1024px) {
  .page-layout {
    grid-template-columns: 220px 1fr;
    gap:                   var(--space-16);
  }
}

/* Sidebar nav */
.sidebar {
  display:        flex;
  flex-direction: column;
  gap:            var(--space-6);
}
.sidebar__group-label {
  font-size:      var(--text-xs);
  font-weight:    var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color:          var(--color-text-tertiary);
  padding-bottom: var(--space-2);
  border-bottom:  var(--border-subtle);
}
.sidebar__nav   { display: flex; flex-direction: column; gap: var(--space-1); }
.sidebar__link  {
  display:        block;
  padding:        var(--space-2) var(--space-3);
  border-radius:  var(--radius-md);
  font-size:      var(--text-sm);
  color:          var(--color-text-secondary);
  transition:     var(--transition-color);
}
.sidebar__link:hover   { color: var(--color-text-primary); background: var(--color-surface); }
.sidebar__link.is-active { color: var(--color-accent); background: var(--color-accent-dim); }

/* Content area */
.page-content { display: flex; flex-direction: column; gap: var(--space-10); }

/* Wf section */
.wf-section { display: flex; flex-direction: column; gap: var(--space-6); }
.wf-section__title {
  font-size:      var(--text-xl);
  font-weight:    var(--fw-semibold);
  letter-spacing: var(--ls-tight);
  padding-bottom: var(--space-4);
  border-bottom:  var(--border-default);
}
.wf-row { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
@media (min-width: 640px) {
  .wf-row--2 { grid-template-columns: repeat(2, 1fr); }
  .wf-row--3 { grid-template-columns: repeat(3, 1fr); }
}

/* Centered page (legal, about, contact) */
.page-centered {
  max-width:   720px;
  margin-inline: auto;
  padding-block: var(--space-16);
  display:       flex;
  flex-direction: column;
  gap:           var(--space-10);
}
.wf-text-block { display: flex; flex-direction: column; gap: var(--space-4); }
.wf-text-block__heading { font-size: var(--text-lg); font-weight: var(--fw-semibold); letter-spacing: var(--ls-tight); }
.wf-line { height: 14px; background: var(--color-surface); border-radius: var(--radius-sm); }
.wf-line--full  { width: 100%; }
.wf-line--80    { width: 80%; }
.wf-line--60    { width: 60%; }
.wf-line--40    { width: 40%; }
