> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nomiq.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Nomiq Brand Workflow: Four-Stage Pipeline to Brand Kit

> Learn how Nomiq's four-stage pipeline transforms your idea and initial context into a fully cohesive, export-ready brand identity in minutes.

Nomiq structures brand creation as a deliberate, four-stage pipeline rather than a freeform canvas. Each stage builds directly on the one before it — your initial brief shapes the strategy, the strategy drives the visual generation, and the visuals feed into the final guidelines and export package. Understanding this sequence helps you get the most out of every generation and avoid costly backtracking.

## The Four-Stage Pipeline

Work through each stage in order. The AI engine uses the outputs of earlier stages as context for later ones, so skipping ahead will produce generic or mismatched results.

<Steps>
  <Step title="Idea & Context">
    Every brand starts with a brief. Provide Nomiq with your industry vertical, a clear description of your product or service, and your target audience. The more specific your brief, the stronger every downstream asset will be.

    **What to prepare:**

    * Industry or niche (e.g., *B2B SaaS*, *sustainable fashion*, *boutique hospitality*)
    * One or two sentences describing what your product does and for whom
    * Any hard constraints, such as a name you have already decided on or colors you must avoid

    <Tip>
      Treat your brief like a creative brief you would hand to a senior designer. Include tone words such as "approachable", "authoritative", or "playful" to steer the AI's personality inference.
    </Tip>
  </Step>

  <Step title="Brand Strategy">
    Based on your brief, Nomiq's AI Engine generates six candidate brand names and three distinct brand voices. Review, select, and refine the strongest options until the personality of the brand feels right.

    **What happens in this stage:**

    * Six brand name options generated, ranked by domain availability and phonetic memorability
    * Three brand voice profiles proposed, each with sample taglines and messaging pillars
    * Optional: enter a custom name if you have already decided on one

    Once you click **Lock Strategy**, the chosen name and voice are pinned as the foundational context for all subsequent generation.

    <Warning>
      Do not lock your strategy until you are fully satisfied with the name and voice. Unlocking strategy later forces a full regeneration of your logo, as the typographic letterforms change with the name.
    </Warning>
  </Step>

  <Step title="Visual Identity">
    With strategy locked, Nomiq passes the brand personality to the AI Style Engine, which generates a logo, a primary and secondary color palette, and a typography pairing — all calibrated to your brand's voice.

    **What the engine considers:**

    * A playful, consumer-facing brand receives vibrant hues, rounded letterforms, and a dynamic icon mark
    * A high-end professional services firm receives a muted, neutral palette, refined serif typography, and a geometric wordmark
    * A developer-focused tool receives a dark-mode-first color system, monospace-adjacent type, and a minimal icon

    Use the **Brand Studio Editor** to regenerate individual elements, lock colors you love, swap typography pairings, and adjust logo layouts without starting over.
  </Step>

  <Step title="Guidelines & Export">
    Once you approve the visual identity, Nomiq automatically compiles all decisions — name, voice, colors, typography, and logo variants — into a unified set of Brand Guidelines and a production-ready Brand Kit.

    **What you receive:**

    * Interactive Brand Guidelines page you can share with a public link
    * `.zip` Brand Kit containing SVG and PNG logo variants, a CSS variable file, and web-ready font files
    * JSON design token export compatible with Figma Tokens, Style Dictionary, and Tailwind CSS

    ```bash theme={null}
    # Example: contents of a downloaded Brand Kit
    acme-brand-kit/
    ├── logos/
    │   ├── acme-logo-primary.svg
    │   ├── acme-logo-dark.svg
    │   └── acme-icon-mark.png
    ├── fonts/
    │   └── Inter-Variable.woff2
    ├── tokens/
    │   ├── tokens.json
    │   └── variables.css
    └── guidelines/
        └── acme-brand-guidelines.pdf
    ```
  </Step>
</Steps>

## Visualizing the Pipeline

The diagram below shows how data flows through each phase of the Nomiq pipeline, from raw brief inputs through the AI Style Engine to your final deliverable.

<Frame>
  ```mermaid theme={null}
  flowchart TD
      subgraph "Phase 1 — Strategy"
          A[Industry Brief] --> B(Brand Name)
          A --> C(Brand Voice)
      end

      subgraph "Phase 2 — Identity"
          B --> D{AI Style Engine}
          C --> D
          D --> E[Logo Generation]
          D --> F[Color Palette]
          D --> G[Typography Pairing]
      end

      subgraph "Phase 3 — Delivery"
          E --> H([Brand Kit .zip])
          F --> H
          G --> H
      end

      classDef default fill:#111,stroke:#333,stroke-width:1px,color:#fff;
      classDef engine fill:#6366f1,stroke:#4f46e5,stroke-width:2px,color:#fff;
      class D engine;
  ```
</Frame>

## Best Practices

Following these practices helps you move through the pipeline efficiently and avoid common regeneration traps.

* **Never skip the brief** — The quality of your logo and color palette is directly proportional to the specificity of your initial context. A two-sentence brief produces a two-star logo.
* **Lock stages sequentially** — Resist the urge to preview logo concepts before settling on a name and voice. Changing foundational strategy after generating visuals forces a full downstream reset.
* **Use the Editor for the final 10%** — The AI gets you 90% of the way to a polished result. Always open the Brand Studio Editor to manually fine-tune color stops, font weights, and logo proportions before exporting.
* **Save iterations as snapshots** — Before regenerating any element, use the **Save Snapshot** feature so you can revert if the new generation misses the mark.

## Related Pages

<CardGroup cols={2}>
  <Card title="Create Your First Brand" icon="rocket" href="/getting-started/create-your-first-brand">
    Follow the 5-minute interactive quickstart and walk through the pipeline hands-on.
  </Card>

  <Card title="Prompting Guide" icon="wand-magic-sparkles" href="/ai-engine/prompt-engineering">
    Learn how to write the perfect initial brief to maximize generation quality.
  </Card>
</CardGroup>
