@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap');

:root{

  --blue:        #0d3b66;
  --blue-2:      #16528c;
  --blue-light:  #e8f0f9;
  --yellow:      #ffc23c;
  --yellow-2:    #ffd873;

  --ink:         #0b1620;
  --ink2:        #12212f;
  --white:       #ffffff;
  --mist:        #e3e8ee;
  --dim:         #8b98a6;
  --paper:       #f6f8fb;

  --green:       #1f9d55;
  --red:         #e0403c;
  --orange:      #e08a1f;
  --dim2:        #a9b3bd;
  --ink3:        #eef1f5;

  --f-display: 'Space Grotesk', sans-serif;
  --f-sans:    'Space Grotesk', sans-serif;
  --f-mono:    'Space Grotesk', sans-serif;
  --f-thin:    'Space Grotesk', sans-serif;

  --nav-h: 64px;
  --nav-h-cat: 44px;
  --radius: 2px;
  --container: 1280px;

  --shadow-sm: 0 1px 3px rgba(11,22,32,.08);
  --shadow-md: 0 6px 24px rgba(11,22,32,.10);
  --shadow-lg: 0 16px 48px rgba(11,22,32,.16);
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-sans);
  font-size: 14px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}
html{ overflow-x: hidden; }

img{ max-width: 100%; display: block; }

a{ color: inherit; text-decoration: none; cursor: pointer; }

ul, ol{ list-style: none; margin: 0; padding: 0; }

button, input, select, textarea{
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button{ cursor: pointer; }

h1,h2,h3,h4,h5,h6{ margin: 0; font-family: var(--f-display); font-weight: 700; }

p{ margin: 0; }

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--f-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-fill{
  background: var(--blue);
  color: var(--white);
}
.btn-fill:hover{ background: var(--blue-2); }

.btn-accent{
  background: var(--yellow);
  color: var(--ink);
}
.btn-accent:hover{ background: var(--yellow-2); }

.btn-ghost{
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover{ background: var(--ink); color: var(--white); }

.section-title{
  font-family: var(--f-display);
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  text-align: center;
}
.section-sub{
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dim);
  text-align: center;
  margin-top: 6px;
}
.eyebrow{
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue-2);
}

.badge-new{
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--yellow);
  color: var(--ink);
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 9px;
  border-radius: 3px;
  z-index: 2;
}

::selection{ background: var(--yellow); color: var(--ink); }

::-webkit-scrollbar{ width: 8px; height: 8px; }
::-webkit-scrollbar-track{ background: var(--paper); }
::-webkit-scrollbar-thumb{ background: var(--mist); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover{ background: var(--dim); }

[dir="rtl"]{ direction: rtl; }
.ar{ font-family: var(--f-sans); direction: rtl; unicode-bidi: isolate; }

.pg{ display: none; }
.pg.on{ display: block; }
.hidden{ display: none !important; }

#toast{
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--white);
  padding: 13px 22px;
  border-radius: var(--radius);
  font-size: 13px;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: all .3s ease;
}
#toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 860px){
  input, select, textarea{
    font-size: 16px !important;
  }
}