/*
 * wireframe.css — AI Wireframe Kit
 *
 * Bundled per project. Do not edit for client work — this file defines
 * the wireframe system. Client design work belongs in separate CSS.
 *
 * Three-tier architecture:
 *   Tier 1 — wireframe.css (this file): tokens, chrome, primitives
 *   Tier 2 — page <style> block: page-specific layout only
 *   Tier 3 — design-[page]-v1.html: client brand, when design pass begins
 */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600&family=IBM+Plex+Mono:wght@400;500&family=IBM+Plex+Serif:wght@400;500&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');


/* ══════════════════════════════════════════════════════════════════════
   TOKENS
   ══════════════════════════════════════════════════════════════════════ */

:root {
  /* ── Ink ──────────────────────────────────────────────────────── */
  --ink:      #0f1115;   /* Primary text */
  --ink-2:    #2a2e36;   /* Secondary text */
  --ink-3:    #5a616d;   /* Tertiary text */
  --mute:     #8a919e;   /* Placeholders, disabled */

  /* ── Surface ──────────────────────────────────────────────────── */
  --white:    #ffffff;   /* Component backgrounds */
  --paper:    #f6f6f4;   /* Page background */
  --paper-2:  #eeeeea;   /* Tinted surface, hover */

  /* ── Line ─────────────────────────────────────────────────────── */
  --line:     #d7d9de;   /* Standard borders */
  --line-2:   #e7e8ec;   /* Light dividers */

  /* ── Icons ────────────────────────────────────────────────────── */
  --icon:        #5a616d;          /* Icons on light backgrounds */
  --icon-lighter: #a8b0ba;          /* Lighter icons on light backgrounds */
  --icon-light:  #e8e8e8;          /* Icons on dark backgrounds */
  --icon-faint:  rgba(255,255,255,.25); /* Faint icons on dark backgrounds */

  /* ── Canvas (pattern frames) ────────────────────────────────── */
  --canvas-bg:     #ffffff;   /* Background */
  --canvas-border: #d7d9de;   /* Border color */

  /* ── Spacing ───────────────────────────────────────────────────── */
  --space-2xs:  4px;    /* Hairline spacing — micro gaps, fine-tuning */
  --space-xs:   8px;    /* Tight spacing */
  --space-sm:   12px;   /* Small spacing */
  --space-md:   16px;   /* Medium spacing */
  --space-lg:   20px;   /* Large spacing */
  --space-xl:   24px;   /* Extra large */
  --space-2xl:  28px;   /* 2x large */
  --space-3xl:  40px;   /* 3x large (sections) */
  --space-4xl:  56px;   /* 4x large (padding) */
  --space-5xl:  80px;   /* 5x large (padding) */

  /* ── Semantic spacing aliases ──────────────────────────────────────────
     Use these for component-specific spacing so a single change can adjust
     a whole pattern type (e.g. all stacked form fields). */
  --space-form-row: var(--space-xl);   /* Vertical gap between stacked form fields */

  /* ── Accent ───────────────────────────────────────────────────── */
  --accent:   #2a66c8;   /* Primary */
  --accent-2: #2a7a52;   /* Secondary (green) */
  --accent-3: #7952c8;   /* Tertiary */
  --accent-4: #d32f2f;   /* Alert/negative (red) */

  /* ── Type ─────────────────────────────────────────────────────── */
  --sans:   'IBM Plex Sans',  system-ui, sans-serif;
  --mono:   'IBM Plex Mono',  ui-monospace, monospace;
  --serif:  'IBM Plex Serif', Georgia, serif;
}


/* ══════════════════════════════════════════════════════════════════════
   RESET
   ══════════════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box }

html, body {
  margin: 0; padding: 0;
  background: var(--paper); color: var(--ink);
  font-family: var(--sans); font-size: 14px; line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none }


/* ══════════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ══════════════════════════════════════════════════════════════════════ */

