// home-content.jsx — copy + data for the institutional homepage (ETS/PMI register).
const HOME = {
  brand: { name: "Atlas", sub: "AI Academy", full: "Atlas AI Academy" },

  // Top navigation: 3 dropdown main items + right-side (Sign up + region).
  nav: [
    {
      label: "For Individuals", id: "individuals", href: "certifications.html",
      intro: {
        title: "For Individuals",
        desc: "Sit a proctored, examination-only assessment and earn a verifiable AGI competence credential.",
        cta: { label: "Get certified", href: "https://app.atlas-ai.academy/register" },
      },
      columns: [
        {
          title: "Certification",
          links: [
            ["Why get certified", "certifications.html"],
            ["Test content & structure", "exam.html"],
            ["How scoring works", "scoring.html"],
            ["FAQ", "faq.html"],
          ],
        },
      ],
    },
    {
      label: "For Organizations", id: "organizations", href: "employers.html",
      intro: {
        title: "For Organizations",
        desc: "Certify and verify your team against one published standard.",
        cta: { label: "Talk to sales", href: "contact-sales.html" },
      },
      columns: [
        {
          title: "Organizations",
          links: [
            ["Why certify your team", "employers.html"],
            ["Pricing — Team & Enterprise", "org-pricing.html"],
            ["Manage & verify at scale", "manage.html"],
            ["Who recognizes Atlas", "recognition.html"],
            ["Atlas for your sector", "sectors.html"],
          ],
        },
      ],
    },
    {
      label: "Support", id: "support", href: "support.html",
      intro: {
        title: "Support",
        desc: "Help for candidates and organizations — booking, credentials, and technical issues.",
        cta: { label: "Contact us", href: "support.html" },
      },
      columns: [
        {
          title: "For candidates",
          links: [
            ["Registration & booking help", "support.html"],
            ["Redeem your code", "support.html"],
            ["Payment & refunds", "support.html"],
            ["Access your credential", "verify.html"],
            ["Technical issues", "support.html"],
          ],
        },
        {
          title: "For organizations",
          links: [
            ["Manage your code & seats", "manage.html"],
            ["Invite team members / share your code", "manage.html"],
            ["View team results", "manage.html"],
            ["Billing & invoices", "support.html"],
            ["Talk to your account manager", "contact-sales.html"],
          ],
        },
      ],
    },
  ],

  // Language / region switcher. Only US is live; the rest are "coming soon".
  regions: {
    current: "US",
    note: "More regions coming soon",
    items: [
      { label: "United States (US)", code: "US", live: true },
      { label: "Brazil (BR)", code: "BR", live: false },
      { label: "Canada (CA)", code: "CA", live: false },
      { label: "中文 (CN)", code: "CN", live: false },
      { label: "Deutschland (DE)", code: "DE", live: false },
      { label: "Europe (EU)", code: "EU", live: false },
      { label: "France (FR)", code: "FR", live: false },
      { label: "India (IN)", code: "IN", live: false },
      { label: "日本語 (JP)", code: "JP", live: false },
      { label: "한국어 (KR)", code: "KR", live: false },
      { label: "Mexico (MX)", code: "MX", live: false },
      { label: "Portugal (PT)", code: "PT", live: false },
      { label: "España (ES)", code: "ES", live: false },
    ],
  },

  // 2 — Hero
  hero: {
    eyebrow: "AGI Competence Certification",
    headline: "Prove you can work with general intelligence.",
    sub: "An independent, examination-only credential. An adaptive exam across six AI competency dimensions — graded against a published standard.",
  },

  // 6 — Real exam mechanics, surfaced as a one-line strip under the hero.
  mechanics: [
    { k: "Adaptive", v: "Questions adapt to your performance level in real time." },
    { k: "~15–30 minutes", v: "A focused, time-bounded assessment." },
    { k: "Real-world scenarios", v: "Drawn from genuine AI-augmented work." },
  ],

  // The credential card (hero subject + flip face)
  credential: {
    issuer: "Atlas",
    name: "AGI Practitioner",
    level: "Level 2",
    holder: "J. A. Reyes",
    issued: "June 2026",
    valid: "June 2028",
    id: "ATL-2F9K-4827-LX",
  },

  // 2.5 — Institutional verification strip
  // ⚠️ PENDING LEGAL. Neutral placeholders only. Do NOT insert any real
  // institution name, logo, wordmark, or colors until the partnership
  // agreement defines the relationship and legal approves the exact string.
  // `verb` must match what the agreement actually grants:
  //   "Credentials verified by …" (ongoing verification process)
  //   "Recognized by …"           (endorses / accepts the standard)
  //   "Standard developed with …" (co-developed the standard/exam)
  //   "Accredited by …"           (accreditation)
  // Flip `enabled` to false to remove the strip entirely.
  trustStrip: {
    enabled: false,
    verb: "Verified by",
    institution: "[ Partner institution ]",
    sub: "Independently verified against a published standard.",
    link: { label: "How verification works", href: "recognition.html" },
    pending: true, // shows a subtle internal-only "pending" affordance
  },

  // 3 — Who it's for, aligned to the three real certification levels.
  // ⚠️ Level names are provisional (the exam system's three tracks are
  // General / Industry / Practice — final naming pending confirmation).
  levels: {
    note: "Level names are provisional, pending confirmation.",
    items: [
      {
        key: "level1",
        label: "Level 1",
        title: "Foundational",
        bestFor: "Anyone working alongside AI day to day.",
        difficulty: 1,
        focus: "Prompting & iteration, tool fluency, and a working sense of where models carry risk.",
        cta: "Get certified",
        href: "exam.html",
      },
      {
        key: "level2",
        label: "Level 2",
        title: "Practitioner",
        bestFor: "Professionals who use AI in their core work.",
        difficulty: 2,
        focus: "Workflow & task design at the core, backed by sharp output evaluation.",
        cta: "Get certified",
        href: "exam.html",
      },
      {
        key: "level3",
        label: "Level 3",
        title: "Advanced",
        bestFor: "Those accountable for AI outcomes across a team.",
        difficulty: 3,
        focus: "Responsible AI & risk under real stakes, backed by context & judgment.",
        cta: "Get certified",
        href: "exam.html",
      },
    ],
  },

  // 3b — The six AI competency dimensions (D1–D6). These are the constant of
  // the whole exam and are DEFINED ONCE on The Standard page; every other
  // surface only REFERENCES them. Order is fixed D1→D6 site-wide.
  dimensions: {
    items: [
      { n: "D1", name: "Prompting & iteration", tag: "Directing & refining models" },
      { n: "D2", name: "Output evaluation", tag: "Assessing AI quality" },
      { n: "D3", name: "Tool fluency & agility", tag: "Choosing & switching tools" },
      { n: "D4", name: "Workflow & task design", tag: "AI in real processes" },
      { n: "D5", name: "Context & judgment", tag: "Knowing when to trust AI" },
      { n: "D6", name: "Responsible AI & risk", tag: "Ethics, risk & accountability" },
    ],
  },

  // 4 — Answerable sample question (verbatim from the exam bank)
  sample: {
    level: "Level 2 · Practitioner",
    domain: "Output Evaluation",
    prompt: "A colleague asks a model to summarize a 40-page vendor contract and pastes the summary straight into a client email. The summary omitted an indemnification clause. What is the most defensible next step before sending?",
    options: [
      { key: "A", text: "Send it — the model is highly capable and rarely wrong.", correct: false, why: "Capability isn't accountability. A plausible summary can omit exactly the clause that carries the most risk." },
      { key: "B", text: "Re-run the prompt twice and send whichever summary is longer.", correct: false, why: "Length is not a proxy for correctness, and re-running doesn't verify the omitted clause was caught." },
      { key: "C", text: "Verify the summary against the source for the clauses that carry legal or financial risk, then send.", correct: true, why: "High-stakes, hard-to-reverse claims must be checked against the source. This is the defensible step." },
      { key: "D", text: "Add a note that AI wrote the summary, then send it as-is.", correct: false, why: "A disclaimer doesn't transfer accountability for an error to the reader. The omission is still yours." },
    ],
    payoff: "This is what we test — applied judgment, not memorized prompts.",
    disclaimer: "Sample only — not scored. The real exam is proctored.",
  },

  // 5 — Result profile, shown as a sample hexagon radar (replaces the old
  // single 0–100 Atlas Scale slider). The real exam is adaptive and returns a
  // profile across the six dimensions on one 0–100 scale — never one number.
  // ⚠️ Sample data only (clearly marked). ⚠️ Pass mark NOT confirmed — do not
  // draw a threshold ring or hardcode 65 until standards/legal confirm it.
  profile: {
    caption: "Every exam returns a profile across six AI competency dimensions — not a single number.",
    mechanicsLine: "Adaptive · 15–30 min · scored 0–100 by dimension",
    points: [
      "A score in each of the six competency dimensions",
      "See where you're strong — not just whether you passed",
      "Adaptive exam · 15–30 minutes · real-world scenarios",
    ],
    cta: { label: "See how scoring works", href: "scoring.html" },
    passMarkLabel: "Certification threshold · 【pass mark — to be confirmed】",
    // The six axes, in fixed order D1→D6. These only REFERENCE the dimensions
    // defined on The Standard page. `short` is the compact radar label.
    dims: [
      { name: "Prompting & iteration",   short: "Prompting",       tag: "Directing & refining models" },
      { name: "Output evaluation",       short: "Evaluation",    tag: "Assessing AI quality" },
      { name: "Tool fluency & agility",  short: "Tool fluency",    tag: "Choosing & switching tools" },
      { name: "Workflow & task design",  short: "Workflow",        tag: "AI in real processes" },
      { name: "Context & judgment",      short: "Context",         tag: "Knowing when to trust AI" },
      { name: "Responsible AI & risk",   short: "Responsible AI",  tag: "Ethics, risk & accountability" },
    ],
    // Illustrative sample profiles, one per level (scores 0–100, in D1→D6 order).
    profiles: [
      { level: "Level 1", title: "Foundational", holder: "A. Candidate (sample)", scores: [74, 62, 71, 58, 60, 66] },
      { level: "Level 2", title: "Practitioner", holder: "J. A. Reyes (sample)",  scores: [84, 88, 80, 91, 79, 83] },
      { level: "Level 3", title: "Advanced",     holder: "S. Okonkwo (sample)",   scores: [88, 86, 85, 89, 92, 95] },
    ],
  },

  // 6 — Verify demo (sample records). Scores are D1→D6 in standard order.
  validIds: {
    "ATL-2F9K-4827-LX": { name: "AGI Practitioner", level: "Level 2", holder: "J. A. Reyes", issued: "June 2026", examDate: "12 June 2026", validity: "Valid through June 2029", status: "Active", scores: [78, 84, 71, 88, 74, 80] },
    "ATL-7M3Q-1180-RD": { name: "AGI Practitioner", level: "Level 3", holder: "S. Okonkwo", issued: "February 2026", examDate: "03 February 2026", validity: "Valid through February 2029", status: "Active", scores: [86, 90, 82, 91, 88, 93] },
  },

  // 7 — Trust: editorial statement + a concrete spec sheet (no fabricated
  // testimonial, no card-triplet). Every line is a verifiable fact.
  trust: {
    statement: "A credential is only worth what it can prove. Every Atlas credential rests on a published standard, a proctored exam, and a record anyone can check — not on our say-so.",
    specs: [
      { k: "Assessment", v: "Proctored and examination-only — an adaptive exam of about 15–30 minutes, built on real-world scenarios. No coursework to complete.", href: "exam.html", linkLabel: "Test content & structure" },
      { k: "Standard", v: "Graded against a published standard across all six AI competency dimensions, revised in the open.", href: "standard.html", linkLabel: "Read the standard" },
      { k: "Scoring", v: "Adaptive, and reported by dimension and level rather than as a single number. Certification threshold: 【pass mark — to be confirmed】. Never a curve.", href: "scoring.html", linkLabel: "How scoring works" },
      { k: "Verification", v: "Every credential resolves to a public record with a unique ID that anyone can check.", href: "verify.html", linkLabel: "Verify a credential" },
    ],
  },

  // 8 — Explore subpages
  explore: [
    { n: "01", title: "The Standard", text: "The published competency framework.", href: "standard.html" },
    { n: "02", title: "How the exam works", text: "Adaptive format, six dimensions, three levels.", href: "certifications.html" },
    { n: "03", title: "Pricing", text: "Individual · Team · Enterprise.", href: "https://app.atlas-ai.academy/pricing" },
    { n: "04", title: "For Organizations", text: "Certify and verify teams at scale.", href: "employers.html" },
  ],

  // 9 — Closing + footer
  footer: {
    blurb: "An independent certification body for the age of general intelligence.",
    columns: [
      { title: "Certifications", links: [["Level 1 — Foundational", "certifications.html"], ["Level 2 — Practitioner", "certifications.html"], ["Level 3 — Advanced", "certifications.html"], ["The standard", "standard.html"]] },
      { title: "Company", links: [["About", "about.html"], ["Standards board", "about.html"], ["Recognition", "recognition.html"], ["Contact", "about.html"]] },
      { title: "Resources", links: [["Verify a credential", "verify.html"], ["Sample exam", "#sample"], ["For organizations", "employers.html"], ["FAQ", "faq.html"]] },
      { title: "Legal", links: [["Privacy", "#"], ["Terms", "#"], ["Accessibility", "#"], ["Credential policy", "#"]] },
    ],
  },
};
window.HOME = HOME;
