/* 
  OkatomoNeo Base Design Tokens — LIGHT (DAY) THEME
  Concept: 明るく爽やか、誰にでも読みやすい昼間モード
*/

:root {
    /* Backgrounds */
    --bg-primary:    #f0f9ff;
    --bg-secondary:  #ffffff;
    --bg-card:       #ffffff;
    --bg-input:      #f8fafc;
    --bg-hover:      #e0f2fe;
    --bg-gradient:   linear-gradient(180deg, #bae6fd 0%, #f0f9ff 40%, #ffffff 100%);

    /* Borders */
    --border:        #cbd5e1;
    --border-light:  #e2e8f0;

    /* Accents */
    --accent:        #0284c7;
    --accent-light:  #0ea5e9;
    --accent-text:   #ffffff;
    --accent-glow:   rgba(2, 132, 199, 0.15);
    --accent-rgb:    2, 132, 199;

    --accent2:       #f97316;
    --accent2-rgb:   249, 115, 22;

    --logo-gradient: linear-gradient(135deg, #0284c7 0%, #f97316 100%);

    /* Status */
    --success:       #10b981;
    --warning:       #f59e0b;
    --error:         #f43f5e;

    /* Text Colors */
    --text-primary:   #0f172a;
    --text-secondary: #334155;
    --text-muted:     #64748b;

    /* Units */
    --radius-sm:     8px;
    --radius-md:     12px;
    --radius-lg:     20px;
    --radius-xl:     28px;

    /* Shadows */
    --shadow-sm:     0 2px 8px rgba(2,132,199,0.07);
    --shadow-md:     0 4px 16px rgba(2,132,199,0.12);
    --shadow-lg:     0 15px 40px rgba(2,132,199,0.15);
    --shadow-xl:     0 20px 60px rgba(2,132,199,0.2);
}
