/*!*************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/globals.css ***!
  \*************************************************************************************************************************************************************************************************************************************************************/
/* ═══════════════════════════════════════════════════════════════════════════
   globals.css — SalesCoach AI Design System
   Design Tokens + Reset + Utilities ported from the Tkinter app
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ─── Design Tokens ───────────────────────────────────────────────────────── */
:root,
[data-theme="dark"] {
  /* Landing Theme Tokens */
  --bg: #000000;
  --surface: #050505;
  --surface2: #0A0A0A;
  --border: rgba(255, 255, 255, 0.04);
  --text: #ffffff;
  --muted: #a1a1aa;
  --accent: #38bdf8;
  --accent-rgb: 56, 189, 248;

  /* App Tokens */
  --bg-base: #000000;
  --bg-panel: #050505;
  --bg-card: #0A0A0A;
  --bg-hover: #111111;
  --bg-overlay: rgba(0, 0, 0, 0.85);

  /* Accents */
  --cyan: #38bdf8;
  --cyan-dim: #0ea5e9;
  --cyan-glow: rgba(56, 189, 248, 0.05);
  /* very subtle */
  --green: #4ade80;
  --green-glow: rgba(74, 222, 128, 0.05);
  --amber: #fbbf24;
  --amber-glow: rgba(251, 191, 36, 0.05);
  --red: #f87171;
  --red-glow: rgba(248, 113, 113, 0.05);
  --purple: #a78bfa;
  --gold: #d4af37;

  /* Text */
  --text-1: #f8fafc;
  --text-2: #94a3b8;
  --text-3: #475569;

  /* Borders */
  --border: rgba(255, 255, 255, 0.06);
  --border-lt: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Consolas', monospace;

  /* Spacing */
  --radius-sm: 4px;
  --radius-md: 8px;
  /* Square edges */
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows (Minimal diffuse) */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.8);
  --shadow-glow-cyan: none;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 300ms var(--ease-out);
}

[data-theme="light"] {
  /* Landing Theme Tokens */
  --bg: #F5F0E8;
  --surface: #EDE8DF;
  --surface2: #E4DDD2;
  --border: rgba(26, 26, 46, 0.12);
  --text: #1a1a2e;
  --muted: #6b7280;
  --accent: #1a1a2e;
  --accent-rgb: 26, 26, 46;

  /* App Tokens — FULL OVERRIDE */
  --bg-base: #F5F0E8;
  --bg-panel: #EDE8DF;
  --bg-card: #E4DDD2;
  --bg-hover: #DBD4C8;
  --bg-overlay: rgba(245, 240, 232, 0.85);

  /* Accents stay vibrant in light mode */
  --cyan: #0284c7;
  --cyan-dim: #0369a1;
  --cyan-glow: rgba(2, 132, 199, 0.08);
  --green: #16a34a;
  --green-glow: rgba(22, 163, 74, 0.08);
  --amber: #d97706;
  --amber-glow: rgba(217, 119, 6, 0.08);
  --red: #dc2626;
  --red-glow: rgba(220, 38, 38, 0.08);
  --purple: #7c3aed;
  --gold: #b8860b;

  /* Text */
  --text-1: #1a1a2e;
  --text-2: #4b5563;
  --text-3: #9ca3af;

  /* Borders */
  --border: #d1cbc2;
  --border-lt: #c4bdb3;

  /* Shadows (softer for light) */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-glow-cyan: none;
}

/* ─── Reset ───────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-ui);
  background: var(--bg-base);
  color: var(--text-1);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  transition: background 300ms ease, color 300ms ease;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

button {
  font-family: var(--font-ui);
  cursor: pointer;
  border: none;
  outline: none;
}

input,
textarea,
select {
  font-family: var(--font-ui);
  outline: none;
}

/* ─── Scrollbar ───────────────────────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-lt);
}

/* ─── Layout Utilities ────────────────────────────────────────────────────── */
.app-layout {
  display: flex;
  min-height: 100vh;
}

