/* ==========================================================================
   avd-turbo theme — colors.css (single source of truth for the palette)
   Edit ONLY this file to re-theme buttons/accents/backgrounds across the
   whole site - main.css and every component reference these variables,
   nothing else hardcodes a color.

   Palette rationale (per kokoc.com "продающие цвета" + B2B color-psychology
   convention): light neutral chrome is the dominant 60% (white/light-gray -
   this is a LIGHT theme, not dark), graphite/steel is the 30% supporting
   structural color (professional/industrial, B2B trust), safety-amber is
   the 10% accent reserved ONLY for buy/CTA actions (impulse-to-buy color
   without the aggressive urgency of pure red).
   ========================================================================== */

:root {
	/* 30% — structural / professional (B2B trust: graphite, steel, not blue) */
	--at-graphite: #14171c;
	--at-graphite-2: #1f242b;
	--at-steel: #4b5563;
	--at-steel-light: #8a94a3;
	--at-ink: #191d22;
	--at-muted: #5b6570;

	/* 10% — accent / CTA only (buy buttons, badges, hover states) */
	--at-amber: #ff6a00;
	--at-amber-dark: #d95c00;
	--at-amber-soft: #fff1e6;
	--at-safety-green: #2e7d32;
	--at-safety-green-soft: #e8f5e9;

	/* 60% — dominant neutral backgrounds (light theme) */
	--at-bg: #eceef0;
	--at-card: #ffffff;
	--at-line: #d3d8dd;
	--at-line-strong: #aeb6bf;

	/* shape */
	--at-radius: 3px;
	--at-radius-lg: 4px;
	--at-shadow: 0 1px 2px rgba(15,18,22,.08);
	--at-shadow-lg: 0 18px 40px rgba(15,18,22,.22);

	/* type */
	--at-font-head: 'Oswald', 'Arial Narrow', sans-serif;
	--at-font-body: 'Inter', 'Open Sans', sans-serif;
}
