/* /ai-ready page styles. brand.css and convo.css must load first. */

  /* ── Hero ── */
  .aiready-hero {
    padding: clamp(56px, 7vw, 96px) 0 clamp(48px, 6vw, 80px);
  }
  .aiready-hero .eyebrow { margin-bottom: clamp(24px, 3vw, 36px); }
  .aiready-hero .h1 { max-width: 16ch; margin-bottom: clamp(24px, 3vw, 36px); }
  .aiready-hero .lede { color: var(--mute-dark); max-width: 72ch; }

  /* ── Three move cards ── */
  .aiready-moves {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(14px, 2vw, 20px);
    margin-top: clamp(32px, 4vw, 48px);
  }
  @media (min-width: 720px) { .aiready-moves { grid-template-columns: repeat(3, 1fr); } }
  .aiready-move {
    display: block;
    padding: 20px 22px 22px;
    border: 1px solid var(--hairline-dark);
    border-radius: 14px;
    background: var(--ink-soft);
    text-decoration: none;
    color: inherit;
    transition: transform 0.12s ease, border-color 0.12s ease;
  }
  .aiready-move:hover { transform: translateY(-2px); border-color: rgba(242, 237, 226, 0.4); }
  .aiready-move-num {
    display: block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--signal);
    margin-bottom: 12px;
  }
  .aiready-move-title {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 8px;
  }
  .aiready-move-copy {
    display: block;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--mute-dark);
  }
  .aiready-move::after {
    content: "→";
    display: block;
    margin-top: 14px;
    font-family: var(--mono);
    color: var(--signal);
  }

  /* ── Board question callout ── */
  .board-q {
    margin: clamp(18px, 2.5vw, 26px) 0;
    padding: 16px 20px;
    border-left: 3px solid var(--signal);
    background: rgba(229, 39, 60, 0.06);
    border-radius: 0 12px 12px 0;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(15px, 1.7vw, 18px);
    line-height: 1.5;
    max-width: 56ch;
  }
  .board-q-label {
    display: block;
    font-family: var(--mono);
    font-weight: 400;
    font-size: 9.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--signal);
    margin-bottom: 8px;
  }

  /* ── Fix-section grid ── */
  .aiready-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(36px, 4vw, 56px);
    align-items: center;
  }
  @media (min-width: 940px) {
    .aiready-grid { grid-template-columns: 1.15fr 1fr; gap: clamp(56px, 6vw, 96px); }
    .aiready-grid-flip { grid-template-columns: 1fr 1.15fr; }
    .aiready-grid-flip > figure,
    .aiready-grid-flip > .aiready-mock { order: -1; }
  }

  /* ── Shared mockup caption ── */
  .mock-caption {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(242, 237, 226, 0.5);
    margin: 12px 0 0;
    text-align: center;
  }
  .light .mock-caption { color: var(--mute-light); }
  .aiready-mock { margin: 0; }
  .aiready-mock .xchat { margin: 0 auto; }

  /* ── ChatGPT mockup (move one) ── */
  .gptmock { margin: 0; }
  .gptmock-panel {
    background: #fff;
    color: #0d0d0d;
    border: 1px solid rgba(12, 34, 64, 0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px -28px rgba(12, 34, 64, 0.35);
  }
  .gptmock-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  }
  .gptmock-title { font-weight: 600; font-size: 14px; }
  .gptmock-app-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px 11px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 600;
    color: #444;
    background: #f7f7f8;
  }
  .gptmock-app-dot { width: 7px; height: 7px; border-radius: 2px; background: var(--signal); }
  .gptmock-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 13px;
    line-height: 1.6;
  }
  .gptmock-user {
    align-self: flex-end;
    max-width: 80%;
    background: #f4f4f4;
    border-radius: 18px 18px 4px 18px;
    padding: 9px 14px;
  }
  .gptmock-assistant { display: flex; flex-direction: column; gap: 10px; }
  .gptmock-assistant p { margin: 0; }
  .gptmock-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 14px;
    padding: 14px 16px;
  }
  .gptmock-card-head {
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8a8a8a;
    margin-bottom: 8px;
  }
  .gptmock-card-premium {
    font-family: var(--display);
    font-weight: 800;
    font-size: 30px;
    line-height: 1;
    color: var(--ink);
  }
  .gptmock-card-premium span { font-size: 14px; font-weight: 600; color: #8a8a8a; }
  .gptmock-card-meta { margin-top: 6px; font-size: 12px; color: #666; }
  .gptmock-card-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
  .gptmock-btn {
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--signal);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
  }
  .gptmock-btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(12, 34, 64, 0.25);
    font-weight: 600;
  }
  .gptmock-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0 18px 18px;
    padding: 10px 8px 10px 16px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    font-size: 13px;
    color: #9a9a9a;
  }
  .gptmock-send {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0d0d0d;
    color: #fff;
    display: grid;
    place-content: center;
    font-size: 14px;
  }

  /* ── WebMCP split-browser mockup (move two) ── */
  .webmcpmock { margin: 0; }
  .webmcpmock-window {
    background: #fff;
    border: 1px solid rgba(242, 237, 226, 0.2);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.6);
  }
  .webmcpmock-chrome {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: #ececee;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .webmcpmock-dot { width: 10px; height: 10px; border-radius: 50%; background: #c9c9cd; }
  .webmcpmock-url {
    margin-left: 10px;
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 4px 12px;
    font-family: var(--mono);
    font-size: 11px;
    color: #555;
  }
  .webmcpmock-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .webmcpmock-human { padding: 18px; }
  .webmcpmock-agent {
    padding: 18px;
    background: var(--ink);
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .webmcpmock-side-label {
    font-family: var(--mono);
    font-size: 8.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #8a8a8a;
    margin-bottom: 12px;
  }
  .webmcpmock-agent .webmcpmock-side-label { color: rgba(242, 237, 226, 0.55); margin-bottom: 4px; }
  .webmcpmock-field {
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    padding: 8px 12px;
    margin-bottom: 10px;
  }
  .webmcpmock-field-label {
    display: block;
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8a8a8a;
  }
  .webmcpmock-field-value { display: block; font-size: 13px; font-weight: 600; color: #222; }
  .webmcpmock-cta {
    background: var(--signal);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 9px 0;
    font-size: 12.5px;
    font-weight: 700;
  }
  .webmcpmock-tool {
    font-family: var(--mono);
    font-size: 11px;
    line-height: 1.5;
    color: var(--bone);
    background: rgba(242, 237, 226, 0.08);
    border: 1px solid rgba(242, 237, 226, 0.14);
    border-radius: 8px;
    padding: 6px 10px;
  }
  .webmcpmock-result {
    margin-top: auto;
    padding-top: 8px;
    font-family: var(--mono);
    font-size: 11px;
    color: #42E07F;
  }
  @media (max-width: 560px) {
    .webmcpmock-split { grid-template-columns: 1fr; }
    .webmcpmock-result { margin-top: 4px; }
  }

  /* ── Section copy ── */
  .aiready-section { padding: clamp(48px, 6vw, 88px) 0; }
  .aiready-copy {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.75;
    max-width: 62ch;
  }
  .aiready-copy + .aiready-copy { margin-top: 16px; }
  .light .aiready-copy { color: rgba(12, 34, 64, 0.82); }
  .aiready-section .h2 { margin-bottom: clamp(16px, 2vw, 24px); }

  /* ── Fix number ── */
  .aiready-step-num {
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--signal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }
  .aiready-step-num::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 2px;
    background: var(--signal);
  }

  /* ── Product card ── */
  .with-sc {
    margin-top: clamp(20px, 3vw, 28px);
    padding: 20px 22px;
    border: 1px solid var(--hairline-light);
    border-radius: 14px;
    background: var(--bone-soft);
    max-width: 62ch;
  }
  section:not(.light) .with-sc {
    border-color: var(--hairline-dark);
    background: var(--ink-soft);
  }
  .with-sc-label {
    font-family: var(--mono);
    font-size: 9.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--signal);
    margin-bottom: 10px;
  }
  .with-sc-copy { font-size: 14.5px; line-height: 1.7; }
  .light .with-sc-copy { color: rgba(12, 34, 64, 0.82); }
  section:not(.light) .with-sc-copy { color: var(--mute-dark); }
  .with-sc-copy a { color: inherit; font-weight: 600; }

  /* Anchored fixes land below the sticky-free top edge with air. */
  .aiready-section[id] { scroll-margin-top: 24px; }