.main-area {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* ─── Glass Effect ────────────────────────────────────────────────────────── */
.glass {
  background: var(--bg-panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
}

/* ─── Animations ──────────────────────────────────────────────────────────── */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes flashBorder {

  0%,
  100% {
    box-shadow: inset 0 0 0 2px var(--red);
  }

  50% {
    box-shadow: inset 0 0 0 2px transparent;
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 5px var(--cyan), 0 0 10px rgba(56, 189, 248, 0.1);
  }

  50% {
    box-shadow: 0 0 15px var(--cyan), 0 0 30px rgba(56, 189, 248, 0.2);
  }
}

.animate-fade-in {
  animation: fadeIn 0.4s var(--ease-out) both;
}

.animate-slide-left {
  animation: slideInLeft 0.4s var(--ease-out) both;
}

.animate-slide-up {
  animation: slideInUp 0.4s var(--ease-out) both;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* ─── Button Variants ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--text-1);
  color: var(--bg-base);
}

.btn-primary:hover {
  background: #E2E8F0;
  transform: translateY(-1px);
}

.btn-danger {
  background: var(--bg-card);
  color: var(--red);
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.btn-danger:hover {
  background: rgba(248, 113, 113, 0.1);
  border-color: var(--red);
}

.btn-ghost {
  background: var(--bg-card);
  color: var(--text-2);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--text-1);
  background: var(--bg-hover);
  border-color: var(--border-lt);
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37, #f5d050);
  color: var(--bg-base);
  font-weight: 700;
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

/* ─── Card ────────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
}

.card:hover {
  border-color: var(--cyan-dim);
  background: var(--bg-hover);
}

/* ─── Input ───────────────────────────────────────────────────────────────── */
.input {
  background: var(--bg-card);
  color: var(--text-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 14px;
  transition: all var(--transition);
  width: 100%;
}

.input:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-glow);
}

.input::placeholder {
  color: var(--text-3);
}

/* ─── Badge ───────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: transparent;
  border: 1px solid var(--border);
}

.badge-cyan {
  border-color: var(--cyan);
  color: var(--cyan);
}

.badge-green {
  border-color: var(--green);
  color: var(--green);
}

.badge-amber {
  border-color: var(--amber);
  color: var(--amber);
}

.badge-red {
  border-color: var(--red);
  color: var(--red);
}

/* ─── Section Label (sidebar) ─────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0 4px;
}

/* ─── Divider ─────────────────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border);
  margin: 12px 0;
}

/* ─── Responsive Typography & Layout Fixes ─── */
@media (max-width: 900px) {
  /* Only apply aggressive heading shrinks to the main landing page/sections */
  [class*="hero"] h1, 
  [class*="landing"] h1 {
    font-size: 2.2rem !important;
    line-height: 1.1 !important;
  }

  [class*="hero"] h2, 
  [class*="landing"] h2 {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
  }

  /* Force wrap for mobile layouts */
  .flex, 
  .btn-group {
    flex-wrap: wrap !important;
  }
}

/* ==========================================================================
   🔥 SÉCURITÉ ANTI-DÉBORDEMENT (MOBILE) 🔥
   NOTE: max-width:100vw NEVER applied to * — it destroys flex sidebars!
   ========================================================================== */
html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 0;
  padding: 0;
  position: relative;
}

/* Only block-level containers get overflow protection, not flex children */
@media (max-width: 900px) {
  body > *,
  section,
  article,
  main,
  header,
  footer,
  nav {
    overflow-x: hidden;
    box-sizing: border-box;
  }

  /* Images and media should not overflow */
  img,
  video,
  iframe {
    max-width: 100%;
    height: auto;
  }
}
/*!**********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[7].use[3]!./components/layout/BottomNav.module.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************/
.BottomNav_bottomNav__TqxBp {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65px;
  background: var(--bg-panel);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  z-index: 1000;
  justify-content: space-around;
  align-items: center;
  padding-bottom: env(safe-area-inset-bottom);
}

.BottomNav_navItem__6YTUz {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1 1;
  text-decoration: none;
  color: var(--text-3);
  transition: all 0.2s ease;
  height: 100%;
  gap: 4px;
}

.BottomNav_navItem__6YTUz.BottomNav_active__nw_ZP {
  color: var(--cyan);
}

.BottomNav_icon__IeieN {
  font-size: 20px;
  margin-bottom: 2px;
  filter: grayscale(1);
  transition: all 0.2s ease;
  opacity: 0.7;
}

.BottomNav_navItem__6YTUz.BottomNav_active__nw_ZP .BottomNav_icon__IeieN {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.BottomNav_label__SEaPO {
  font-size: 11px;
  font-family: var(--font-ui);
  font-weight: 500;
  letter-spacing: -0.2px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .BottomNav_bottomNav__TqxBp {
    display: flex;
  }
}

/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[2].use[1]!./node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[14].oneOf[2].use[2]!./node_modules/next/font/google/target.css?{"path":"app/layout.js","import":"Inter","arguments":[{"subsets":["latin"],"variable":"--font-inter"}],"variableName":"inter"} ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
/* cyrillic-ext */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/ba9851c3c22cd980-s.woff2) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/21350d82a1f187e9-s.woff2) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* greek-ext */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/c5fe6dc8356a8c31-s.woff2) format('woff2');
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/19cfc7226ec3afaa-s.woff2) format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/df0a9ae256c0569c-s.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/8e9860b6e62d6359-s.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: '__Inter_f367f3';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/_next/static/media/e4af272ccee01ff0-s.p.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}@font-face {font-family: '__Inter_Fallback_f367f3';src: local("Arial");ascent-override: 90.49%;descent-override: 22.56%;line-gap-override: 0.00%;size-adjust: 107.06%
}.__className_f367f3 {font-family: '__Inter_f367f3', '__Inter_Fallback_f367f3';font-style: normal
}.__variable_f367f3 {--font-inter: '__Inter_f367f3', '__Inter_Fallback_f367f3'
}