/* ── Headings ───────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--sans); font-weight: 600;
  color: var(--ink); line-height: 1.2; margin: 0 0 .5em;
}
h1 { font-size: 40px; line-height: 1.1;  letter-spacing: -.03em }
h2 { font-size: 28px;                    letter-spacing: -.02em }
h3 { font-size: 20px;                    letter-spacing: -.015em }
h4 { font-size: 16px;                    letter-spacing: -.01em }
h5 { font-size: 13px; font-weight: 500 }
h6 {
  font-size: 12px; font-weight: 500;
  font-family: var(--mono); letter-spacing: .14em;
  text-transform: uppercase; color: var(--mute);
}

/* Tighter title spacing — for title+body blocks where the default
   .5em margin reads too loose. Add to the heading element. */
h1.title-tight, h2.title-tight, h3.title-tight,
h4.title-tight, h5.title-tight, h6.title-tight {
  margin-bottom: var(--space-xs);
}

/* ── Body ───────────────────────────────────────────────────────────── */
p { font-size: 15px; line-height: 1.65; color: var(--ink-3); margin: 0 0 1em }
p:last-child { margin-bottom: 0 }

li { margin-bottom: .5em }
li:last-child { margin-bottom: 0 }

/* ── Utilities ──────────────────────────────────────────────────────── */
.lead    { font-size: 18px; line-height: 1.6;  color: var(--ink-3) }
.caption { font-size: 12px; line-height: 1.5;  color: var(--mute)  }

/* ── Blockquote ─────────────────────────────────────────────────────── */
blockquote {
  font-family: var(--serif); font-size: 22px; line-height: 1.45;
  font-style: italic; color: var(--ink-2);
  border-left: 3px solid var(--line); padding-left: 20px; margin: 0;
}

/* ── Inline code ────────────────────────────────────────────────────── */
code {
  font-family: var(--mono); font-size: .875em; color: var(--ink);
  background: var(--paper-2); padding: 2px 5px; border-radius: 2px;
}


/* ══════════════════════════════════════════════════════════════════════
   PAGE CHROME
   ══════════════════════════════════════════════════════════════════════ */

/* Outer wrapper — all wireframe pages use this */
.page {
  max-width: 1760px;
  margin: 0 auto;
  padding: 56px 48px 120px;
}

/* Back link to index */
.back {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 24px;
}
.back:hover { color: var(--ink) }

