Skip to content

Document Design Prompts

Prompt templates for proposals, reports, presentations, and business documents

Created: February 2026 Status: Active Tool: Nano Banana Pro / Design System Specification Builder Related: Framework Overview | Visual Identity


Design System Configuration

# DOCUMENT DESIGN SYSTEM CONFIGURATION
# Inherits from: ./readme.md (parent design system)
# See parent for global token definitions and variant specifications

document_config:
  schema_version: "2.0"
  inherits: "./readme.md"

  # Default document styling
  defaults:
    active_variant: "trusted_advisor"
    grid_system: "editorial_grid"
    frame_style: "frame_solid"
    dark_mode: false

  # Document-specific token overrides
  document_tokens:
    page_margin_top: "{{space_12}}"       # 48px
    page_margin_bottom: "{{space_10}}"    # 40px
    page_margin_sides: "{{space_10}}"     # 40px
    content_max_width: "{{container_lg}}" # 1024px
    heading_spacing: "{{space_8}}"        # 32px
    paragraph_spacing: "{{space_4}}"      # 16px
    section_spacing: "{{space_16}}"       # 64px

Document Type to Variant Mapping

document_variant_mapping:
  # Each document type maps to an optimal design variant

  # TRUSTED ADVISOR VARIANT
  # Professional stability for client-facing business documents
  trusted_advisor:
    document_types:
      - proposals
      - executive_summaries
      - compliance_reports
      - audit_findings
      - strategic_recommendations
      - client_assessments
      - sow_documents
      - msa_agreements
    characteristics:
      - "Client-facing formality"
      - "Trust-building professionalism"
      - "Conservative confidence"
      - "Executive audience focus"
    grid_system: "editorial_grid"
    frame_style: "frame_solid"
    frame_opacity: 0.1

  # BLUEPRINT TECHNICAL VARIANT
  # Engineering/technical documents with annotation styles
  blueprint_technical:
    document_types:
      - technical_specifications
      - architecture_documents
      - system_diagrams
      - api_documentation
      - infrastructure_plans
      - security_assessments
      - network_diagrams
      - runbooks
      - technical_sops
    characteristics:
      - "Engineering precision"
      - "Technical annotation support"
      - "Blueprint aesthetic"
      - "Developer audience focus"
    grid_system: "technical_grid"
    frame_style: "frame_dashed"
    frame_opacity: 0.15
    special_features:
      - corner_marks: true
      - annotation_callouts: true
      - reference_lines: true
      - measurement_indicators: true

  # MODERN PARTNER VARIANT
  # Collaborative documents for partnership contexts
  modern_partner:
    document_types:
      - partnership_proposals
      - collaboration_agreements
      - joint_venture_docs
      - co_marketing_materials
      - relationship_summaries
    characteristics:
      - "Collaborative warmth"
      - "Progressive approach"
      - "Human-centered"
    grid_system: "minimal_grid"
    frame_style: "frame_solid"
    frame_opacity: 0.05

  # BOLD CHALLENGER VARIANT
  # High-impact sales and competitive documents
  bold_challenger:
    document_types:
      - sales_proposals
      - competitive_battlecards
      - differentiation_documents
      - pitch_decks
      - case_studies
    characteristics:
      - "Confident disruption"
      - "Memorable impact"
      - "Strategic boldness"
    grid_system: "structured_grid"
    frame_style: "frame_solid"
    frame_opacity: 0.2

  # CYBER SHIELD VARIANT
  # Security-focused documents with ops center aesthetic
  cyber_shield:
    document_types:
      - security_reports
      - threat_assessments
      - incident_reports
      - penetration_test_results
      - vulnerability_assessments
      - security_policies
      - risk_registers
    characteristics:
      - "Security operations aesthetic"
      - "Threat-aware presentation"
      - "Mission-critical gravitas"
    grid_system: "cyber_grid"
    frame_style: "frame_glow"
    frame_opacity: 0.4
    dark_mode: true

  # SENTINEL GUARD VARIANT
  # AI/automation-focused security documents
  sentinel_guard:
    document_types:
      - ai_security_reports
      - automation_proposals
      - ml_assessments
      - intelligent_monitoring_docs
    characteristics:
      - "AI-powered aesthetic"
      - "Autonomous protection theme"
      - "Futuristic confidence"
    grid_system: "dashboard_grid"
    frame_style: "frame_gradient"
    frame_opacity: 0.3
    dark_mode: true

  # CLEAN DEVELOPER VARIANT
  # Developer documentation with code-first aesthetic
  clean_developer:
    document_types:
      - developer_guides
      - api_references
      - integration_documentation
      - sdk_documentation
      - code_examples
      - implementation_guides
    characteristics:
      - "Developer-focused clarity"
      - "Code-first presentation"
      - "Minimal sophistication"
    grid_system: "minimal_grid"
    frame_style: "frame_solid"
    frame_opacity: 0.08
    special_features:
      - code_blocks: true
      - syntax_highlighting: true
      - monospace_emphasis: true

  # CREATIVE CLAY VARIANT
  # Marketing and creative documents
  creative_clay:
    document_types:
      - marketing_collateral
      - brand_guidelines
      - creative_briefs
      - campaign_documents
      - thought_leadership
    characteristics:
      - "Distinctive creativity"
      - "Memorable character"
      - "Bold professionalism"
    grid_system: "editorial_grid"
    frame_style: "frame_solid"
    frame_opacity: 0.1
    special_features:
      - blob_shapes: true
      - gradient_text: true
      - section_alternation: true

