# ALMIGHTY Wordmark Specification

**Status:** ACTIVE — Corporate brand mark for Almighty™
**Last Updated:** 2026-04-02

---

## The Wordmark

**Text:** `ALMIGHTY`
**Font:** Montserrat, weight 900 (Black), italic
**Letter spacing:** -0.04em (tight tracking)

## Gradient

One continuous horizontal gradient with a gold interruption for the G.

```
Direction: 105deg (slight diagonal matching italic slant)

Color stops:
  0%     → #00aa95  (dark green, left edge)
  37.9%  → #009a6e  (mid green, approaching G)
  37.9%  → #ff9100  (dark orange, G starts — HARD transition)
  48.15% → #fabe2c  (light gold, G ends — HARD transition)
  48.15% → #0bc27a  (mid green, after G continues)
  100%   → #00dd80  (light green, right edge)
```

**Direction logic:**

- Green flows dark (#00aa95) on left → light (#00dd80) on right
- Gold flows dark orange (#ff9100) on left → light gold (#fabe2c) on right
- Hard stops at 48% and 61% create clean G boundaries
- 105deg angle tilts the gold band to match the italic letter slant

## CSS Implementation

```css
background: linear-gradient(
  105deg,
  #00aa95 0%,
  #009a6e 37.9%,
  #ff9100 37.9%,
  #fabe2c 48.15%,
  #0bc27a 48.15%,
  #00dd80 100%
);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
```

## Padding

- `padding-left: 0.05em` — prevents italic A bottom-left clipping
- `padding-right: 0.25em` — prevents italic Y right-side clipping

## Product Variants

| Product         | Separator   | Format                   |
| --------------- | ----------- | ------------------------ |
| Almighty Budget | `\|` (pipe) | _ALMIGHTY_ \| **Budget** |
| Almighty Split  | `\|` (pipe) | _ALMIGHTY_ \| **Split**  |
| Almighty Money  | `.` (dot)   | _ALMIGHTY_.**Money**     |

- Separator: white at 20% opacity, font-weight light, not italic
- Product name: white, font-weight 700, not italic, slightly smaller text

## Usage Rules

1. The ALMIGHTY wordmark gradient is IDENTICAL across all products — never change the greens or gold per-product
2. The G is ALWAYS gold — this is the brand signature
3. Always italic, always weight 900
4. Dark/light mode: the gradient stays the same in both modes
5. Minimum size: 18px font-size

## Files

| File                    | Location                               | Purpose                      |
| ----------------------- | -------------------------------------- | ---------------------------- |
| `almighty-wordmark.svg` | Each repo's `assets/brand/`            | Static SVG for print/export  |
| CSS gradient            | Each website's nav/footer              | Live rendering on web        |
| Original logo SVG       | `almighty-budget/assets/logo/logo.svg` | Original reference with icon |