/* ── Doc head ───────────────────────────────────────────────────────── */
.doc-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
  margin-bottom: 36px;
}
.badges {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 10px;
}
.badge {
  display: inline-flex; align-items: center;
  padding: 5px 14px; border-radius: 2px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 500;
  background: transparent; color: var(--ink); border: 1.5px solid var(--ink);
}
.badge.in-progress      { background: var(--accent-3); color: #fff; border-color: var(--accent-3) }
.badge.pending-approval { background: var(--accent);   color: #fff; border-color: var(--accent) }
.badge.not-started      { background: var(--mute);     color: #fff; border-color: var(--mute) }
.badge.approved         { background: var(--accent-2); color: #fff; border-color: var(--accent-2) }
.badge.removed          { background: #c23b3b;         color: #fff; border-color: #c23b3b }

.doc-head h1 {
  font-family: var(--sans); font-weight: 500; font-size: 30px;
  letter-spacing: -.01em; margin: 6px 0;
}
.doc-head .meta {
  display: flex; gap: 28px; flex-wrap: wrap; margin-top: 16px;
  font-family: var(--sans); font-size: 11px; letter-spacing: .1em;
  color: var(--ink-3); text-transform: uppercase;
}
.doc-head .meta b { color: var(--ink); font-weight: 500 }

/* ── Section label / labelled rule ─────────────────────────────────── */
.lbl {
  font-family: var(--sans); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); margin: 0 0 10px;
  display: flex; align-items: center; gap: 10px;
}
.lbl .rule { flex: 1; height: 1px; background: var(--line) }

.section-label {
  font-family: var(--sans); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); margin: 0 0 20px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::after { content: ""; flex: 1; height: 1px; background: var(--line) }


/* ══════════════════════════════════════════════════════════════════════
   NAV
   Standard two-row page nav. Override content and spacing per project.
   ══════════════════════════════════════════════════════════════════════ */

/* Top utility bar */
.eyebrow {
  display: flex; align-items: center; justify-content: flex-end;
  height: 45px; padding: 0 28px;
  border-bottom: 1px solid var(--line);
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2);
}
.eyebrow .links { display: flex; gap: var(--space-2xl) }

/* Primary nav bar */
.mainnav {
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; padding: 0 28px;
  border-bottom: 1px solid var(--line);
}
.mainnav .links { display: flex; gap: var(--space-3xl); font-size: 13px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); margin-left: auto }

/* CTA button sits to the right of the links with consistent spacing.
   Pages can still override inline if they need a tighter rhythm. */
.mainnav > .btn { margin-left: var(--space-3xl) }


/* ══════════════════════════════════════════════════════════════════════
   FOOTER
   Standard dark footer stubs. Used at the bottom of every wireframe page.
   ══════════════════════════════════════════════════════════════════════ */

.footer-stub {
  background: var(--ink); color: var(--mute);
  height: 240px; padding: 18px 40px;
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center;
}
.mobile-footer-stub {
  background: var(--ink); color: var(--mute);
  padding: 32px 12px;
  font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  text-align: center;
}


/* ══════════════════════════════════════════════════════════════════════
   REVIEW LAYOUT
   Desktop wireframe on the left, mobile preview on the right.
   ══════════════════════════════════════════════════════════════════════ */

.review-layout {
  display: grid;
  grid-template-columns: minmax(980px, 1fr) 320px;
  gap: 24px;
  align-items: start;
}
@media (max-width: 1440px) {
  .review-layout { grid-template-columns: 1fr }
  .side { max-width: 320px }
}

/* The wireframe frame */
.wf { background: var(--white); border: 1px solid var(--line) }

/* Right column (mobile preview + notes) */
.side { display: flex; flex-direction: column; gap: 0 }


/* ══════════════════════════════════════════════════════════════════════
   PLACEHOLDER BLOCKS
   Used wherever real content will go — images, video, maps, etc.
   ══════════════════════════════════════════════════════════════════════ */

.ph {
  background-color: #eef0f3;
  background-image: linear-gradient(
    135deg,
    rgba(15,17,21,.06) 25%, transparent 25%,
    transparent 50%, rgba(15,17,21,.06) 50%,
    rgba(15,17,21,.06) 75%, transparent 75%, transparent
  );
  background-size: 10px 10px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3); font-family: var(--mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
}

/* Reset placeholder typography for content children (headings, paragraphs).
   .ph itself stays uppercase for direct placeholder labels (e.g. "VIDEO", "MAP"). */
.ph h1, .ph h2, .ph h3, .ph h4, .ph h5, .ph h6, .ph p {
  text-transform: none; letter-spacing: normal; font-family: var(--sans);
}

/* Dark variant — generic dark section placeholder */
.ph.dark {
  background-color: #1d2027; color: #b9bfcb; border-color: #262a33;
  background-image: linear-gradient(
    135deg,
    rgba(255,255,255,.05) 25%, transparent 25%,
    transparent 50%, rgba(255,255,255,.05) 50%,
    rgba(255,255,255,.05) 75%, transparent 75%, transparent
  );
}

/* Video variant — dark, play icon */
.ph.video {
  background-color: #1d2027; border-color: #262a33;
  background-image: linear-gradient(
    135deg,
    rgba(255,255,255,.05) 25%, transparent 25%,
    transparent 50%, rgba(255,255,255,.05) 50%,
    rgba(255,255,255,.05) 75%, transparent 75%, transparent
  );
  background-size: 10px 10px;
}
.ph.video i { font-size: 72px; color: rgba(255,255,255,.4) }

/* Stripe background — diagonal pattern without icon or border. Use on people/portrait tiles. */
.bg-stripe {
  background-color: #eef0f3;
  background-image: linear-gradient(
    135deg,
    rgba(15,17,21,.06) 25%, transparent 25%,
    transparent 50%, rgba(15,17,21,.06) 50%,
    rgba(15,17,21,.06) 75%, transparent 75%, transparent
  );
  background-size: 10px 10px;
}

/* Person / user variant */
.ph.person {
  background-color: #eef0f3;
  background-image: linear-gradient(
    135deg,
    rgba(15,17,21,.06) 25%, transparent 25%,
    transparent 50%, rgba(15,17,21,.06) 50%,
    rgba(15,17,21,.06) 75%, transparent 75%, transparent
  );
  background-size: 10px 10px;
  border-color: var(--line);
}
/* Icon defaults — all Font Awesome icons use tertiary ink by default */
i { color: var(--ink-3) }

.ph.person i { font-size: 72px; }

/* Image icon */
.ph i { font-size: 72px; }

/* ══════════════════════════════════════════════════════════════════════
   DEVICE FRAMES — illustration primitives
   Visual containers for "screenshot" or "responsive view" mockups.
   Distinct from .phone (mobile preview panel for example-page side columns).
   Size with inline width / aspect-ratio at the call site.
   ══════════════════════════════════════════════════════════════════════ */
.device-browser {
  border: 3px solid var(--ink);
  border-radius: 6px;
  overflow: hidden;
  background: var(--white);
}
.device-browser::before {
  content: "";
  display: block;
  height: 32px;
  background-color: var(--ink);
  background-image:
    radial-gradient(circle at 16px center, #ff5f57 5px, transparent 5.5px),
    radial-gradient(circle at 36px center, #febc2e 5px, transparent 5.5px),
    radial-gradient(circle at 56px center, #28c840 5px, transparent 5.5px);
}
.device-browser .body { padding: var(--space-md) }

.device-phone {
  border: 3px solid var(--ink);
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
}
.device-phone .body { padding: var(--space-md) }

/* ── Publisher logo mark pattern ────────────────────────────────────── */
/* A small CSS icon + two-word name. Swap the ::before shape per publication. */
.pub-logo { display: inline-flex; align-items: center; gap: 8px; line-height: 1 }
.pub-logo::before {
  content: "";
  width: 16px; height: 16px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 2px; display: inline-block; flex-shrink: 0;
}
.pub-logo .w1 { font-weight: 600 }
.pub-logo .w2 { opacity: .9 }

/* Shape variants — mix and match */
.pub-logo.round::before   { border-radius: 50% }
.pub-logo.diamond::before { transform: rotate(45deg) }
.pub-logo.left::before    { border-left-width: 3px }
.pub-logo.top::before     { border-top-width: 3px }
.pub-logo.right::before   { border-right-width: 3px }
.pub-logo.bottom::before  { border-bottom-width: 3px }
.pub-logo.pill::before    { border-radius: 999px }
.pub-logo.tri::before     { clip-path: polygon(50% 0, 100% 100%, 0 100%) }
.pub-logo.notch::before   { border-radius: 50% 50% 0 50% }


/* ══════════════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════════════ */

/* Base — primary filled (most prominent CTA) */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 16px; border: 1px solid var(--ink); border-radius: 2px;
  font-family: var(--sans); font-size: 12px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--ink); color: var(--white);
  cursor: pointer;
  transition: background-color .12s ease, border-color .12s ease, color .12s ease;
}
.btn.outline { background: var(--white); color: var(--ink) }
.btn.accent  { background: var(--accent); color: var(--white); border-color: var(--accent) }
.btn.ghost   { background: var(--white); border-color: var(--line); color: var(--ink-3) }
.btn.link    { background: none; border-color: transparent; color: var(--accent); padding-left: 0; padding-right: 0; letter-spacing: 0; text-transform: none; font-size: 13px }
.btn.link::after { content: " →" }
.btn.sm      { padding: 5px 10px; font-size: 11px }


/* ══════════════════════════════════════════════════════════════════════
   INTERACTIVE STATES
   Minimal hover / focus / active / disabled treatment so wireframes have
   real HTML behaviour, not just static demos. Buttons and links only —
   form fields keep their existing :focus rule below.
   ══════════════════════════════════════════════════════════════════════ */

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn:hover                 { background: var(--ink-2); border-color: var(--ink-2) }
.btn.outline:hover         { background: var(--paper-2) }
.btn.accent:hover          { background: #1f4f9d; border-color: #1f4f9d }
.btn.ghost:hover           { background: var(--paper); color: var(--ink) }
.btn.link:hover            { text-decoration: underline }

.btn:focus-visible         { outline: 2px solid var(--accent); outline-offset: 2px }

.btn:active                { transform: translateY(1px) }

.btn[aria-disabled="true"] { opacity: .45; cursor: not-allowed }

/* ── Links ───────────────────────────────────────────────────────────── */
a                          { transition: color .12s ease }
a:focus-visible            { outline: 2px solid var(--accent); outline-offset: 2px }


/* ══════════════════════════════════════════════════════════════════════
   FORM ELEMENTS
   ══════════════════════════════════════════════════════════════════════ */

label {
  display: block; font-size: 13px; font-weight: 500; color: var(--ink);
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  margin-bottom: var(--space-form-row);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Select gets a custom caret so it matches the input field styling
   instead of inheriting the OS dropdown chrome. */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 32px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6' fill='none'><path d='M1 1L5 5L9 1' stroke='%235a616d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(42, 102, 200, 0.1);
}

/* ── Checkbox and radio ──────────────────────────────────────────────── */
input[type="checkbox"],
input[type="radio"] {
  margin: 0;
  width: 14px; height: 14px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}

/* ── Inline check/radio + label row ────────────────────────────────────
   Use <label class="check-row"> wrapping an <input type="checkbox|radio">
   and a <span> label. Standard tight spacing across all forms/patterns. */
.check-row {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: 400;
}

/* ── Toggle ──────────────────────────────────────────────────────────────
   Pill switch primitive. Use <span class="toggle"></span> for off,
   <span class="toggle on"></span> for on. */
.toggle {
  display: inline-block;
  width: 32px; height: 18px;
  background: var(--mute); border-radius: 999px;
  position: relative; vertical-align: middle;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.toggle::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  background: var(--white);
  border-radius: 50%;
  transition: left 0.15s ease, right 0.15s ease;
}
.toggle.on { background: var(--accent) }
.toggle.on::after { left: auto; right: 2px }

/* ══════════════════════════════════════════════════════════════════════
   PATTERN COMPONENTS
   Semantic building blocks for wireframe patterns.
   ══════════════════════════════════════════════════════════════════════ */

/* ── Icon variants ────────────────────────────────────────────────────── */
.icon-lighter {
  color: var(--icon-lighter);
}

.icon-faint {
  color: var(--icon-faint);
}

/* ── Tables ───────────────────────────────────────────────────────────── */
.table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border: 1px solid var(--line);
  font-size: 13px;
}
.table thead tr  { background: var(--ink); color: var(--white) }
.table th        {
  text-align: left; padding: var(--space-md) var(--space-lg);
  font-weight: 600; font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase;
}
.table tbody tr  { border-top: 1px solid var(--line) }
.table td        { padding: var(--space-md) var(--space-lg); color: var(--ink) }
.table th.actions,
.table td.actions { text-align: right }
.table td.actions i { font-size: 12px; margin-left: var(--space-md); color: var(--icon-lighter) }


/* ── Card containers ──────────────────────────────────────────────────── */
.bio-card,
.test-card,
.stat-tile,
.pricing-card,
.product-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.bio-card {
  text-align: center;
}

.test-card {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
}

.stat-tile {
  padding: var(--space-2xl) var(--space-xl);
}

.stat-tile.sm {
  padding: var(--space-md) var(--space-sm);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--space-sm); text-align: center;
}
.stat-tile.sm .stat-label,
.stat-tile.sm .stat-number,
.stat-tile.sm .stat-trend { margin: 0 }

.pricing-card {
  padding: var(--space-3xl);
}

.product-card {
  overflow: hidden;
}

/* ── Tags ─────────────────────────────────────────────────────────────── */
.tag-cloud {
  display: flex; flex-wrap: wrap; gap: var(--space-sm);
}
.tag {
  display: inline-flex; align-items: center;
  padding: var(--space-2xs) var(--space-sm);
  background: var(--ink); color: var(--white);
  border-radius: 999px;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: .02em; line-height: 1.4;
}
.tag.outline { background: var(--white); color: var(--ink); border: 1px solid var(--line) }

/* ── Stats ────────────────────────────────────────────────────────────── */
.stat-number {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-number.sm { font-size: 22px }

.stat-trend {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-size: 11px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── Pricing ──────────────────────────────────────────────────────────── */
.price-amount {
  font-size: 40px;
  font-weight: 600;
  letter-spacing: -.03em;
  margin: var(--space-lg) 0 4px;
  color: var(--ink);
}

.price-period {
  font-size: 11px;
  color: var(--ink-3);
  margin-bottom: var(--space-2xl);
}

.pricing-feat {
  display: flex;
  gap: var(--space-sm);
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
  margin-bottom: var(--space-sm);
}

.pricing-feat::before {
  content: "✓";
  font-weight: 600;
  color: var(--accent);
  flex-shrink: 0;
}

.pricing-feat.green::before {
  color: var(--accent-2);
}

/* ── People / Bio ────────────────────────────────────────────────────── */
.bio-card h3 {
  margin: 0 0 var(--space-xs);
}

.bio-card p {
  margin: 0;
  color: var(--ink-3);
}

.role {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: var(--space-sm);
}

.attr-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.attr-role {
  font-size: 11px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.test-card .attribution {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: auto;
}

/* ── Testimonials ────────────────────────────────────────────────────── */
.test-card .quote-mark {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--ink);
  margin-bottom: var(--space-sm);
  line-height: 1;
}

.test-card blockquote {
  margin: 0 0 var(--space-lg);
  font-size: 15px;
  line-height: 1.55;
  font-style: italic;
  font-weight: 500;
  color: var(--ink-2);
  border: none;
  padding: 0;
}

/* ── Video ────────────────────────────────────────────────────────────── */
.video-wrap {
  position: relative;
}

.video-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-icon i {
  font-size: 56px;
  color: var(--icon-light);
}

.video-controls {
  height: 48px;
  background: var(--ink-2);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0 var(--space-lg);
}

.video-progress {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, .2);
  border-radius: 2px;
  position: relative;
}

.video-progress-fill {
  width: 30%;
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

/* ── Product cards ────────────────────────────────────────────────────── */
.product-card-body {
  padding: var(--space-lg);
}

.product-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-xs);
  margin-bottom: var(--space-xs);
}

.product-card-meta h3 {
  margin: 0;
}

.product-card-meta .price {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}

.product-card p {
  margin: 0 0 var(--space-sm);
  color: var(--ink-3);
}

.star-row {
  display: flex;
  align-items: center;
  gap: 3px;
}


/* ══════════════════════════════════════════════════════════════════════
   LOGO MARK
   Generic concentric-circle mark. Replace with client wordmark in design/.
   ══════════════════════════════════════════════════════════════════════ */

.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 500; letter-spacing: .01em; color: var(--ink) }
.logo .mark { width: 24px; height: 24px; border: 2px solid currentColor; border-radius: 50%; flex: 0 0 24px }


/* ══════════════════════════════════════════════════════════════════════
   MOBILE PREVIEW PANEL
   320px-wide phone shell used in the .side column.
   ══════════════════════════════════════════════════════════════════════ */

.phone { border: 1px solid var(--line); background: var(--white) }
.phone .status { height: 24px; background: var(--ink); position: relative }
.phone .status::after {
  content: ""; position: absolute;
  left: 50%; top: 8px; transform: translateX(-50%);
  width: 60px; height: 6px; background: #2a2e36; border-radius: 3px;
}
.phone .chrome {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-bottom: 1px solid var(--line-2);
}
.phone .burger { width: 22px; height: 14px; display: flex; flex-direction: column; justify-content: space-between }
.phone .burger i { display: block; height: 1.5px; background: var(--ink) }
.phone .body { padding: 14px 14px 18px }
.phone h6 { margin: 0 0 8px; font-family: var(--mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--mute); font-weight: 500 }