Document Grid System

document_grid_layouts:
  # Grid system for document page layouts
  # Inherits from parent: grid_tokens and grid_frame_systems

  # SINGLE COLUMN (Reports, Letters)
  single_column:
    columns: 1
    gutter: "{{gap_lg}}"               # 32px
    margin: "{{page_margin_sides}}"
    max_width: "{{container_md}}"      # 768px
    use_cases:
      - letters
      - simple_reports
      - executive_summaries
      - cover_pages

  # TWO COLUMN (Proposals, Brochures)
  two_column:
    columns: 2
    gutter: "{{gap_xl}}"               # 48px
    margin: "{{page_margin_sides}}"
    column_ratio: "1:1"                # Equal columns
    use_cases:
      - proposals
      - brochures
      - comparison_documents
      - side_by_side_content

  # TWO COLUMN ASYMMETRIC (Reports with Sidebars)
  two_column_asymmetric:
    columns: 2
    gutter: "{{gap_lg}}"
    margin: "{{page_margin_sides}}"
    column_ratio: "2:1"                # Main : Sidebar
    sidebar_position: "right"
    use_cases:
      - detailed_reports
      - reference_documents
      - documents_with_callouts
      - annotated_content

  # THREE COLUMN (Data-Heavy Documents)
  three_column:
    columns: 3
    gutter: "{{gap_md}}"               # 24px
    margin: "{{page_margin_sides}}"
    use_cases:
      - comparison_tables
      - feature_matrices
      - multi_item_displays

  # MODULAR GRID (Complex Layouts)
  modular_grid:
    columns: 12
    gutter: "{{gap_sm}}"               # 16px
    margin: "{{page_margin_sides}}"
    row_height: "{{space_8}}"          # 32px baseline
    use_cases:
      - complex_reports
      - dashboards
      - mixed_content_pages
      - infographic_style

  # TECHNICAL GRID (Engineering Documents)
  technical_document_grid:
    columns: 12
    gutter: "{{gap_sm}}"
    margin: "{{page_margin_sides}}"
    frame_system: "technical_grid"
    annotations:
      margin_notes: true
      reference_numbers: true
      callout_zones: ["left_margin", "right_margin"]
    use_cases:
      - technical_specifications
      - architecture_documents
      - engineering_drawings
      - annotated_diagrams

Blueprint Technical Variant Styling

