/* 
 * Base CSS - Variables, Reset, Typography
 */

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

:root{
  --mint:#00C9A7;
  --mint-d:#00A98B;
  --mint-bg:#E6FAF6;
  --navy:#071827;
  --navy-dark:#0D1B2A;
  --navy2:#132638;
  --bg:#F8FAFC;
  --card:#FFFFFF;
  --border:#E5EEF2;
  --text:#0F172A;
  --text2:#3D5166;
  --muted:#64748B;
  --green:#22C55E;
  --red:#EF4444;
  --gold:#FFD166;
  --blue:#3B82F6;
  --purple:#8B5CF6;
  
  --r:12px;
  --sh:0 1px 3px rgba(0,0,0,.05),0 4px 14px rgba(0,0,0,.06);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 14px;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

input, select, textarea {
  font-family: inherit;
}

.dealonai-icon {
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  display: inline-block;
  vertical-align: -0.14em;
}

/* Global Container */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
