:root {
    /* Color Palette - Apple Classic Light (White, Gray, Blue) */
    --apple-blue: #0071e3;
    --apple-blue-hover: #0077ed;
    --gray-950: #000000;
    /* Max contrast for text */
    /* Main Text */
    --gray-900: #f5f5f7;
    /* Background Surface */
    --gray-800: #e8e8ed;
    /* Secondary Surface / Hover */
    --gray-700: #d2d2d7;
    /* Clearer borders */
    /* Borders */
    --gray-400: #515154;
    /* Sharper secondary text */
    /* Secondary Text */

    --bg-main: #ffffff;
    --bg-card: var(--gray-900);
    --bg-card-hover: var(--gray-800);
    --primary: var(--apple-blue);
    --primary-hover: var(--apple-blue-hover);
    --secondary: var(--gray-400);
    --logo-accent: #f59e0b;
    /* Vibrant Yellow/Amber */
    --text-primary: var(--gray-950);
    --text-secondary: var(--gray-400);
    --border-color: var(--gray-700);
    --glass-bg: rgba(255, 255, 255, 0.88);
    --glass-border: var(--gray-700);

    /* Elegant Transitions */
    --transition-base: all 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);

    /* Spacing & Radii */
    --radius-lg: 12px;
    --radius-xl: 16px;
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
}

/* Base Bento Box Styles */
.bento-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(12, 1fr);
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-base);
}

.bento-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

/* Typography Hierarchy */
.display-large {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--text-primary);
}

.heading-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.body-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Premium Buttons - Apple Style */
.btn-emerald {
    background: var(--apple-blue);
    color: #ffffff;
    padding: 12px 26px;
    border-radius: 980px;
    /* Pill shape */
    font-weight: 500;
    font-size: 0.9375rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.btn-emerald:hover {
    background: #47a0ff;
    /* Lighter, vibrant Apple Blue */
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 113, 227, 0.15);
}

.btn-emerald svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.2px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--apple-blue);
    padding: 12px 26px;
    border-radius: 980px;
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.btn-outline:hover {
    background: rgba(0, 113, 227, 0.05);
    border-color: var(--apple-blue);
    text-decoration: none;
}

/* Icon Containers */
.icon-box {
    width: 48px;
    height: 48px;
    background: var(--gray-900);
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--apple-blue);
}

.icon-box svg {
    width: 24px;
    height: 24px;
    stroke-width: 2px;
}

/* Audit Feature Transcript Area - Apple Style */
.transcript-container {
    margin-bottom: 24px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-base);
}

.transcript-container:focus-within {
    border-color: var(--apple-blue);
    box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1);
}

.transcript-textarea {
    width: 100%;
    min-height: 450px;
    background: transparent;
    border: none;
    padding: 24px;
    color: var(--gray-950);
    font-family: -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
    font-size: 1.0625rem;
    /* Slightly larger for clarity */
    line-height: 1.5;
    resize: vertical;
    outline: none;
}

.transcript-textarea::placeholder {
    color: var(--gray-400);
}