blueprint_technical_styling:
  # Specialized styling for engineering and technical documents
  # Inspired by: architectural blueprints, technical drawings, engineering specs

  id: "blueprint_technical"
  name: "Blueprint Technical"
  description: "Engineering precision with technical annotation support"

  # Color Configuration
  colors:
    primary: "{{sbk_navy}}"            # #0f172a
    secondary: "{{slate_700}}"         # #334155
    accent: "{{sbk_sky}}"              # #0ea5e9
    background: "{{cool_white}}"       # #f8fafc
    surface: "{{white}}"
    grid_lines: "{{slate_300}}"        # #cbd5e1
    annotation_color: "{{sbk_blue}}"   # #2563eb
    callout_bg: "{{slate_100}}"        # #f1f5f9
    reference_line: "{{slate_400}}"    # #94a3b8

  # Typography for Technical Docs
  typography:
    heading_font: "{{font_primary}}"
    body_font: "{{font_primary}}"
    code_font: "{{font_mono}}"
    annotation_font: "{{font_mono}}"
    heading_weight: "{{weight_semibold}}"
    body_weight: "{{weight_regular}}"
    annotation_weight: "{{weight_medium}}"
    heading_tracking: "{{tracking_tight}}"
    annotation_size: "{{text_xs}}"     # 12px for annotations

  # Visual Style
  visual:
    border_radius: "{{radius_sm}}"     # Sharp corners
    shadow_style: "shadow_xs"
    frame_style: "frame_dashed"
    corner_marks: true
    grid_opacity: 0.15

  # Annotation System
  annotations:
    # Callout Styles
    callout_box:
      background: "{{callout_bg}}"
      border: "1px dashed {{reference_line}}"
      radius: "{{radius_sm}}"
      padding: "{{space_3}}"

    # Reference Numbers
    reference_marker:
      shape: "circle"
      size: "20px"
      background: "{{annotation_color}}"
      text_color: "{{white}}"
      font: "{{font_mono}}"
      font_size: "{{text_xs}}"

    # Reference Lines
    reference_line:
      style: "dashed"
      color: "{{reference_line}}"
      weight: "1px"
      dash_pattern: "4px 4px"

    # Margin Notes
    margin_note:
      position: "outside"
      width: "120px"
      font: "{{annotation_font}}"
      size: "{{text_xs}}"
      color: "{{slate_600}}"

    # Measurement Indicators
    measurement:
      line_style: "solid"
      line_color: "{{slate_500}}"
      line_weight: "1px"
      tick_height: "6px"
      label_font: "{{font_mono}}"
      label_size: "{{text_xs}}"

  # Corner Marks (Blueprint Registration)
  corner_marks:
    style: "bracket"
    size: "12px"
    weight: "1px"
    color: "{{slate_400}}"
    offset: "{{space_2}}"

  # Section Dividers
  section_divider:
    style: "dashed"
    weight: "1px"
    color: "{{slate_300}}"
    spacing_above: "{{space_8}}"
    spacing_below: "{{space_6}}"

  # Code Block Styling
  code_blocks:
    background: "{{slate_100}}"
    border: "1px solid {{slate_200}}"
    radius: "{{radius_sm}}"
    padding: "{{space_4}}"
    font: "{{font_mono}}"
    font_size: "{{text_sm}}"
    line_numbers: true

  # Prompt Prefix
  prompt_prefix: |
    [STYLE: BLUEPRINT TECHNICAL]
    Color palette: Navy (#0f172a) with sky blue (#0ea5e9) accents on cool white (#f8fafc).
    Mood: Engineering precision, technical authority, documentation clarity.
    Texture: Subtle grid overlay, dashed frames, corner registration marks.
    Annotations: Numbered callouts, margin notes, reference lines.
    Composition: Structured technical grid with clear hierarchies.
    Corners: Sharp or minimal radius (2-4px).
    Grid: Visible dashed grid at 15% opacity with corner marks.
    Typography: Clean sans-serif with monospace for code/annotations.

Token Placeholders Reference

document_token_placeholders:
  # Typography Tokens
  typography:
    "{{font_primary}}": "'Inter', sans-serif"
    "{{font_display}}": "'Cal Sans', 'Inter', sans-serif"
    "{{font_mono}}": "'JetBrains Mono', monospace"
    "{{font_serif}}": "'Lora', Georgia, serif"
    "{{text_xs}}": "0.75rem (12px)"
    "{{text_sm}}": "0.875rem (14px)"
    "{{text_base}}": "1rem (16px)"
    "{{text_lg}}": "1.125rem (18px)"
    "{{text_xl}}": "1.25rem (20px)"
    "{{text_2xl}}": "1.5rem (24px)"
    "{{text_3xl}}": "1.875rem (30px)"
    "{{text_4xl}}": "2.25rem (36px)"
    "{{weight_regular}}": "400"
    "{{weight_medium}}": "500"
    "{{weight_semibold}}": "600"
    "{{weight_bold}}": "700"
    "{{leading_normal}}": "1.5"
    "{{leading_relaxed}}": "1.625"
    "{{tracking_tight}}": "-0.025em"
    "{{tracking_normal}}": "0"

  # Color Tokens
  colors:
    "{{sbk_blue}}": "#2563eb"
    "{{sbk_navy}}": "#0f172a"
    "{{sbk_sky}}": "#0ea5e9"
    "{{white}}": "#ffffff"
    "{{cool_white}}": "#f8fafc"
    "{{slate_100}}": "#f1f5f9"
    "{{slate_200}}": "#e2e8f0"
    "{{slate_300}}": "#cbd5e1"
    "{{slate_400}}": "#94a3b8"
    "{{slate_500}}": "#64748b"
    "{{slate_600}}": "#475569"
    "{{slate_700}}": "#334155"
    "{{slate_800}}": "#1e293b"
    "{{slate_900}}": "#0f172a"
    "{{red_600}}": "#dc2626 (Critical)"
    "{{orange_600}}": "#ea580c (High)"
    "{{amber_500}}": "#f59e0b (Medium)"
    "{{green_600}}": "#16a34a (Success)"

  # Spacing Tokens
  spacing:
    "{{space_1}}": "0.25rem (4px)"
    "{{space_2}}": "0.5rem (8px)"
    "{{space_3}}": "0.75rem (12px)"
    "{{space_4}}": "1rem (16px)"
    "{{space_6}}": "1.5rem (24px)"
    "{{space_8}}": "2rem (32px)"
    "{{space_10}}": "2.5rem (40px)"
    "{{space_12}}": "3rem (48px)"
    "{{space_16}}": "4rem (64px)"
    "{{gap_sm}}": "1rem (16px)"
    "{{gap_md}}": "1.5rem (24px)"
    "{{gap_lg}}": "2rem (32px)"
    "{{gap_xl}}": "3rem (48px)"

  # Sizing Tokens
  sizing:
    "{{radius_sm}}": "0.125rem (2px)"
    "{{radius_md}}": "0.375rem (6px)"
    "{{radius_lg}}": "0.5rem (8px)"
    "{{radius_xl}}": "0.75rem (12px)"
    "{{container_md}}": "768px"
    "{{container_lg}}": "1024px"
    "{{container_xl}}": "1280px"

Document Philosophy

SBK documents must: - Command respect through professional presentation - Be scannable with clear visual hierarchy - Reinforce brand without overwhelming content - Support the message rather than distract from it - Align with variant selected for document type

Document Anti-Patterns

Never create documents that: - Are cluttered or visually overwhelming - Use inconsistent formatting or fonts - Feel template-generic or amateurish - Bury important information - Are hard to navigate or scan - Mismatch variant to document purpose


Cover Page Designs

Proposal Cover

[SBK BRAND DNA]
Professional technology consulting aesthetic. Trust and expertise.

[VARIANT: {{document_variant_mapping.trusted_advisor}}]
Grid: {{editorial_grid}}
Frame: {{frame_solid}} at 10% opacity

[ASSET: DOCUMENT COVER - PROPOSAL]
Cover page for client proposals.

[SPECIFICATIONS]
8.5x11" or A4 format.
300dpi for print.
PDF-optimized.

[LAYOUT]
Upper third: SBK logo, subtle brand pattern.
Center: Proposal title in heading typography.
Subtitle: Client name, date.
Lower third: Abstract brand element or photograph.

[TYPOGRAPHY]
Title: {{font_primary}} {{weight_bold}}, {{text_4xl}}.
Subtitle: {{font_primary}} {{weight_regular}}, {{text_lg}}.
Client name: {{font_primary}} {{weight_semibold}}, {{text_xl}}.

[COLOR]
Primary: {{sbk_navy}} for title.
Secondary: {{slate_600}} for subtitle.
Background: {{cool_white}}.
Accent: {{sbk_sky}} subtle element.

[SPACING]
Top margin: {{space_12}}.
Side margins: {{space_10}}.
Title to subtitle: {{space_4}}.
Logo zone height: {{space_24}}.

[AVOID]
Full-bleed photographs. Busy backgrounds.
Multiple colors competing. Generic clip art.

Technical Specification Cover

[VARIANT: {{document_variant_mapping.blueprint_technical}}]
Grid: {{technical_grid}}
Frame: {{frame_dashed}} at 15% opacity

[ASSET: DOCUMENT COVER - TECHNICAL SPEC]
Cover for technical specifications and engineering documents.

[LAYOUT]
Corner marks at all four corners (blueprint registration).
SBK logo top-left with document number.
Title in technical typography style.
Version, revision date, and status prominently displayed.
Classification/confidentiality notice.
Technical grid overlay visible.

[TYPOGRAPHY]
Title: {{font_primary}} {{weight_semibold}}, {{text_3xl}}.
Document ID: {{font_mono}} {{weight_medium}}, {{text_sm}}.
Version: {{font_mono}}, {{text_sm}}.
Classification: {{font_mono}} {{weight_bold}}, {{text_xs}}.

[COLOR]
Primary: {{sbk_navy}} for title.
Grid lines: {{slate_300}} at 15% opacity.
Corner marks: {{slate_400}}.
Document ID: {{sbk_blue}}.
Background: {{cool_white}}.

[SPECIAL ELEMENTS]
Corner bracket marks for blueprint aesthetic.
Dashed outer frame.
Revision history indicator.
Technical classification box.

[AVOID]
Marketing-style imagery.
Soft or casual elements.
Heavy decorative patterns.

Report Cover

[VARIANT: Conditional based on report type]
Security reports: {{cyber_shield}}
Compliance reports: {{trusted_advisor}}
Technical reports: {{blueprint_technical}}

[ASSET: DOCUMENT COVER - REPORT]
Cover for assessment reports and deliverables.

[LAYOUT]
Clean, authoritative design.
SBK logo top-left or centered.
Report title prominent.
Report type (Assessment, Analysis, Audit).
Date and confidentiality notice.
Optional: Abstract geometric element.

[STYLE VARIATIONS]
- Security Assessment: {{cyber_shield}} - Shield/protection motif, dark mode
- IT Strategy: {{trusted_advisor}} - Roadmap/direction motif
- Compliance Report: {{trusted_advisor}} - Trust/verification motif
- Technical Assessment: {{blueprint_technical}} - Grid/precision motif

[TYPOGRAPHY]
Title: {{font_primary}} {{weight_semibold}}, {{text_3xl}}.
Report type: {{font_primary}} {{weight_medium}}, {{text_lg}}.
Date: {{font_primary}} {{weight_regular}}, {{text_base}}.

[AVOID]
Photographs on security documents.
Too casual or playful elements.
Anything that undermines authority.

Case Study Cover

[VARIANT: {{document_variant_mapping.bold_challenger}}]
Grid: {{structured_grid}}
Frame: {{frame_solid}} at 20% opacity

[ASSET: DOCUMENT COVER - CASE STUDY]
Cover for client success stories.

[LAYOUT]
Client industry visual (abstract or environmental).
"Case Study" label.
Headline capturing key result.
Client logo (with permission) or industry indicator.

[COMPOSITION]
Visual interest while remaining professional.
Clear hierarchy: Category → Headline → Details.
Brand colors integrated with imagery.
Bold asymmetric layout.

[TYPOGRAPHY]
Label: {{font_primary}} {{weight_medium}}, {{text_sm}}, uppercase.
Headline: {{font_display}} {{weight_bold}}, {{text_4xl}}.
Details: {{font_primary}} {{weight_regular}}, {{text_base}}.

[AVOID]
Identifying client without permission.
Overly promotional feeling.
Generic stock photography.

Presentation Templates

Title Slide

[VARIANT: Based on presentation context]
Client presentations: {{trusted_advisor}}
Sales pitches: {{bold_challenger}}
Technical demos: {{clean_developer}}
Security briefings: {{cyber_shield}}

[ASSET: PRESENTATION - TITLE SLIDE]
Opening slide for client presentations.

[SPECIFICATIONS]
16:9 aspect ratio (1920x1080px).
Minimal text, maximum impact.

[LAYOUT]
SBK logo: Upper left or lower right.
Title: Large, centered or left-aligned.
Subtitle: Smaller, supporting information.
Background: Variant-appropriate styling.

[COLOR OPTIONS BY VARIANT]
trusted_advisor: {{sbk_navy}} background, {{white}} text.
bold_challenger: {{slate_900}} background, {{white}} text, {{orange_600}} accent.
clean_developer: {{white}} background, {{slate_900}} text, {{indigo_600}} accent.
cyber_shield: {{dark_bg_primary}} background, {{white}} text, {{red_600}} glow.

[TYPOGRAPHY]
Title: {{font_display}} {{weight_bold}}, {{text_6xl}}.
Subtitle: {{font_primary}} {{weight_regular}}, {{text_xl}}.

[AVOID]
Cluttered layouts. Multiple competing elements.
Generic presentation templates.

Section Divider Slide

[ASSET: PRESENTATION - SECTION DIVIDER]
Transition slides between major sections.

[LAYOUT]
Large section number or icon.
Section title.
Bold use of brand color.
Minimal other elements.

[PURPOSE]
Create visual break.
Orient audience to structure.
Add rhythm to presentation.

[TYPOGRAPHY]
Section number: {{font_display}} {{weight_extrabold}}, {{text_8xl}}.
Section title: {{font_primary}} {{weight_semibold}}, {{text_3xl}}.

[AVOID]
Too many transition effects.
Inconsistent styling between dividers.

Content Slide

[ASSET: PRESENTATION - CONTENT]
Standard content slides.

[LAYOUT]
Header bar: Light gray or subtle brand color.
Content area: {{white}} or very light background.
Footer: Page number, optional logo.

[TYPOGRAPHY]
Heading: {{font_primary}} {{weight_semibold}}, {{text_2xl}}.
Body: {{font_primary}} {{weight_regular}}, {{text_lg}}.
Bullets: Simple, consistent.

[SPACING]
Margins: {{space_10}} minimum.
Line spacing: {{leading_relaxed}}.
Visual breathing room.

[AVOID]
Wall of text. Too many bullet points.
Inconsistent styling. Small fonts.

Data Slide

[ASSET: PRESENTATION - DATA]
Slides featuring charts, graphs, metrics.

[LAYOUT]
Clear title describing the insight.
Chart/graph as hero element.
Key takeaway called out.
Source citation if needed.

[DATA VIZ STYLING]
Primary data: {{sbk_blue}}.
Secondary data: {{slate_600}}.
Highlight: Variant accent color.
Gridlines: {{slate_200}} minimal.

[TYPOGRAPHY]
Title: {{font_primary}} {{weight_semibold}}, {{text_2xl}}.
Data labels: {{font_mono}}, {{text_sm}}.
Callouts: {{font_primary}} {{weight_medium}}, {{text_base}}.

[AVOID]
3D charts. Excessive gridlines.
Misleading visualizations.
Too many data series.

Letterhead & Stationery

Letterhead

[VARIANT: {{trusted_advisor}}]
Grid: {{single_column}}

[ASSET: STATIONERY - LETTERHEAD]
Official business correspondence.

[SPECIFICATIONS]
8.5x11" or A4.
Printable and digital versions.
Word/Google Docs compatible.

[LAYOUT]
Header: Logo left, contact info right.
Body: Clear margins for content.
Footer: Subtle brand element or line.

[HEADER CONTENT]
SBK Consulting logo.
Address (optional).
Phone (optional).
Website.

[MARGINS]
Top: {{space_12}} (header zone).
Sides: {{space_10}}.
Bottom: {{space_8}} (footer zone).

[TYPOGRAPHY]
Header text: {{font_primary}} {{weight_regular}}, {{text_sm}}.
Body text: {{font_primary}} {{weight_regular}}, {{text_base}}.

[AVOID]
Cluttered headers. Full-color backgrounds.
Elements that interfere with content.

Business Card

[VARIANT: {{trusted_advisor}}]

[ASSET: STATIONERY - BUSINESS CARD]
Professional contact card.

[SPECIFICATIONS]
Standard: 3.5" x 2".
350gsm cardstock.
Matte or soft-touch finish.

[LAYOUT - FRONT]
Logo: Prominent position.
Name: Clear and readable.
Title: Below name.
Contact: Phone, email.

[LAYOUT - BACK]
Option A: Solid brand color with logo.
Option B: Service pillars listed.
Option C: Abstract brand pattern.

[TYPOGRAPHY]
Name: {{font_primary}} {{weight_semibold}}, 10-11pt.
Title: {{font_primary}} {{weight_regular}}, 8-9pt.
Contact: {{font_primary}} {{weight_regular}}, 8pt.

[AVOID]
Too much information. QR codes (dated).
Multiple fonts. Glossy finish (fingerprints).

Envelope

[ASSET: STATIONERY - ENVELOPE]
Business envelope designs.

[SPECIFICATIONS]
#10 envelope (4.125" x 9.5").
Window or non-window versions.

[LAYOUT]
Return address: Upper left.
Logo: With or above return address.
Minimal, professional appearance.

[AVOID]
Full-color printing (cost).
Elaborate designs.

Report Interior Pages

Executive Summary Page

[VARIANT: Based on report type - inherits from cover variant]

[ASSET: REPORT - EXECUTIVE SUMMARY]
First content page of reports.

[LAYOUT]
Clear "Executive Summary" header.
Key findings in scannable format.
Recommendations highlighted.
Page numbers visible.

[CONTENT STRUCTURE]
- Overview paragraph (3-4 sentences)
- Key Findings (3-5 bullets)
- Recommendations (prioritized list)
- Next Steps (if applicable)

[STYLING]
Pull quotes for key insights.
Icon callouts for priorities.
Color-coded severity/priority.

[TYPOGRAPHY]
Section header: {{font_primary}} {{weight_bold}}, {{text_2xl}}.
Body: {{font_primary}} {{weight_regular}}, {{text_base}}, {{leading_relaxed}}.
Bullets: {{font_primary}}, {{text_base}}.

[AVOID]
Burying key information.
Wall of text without structure.
Missing page numbers.

Findings Page

[ASSET: REPORT - FINDINGS]
Interior pages presenting findings.

[LAYOUT]
Section header.
Finding title with severity indicator.
Description and evidence.
Recommendation tied to finding.

[SEVERITY INDICATORS]
Critical: {{red_600}} (#dc2626) - Immediate action.
High: {{orange_600}} (#ea580c) - Address within 30 days.
Medium: {{amber_500}} (#f59e0b) - Plan remediation.
Low: {{sbk_blue}} (#2563eb) - Consider improvement.
Informational: {{slate_500}} (#64748b) - Awareness only.

[TYPOGRAPHY]
Finding title: {{font_primary}} {{weight_semibold}}, {{text_xl}}.
Description: {{font_primary}} {{weight_regular}}, {{text_base}}.
Recommendation: {{font_primary}} {{weight_medium}}, {{text_base}}.

[AVOID]
Inconsistent severity usage.
Findings without recommendations.
Too technical without context.

Technical Findings Page (Blueprint Variant)

[VARIANT: {{blueprint_technical}}]
Grid: {{technical_document_grid}}
Frame: {{frame_dashed}} at 15% opacity

[ASSET: REPORT - TECHNICAL FINDINGS]
Technical findings with annotation support.

[LAYOUT]
Corner marks for page registration.
Finding reference numbers in margin.
Technical diagram zone with callouts.
Code snippets with line numbers.
Reference line connections to evidence.

[ANNOTATION ELEMENTS]
Reference markers: Circled numbers in {{sbk_blue}}.
Margin notes: {{text_xs}} in {{slate_600}}.
Code blocks: {{font_mono}} on {{slate_100}} background.
Callout boxes: Dashed border, {{callout_bg}} fill.

[TYPOGRAPHY]
Finding ID: {{font_mono}} {{weight_medium}}, {{text_sm}}.
Title: {{font_primary}} {{weight_semibold}}, {{text_lg}}.
Technical detail: {{font_mono}}, {{text_sm}}.
Annotations: {{font_mono}}, {{text_xs}}.

[SPECIAL FEATURES]
Numbered callouts linking to details.
Technical reference lines.
Version/revision tracking in footer.
Cross-reference indicators.

[AVOID]
Dense text without visual breaks.
Missing reference numbers.
Inconsistent annotation styling.

Appendix Page

[ASSET: REPORT - APPENDIX]
Supporting documentation pages.

[LAYOUT]
Clear appendix labeling (A, B, C...).
Descriptive title.
Reference from main body.
Page numbers continuing from body.

[CONTENT TYPES]
- Technical details
- Methodology explanation
- Raw data or evidence
- Glossary of terms
- Reference standards

[TYPOGRAPHY]
Appendix label: {{font_primary}} {{weight_bold}}, {{text_xl}}.
Title: {{font_primary}} {{weight_semibold}}, {{text_lg}}.
Body: {{font_primary}} {{weight_regular}}, {{text_sm}}.

[AVOID]
Orphaned appendices (no reference).
Critical information buried here.
Inconsistent formatting.

Email Templates

Email Signature

[ASSET: EMAIL - SIGNATURE]
Standard email signature block.

[LAYOUT]
Name: Bold or slightly larger.
Title: Standard weight.
Company: SBK Consulting.
Contact: Phone, email (linked).
Optional: Small logo or banner.

[SPECIFICATIONS]
Width: 400-600px max.
Logo: 100-150px wide if included.
Plain text fallback available.

[TYPOGRAPHY]
Name: {{font_primary}} {{weight_semibold}}.
Title/Company: {{font_primary}} {{weight_regular}}.
Contact: {{font_primary}} {{weight_regular}}.

[EXAMPLE STRUCTURE]
---
**Name**
Title | SBK Consulting
phone | email | website
[Small logo or tagline]

Email Header Banner

[ASSET: EMAIL - HEADER]
Header banner for email campaigns.

[SPECIFICATIONS]
Width: 600px (email standard).
Height: 100-200px.
File size: Under 100KB.
Format: PNG or JPG.

[LAYOUT]
Logo left or centered.
Minimal brand elements.
Campaign title if applicable.

[AVOID]
Complex graphics (email rendering).
Dark backgrounds (contrast issues).
Text that needs to be read in image.

Contract Documents

MSA/Contract Cover

[VARIANT: {{trusted_advisor}}]
Grid: {{single_column}}
Frame: Minimal

[ASSET: CONTRACT - COVER]
Cover page for legal agreements.

[LAYOUT]
Professional, formal appearance.
Document title prominent.
Party names clear.
Effective date.
Confidential marking if needed.

[STYLING]
More conservative than marketing.
Limited color use.
Clear, readable typography.
Version/date tracking.

[TYPOGRAPHY]
Document title: {{font_primary}} {{weight_semibold}}, {{text_3xl}}.
Party names: {{font_primary}} {{weight_medium}}, {{text_xl}}.
Date/version: {{font_primary}} {{weight_regular}}, {{text_base}}.

[AVOID]
Marketing-style design.
Playful elements.
Anything that undermines formality.

SOW Template

[VARIANT: {{trusted_advisor}}]
Grid: {{two_column_asymmetric}}

[ASSET: CONTRACT - SOW]
Statement of Work document design.

[SECTIONS]
- Project Overview
- Scope of Services
- Deliverables
- Timeline/Milestones
- Pricing
- Terms and Conditions
- Signatures

[FORMATTING]
Numbered sections and subsections.
Tables for deliverables/pricing.
Clear signature blocks.
Page headers with project info.

[TYPOGRAPHY]
Section heads: {{font_primary}} {{weight_semibold}}, {{text_xl}}.
Subsections: {{font_primary}} {{weight_medium}}, {{text_lg}}.
Body: {{font_primary}} {{weight_regular}}, {{text_base}}.
Table text: {{font_primary}}, {{text_sm}}.

[AVOID]
Ambiguous section boundaries.
Missing version control.
Unclear scope definitions.

Quality Checklist

Before finalizing any document:

Brand & Variant Alignment

  • Correct variant selected for document type
  • Consistent with brand typography tokens
  • Brand colors correctly applied from variant
  • Grid system appropriate for content type
  • Frame style matches variant specification

Layout & Spacing

  • Proper margins using spacing tokens
  • Consistent spacing between elements
  • Grid layout properly applied
  • Page numbers where appropriate
  • Logo usage follows guidelines

Technical Quality

  • Readable at intended size
  • Correct file format for use case
  • Version/date clearly marked
  • Proofread for errors
  • Accessible (color contrast, fonts)

Variant-Specific Checks

  • Blueprint Technical: Corner marks, annotations, code blocks
  • Cyber Shield: Dark mode, glow effects, grid overlay
  • Clean Developer: Code highlighting, minimal grid
  • Bold Challenger: High contrast, impactful layout

File Naming Convention

sbk-{type}-{description}-{variant}-{version}.{ext}

Examples:
sbk-proposal-acme-security-assessment-trusted_advisor-v1.pdf
sbk-techspec-api-integration-blueprint_technical-v2.pdf
sbk-presentation-soc2-overview-bold_challenger-v2.pptx
sbk-report-healthcare-hipaa-audit-trusted_advisor-v1.pdf
sbk-template-letterhead-trusted_advisor-2026.docx

Last Updated: February 2026 Version: 2.0 (Parameterized Design System Integration)