# Design Language for aiice.io

## Aesthetics and Tone

aiice.io breathes the glossy optimism of Frutiger Aero -- that specific 2006-2013 visual era of translucent panels floating over nature photography, the glassy reflections of Windows Vista and early iPhone weather apps, the belief that technology and nature could coexist in a luminous, utopian interface. The "aiice" name (AI + Ice + Alice) is perfect for this aesthetic: ice-like transparency, the wonder of Alice in a digital wonderland, and the cutting edge of AI rendered in the most approachable visual language ever created. Nature glows through frosted glass, everything reflects, everything is smooth.

The tone is zen-contemplative -- the Frutiger Aero aesthetic, when done with restraint, creates an atmosphere of serene possibility. The aurora gradients that wash across backgrounds evoke the meditative quality of watching the Northern Lights. Information is presented calmly, without urgency, bathed in the soft light of translucent panels against a world of gentle color.

## Layout Motifs and Structure

The layout follows a **magazine-spread** composition that arranges content in editorial clusters rather than rigid grids. Each spread combines text, imagery, and decorative elements in a composed relationship, like pages of a beautifully designed tech magazine from 2008.

**Primary structure:**
- **Opening viewport (100vh):** An aurora gradient background (animating blend of #00B4D8, #90E0EF, #CAF0F8, #7B2FBE cycling slowly over 20s) with the "aiice" logotype floating on a large frosted-glass panel (backdrop-filter: blur(24px), background: rgba(255,255,255,0.12)). The logotype uses variable-weight type with a subtle reflective gradient fill (top half lighter than bottom, simulating light catching glossy text).
- **Magazine spreads:** Content sections alternate between different editorial compositions: (1) Text-left/image-right with a frosted panel overlay on the image; (2) Full-width imagery with text in a frosted card floating at bottom-center; (3) Two equal frosted panels side-by-side with duotone imagery backgrounds; (4) Narrow centered column with aurora gradient accents in the margins.
- **Star-celestial decoration:** Small star shapes (4-point CSS stars via rotated squares, 6-point SVG stars) scatter across the aurora backgrounds at very low opacity (4-8%). Some twinkle (opacity oscillation) on a slow random cycle, creating an ambient celestial layer.
- **Frosted glass cards:** All content containers use the Frutiger Aero signature: backdrop-filter: blur(16-24px), semi-transparent white or tinted backgrounds, subtle border (1px solid rgba(255,255,255,0.2)), and a soft outer glow (box-shadow: 0 8px 32px rgba(0,0,0,0.1)). Rounded corners: 16-20px.
- **Duotone imagery:** Photographic elements are processed as duotone images using CSS filters (grayscale + sepia + hue-rotate + saturate) to map them into the aurora color palette, creating that distinctive Frutiger Aero look of nature-meets-technology.

## Typography and Palette

**Fonts:**
- **Headlines:** "Commissioner" (Google Fonts) -- a versatile variable font whose clean, slightly humanist forms embody the friendly professionalism of the Frutiger Aero era (Frutiger itself being the spiritual ancestor). Weight 600 for titles, 300 for subtitles. Size: clamp(28px, 4vw, 56px). The variable axis allows smooth weight transitions on hover.
- **Body text:** "Nunito" (Google Fonts) -- a rounded sans-serif with warm, approachable character. Its gentle curves complement the glossy, smooth surfaces of the Frutiger aesthetic. Weight 400, line-height: 1.75. Size: clamp(16px, 1.6vw, 19px).
- **Accent/Labels:** "Overpass Mono" (Google Fonts) -- a clean monospace for metadata, timestamps, and structural labels. Weight 400, font-size: 0.82em, letter-spacing: +0.03em. Its neutral character stays out of the way of the visual design.

**Color Palette -- Aurora Frutiger:**
- **Aurora Start:** #00B4D8 -- bright cyan, the dominant cool tone
- **Aurora Mid:** #90E0EF -- light seafoam, the transition tone
- **Aurora End:** #7B2FBE -- electric violet, the warm-side aurora accent
- **Ice White:** #F0F8FF -- the lightest foreground, barely tinted blue
- **Glass Surface:** rgba(255, 255, 255, 0.15) -- the frosted panel fill
- **Deep Sky:** #0A1628 -- deep background for contrast sections and text on light
- **Petal Pink:** #FFB4C8 -- warm aurora accent for highlights and interactive states
- **Frost Border:** rgba(255, 255, 255, 0.22) -- the glass panel edge highlight

## Imagery and Motifs

**Core visual motifs:**
- **Frosted glass panels (glassmorphic cards):** The signature visual element. Containers use: `backdrop-filter: blur(20px); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 18px; box-shadow: 0 8px 32px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.15)`. The inset shadow simulates the bright edge of a glass sheet.
- **Aurora gradient backgrounds:** Large-scale animated gradients that shift between Aurora Start, Aurora Mid, Aurora End, and Petal Pink. Implemented as CSS `background: linear-gradient(135deg, ...)` with `background-size: 400% 400%` and `@keyframes aurora { 0% { background-position: 0% 50% } 50% { background-position: 100% 50% } 100% { background-position: 0% 50% } }` at 20s duration.
- **Star-celestial scatter:** Small SVG star shapes (4-pointed and 6-pointed, 6-16px) positioned absolutely across sections. Each star has a random twinkle animation: opacity oscillates between 0.04 and 0.12 with randomized durations (3-8s) and delays. Colors: Ice White and Petal Pink.
- **Duotone photo treatment:** All imagery receives a CSS filter chain: `filter: grayscale(100%) sepia(20%) hue-rotate(180deg) saturate(1.5) brightness(1.1)` which maps photos into the aurora blue/teal palette. Photos are placed behind frosted glass panels, creating the classic Frutiger Aero nature-behind-glass composition.
- **Glossy text reflections:** Headlines on certain sections have a pseudo-element that creates a reflected copy: `transform: scaleY(-1); mask-image: linear-gradient(transparent 40%, white); opacity: 0.15`. This subtle floor-reflection effect echoes the glossy, reflective surfaces of the era.
- **Magnetic interaction on frosted cards:** On hover, frosted glass cards subtly tilt toward the cursor position (calculated via mousemove event, max 3deg rotation on both axes), creating a physical, responsive feel. The glass surface appears to catch light differently as it tilts.

## Prompts for Implementation

**Full-screen narrative opening:** The page opens on the aurora gradient, already in mid-animation. Stars twinkle into existence (staggered opacity 0 to their twinkle range, 200ms apart). After 600ms, the main frosted-glass panel scales up from 0.9 to 1.0 with ease-out, and the "aiice" logotype fades in within it. The text reflection appears 300ms after the text. Below, ".io" types itself in Overpass Mono with a cursor.

**Aurora gradient implementation:** Use a `<div>` covering the full section background with: `background: linear-gradient(135deg, #00B4D8 0%, #90E0EF 25%, #7B2FBE 50%, #FFB4C8 75%, #00B4D8 100%); background-size: 400% 400%; animation: aurora 20s ease infinite;`. Layer this behind frosted-glass content panels.

**Magazine spread composition:** Each section uses CSS Grid with different template definitions:
- Spread 1: `grid-template-columns: 1fr 1fr; gap: 32px` with frosted panel on left, duotone image on right
- Spread 2: Single full-width background image with a frosted panel (max-width: 600px) positioned bottom-center via `place-self: end center`
- Spread 3: `grid-template-columns: 1fr 1fr` both cells as frosted panels with different aurora-tinted backgrounds

**Magnetic tilt interaction:** On mousemove within frosted cards, calculate cursor position relative to card center and apply: `transform: perspective(800px) rotateX(${yTilt}deg) rotateY(${xTilt}deg)` where max tilt is 3deg. Add `transition: transform 0.1s ease-out` for smooth following. Reset to 0deg on mouseleave with 0.4s transition.

**Star twinkle system:** Generate 30-50 star elements per section via CSS pseudo-elements or a lightweight JS loop. Each star gets randomized: position (left/top percentage), size (6-16px), animation-duration (3-8s), and animation-delay (0-5s). Use `@keyframes twinkle { 0%, 100% { opacity: 0.04 } 50% { opacity: 0.12 } }`.

**AVOID:** CTA-heavy layouts, pricing blocks, stat-grids. No dark/gritty aesthetics. No sharp corners on cards. No flat design -- every surface should have depth through blur, shadow, and translucency. No heavy borders.

## Uniqueness Notes

**Differentiators from other designs:**

1. **Full-commitment Frutiger Aero revival:** While glassmorphism elements appear in modern design, this design commits to the complete Frutiger Aero vocabulary: nature behind glass, glossy reflections, aurora gradients, and the specific optimistic warmth of that era. It is an intentional period-piece revival, not a surface-level frost effect.

2. **Animated aurora gradient as living background:** The continuously cycling multi-color gradient creates a background that is never static, always shifting like real aurora borealis. This living-color foundation is unique in the collection.

3. **Glossy text floor-reflections:** The headline reflection effect (inverted, masked, faded duplicate) is a distinctively Frutiger Aero technique that no other design employs. It immediately evokes the era's glossy, reflective visual language.

4. **Magnetic tilt on frosted glass:** Combining backdrop-filter glassmorphism with cursor-reactive perspective tilt creates the physical sensation of handling a translucent panel -- you can "see through it" and "tilt it." This interaction model is specific to the glass-panel metaphor.

5. **Duotone photo mapping to aurora palette:** Processing all photography through a CSS filter chain that maps colors into the aurora blue/violet/pink range creates visual cohesion that is distinct from simple color overlays or standard duotone treatments.

**Planned seed/style:** aesthetic: frutiger-aero, layout: magazine-spread, typography: commissioner-versatile, palette: aurora-gradient, patterns: magnetic, imagery: duotone-photo, motifs: star-celestial, tone: zen-contemplative

**Avoided overused patterns:** Centered layout (90%), card-grid (70%), parallax (85%), scroll-triggered (80%), cursor-follow (75%), mono typography (85%), gradient palette (95% -- but aurora-gradient specifically is only 5%), mysterious-moody tone (60%), photography imagery (80% -- but duotone-photo is distinct). Instead uses magazine-spread (10%), magnetic (30%), commissioner-versatile (rare), aurora-gradient (5%), and star-celestial motifs (5%).
<!-- DESIGN STAMP
  timestamp: 2026-03-21T11:14:56
  domain: aiice.io
  seed: unspecified
  aesthetic: aiice.io breathes the glossy optimism of Frutiger Aero -- that specific 2006-201...
  content_hash: 0af6d62505c1
-->
