/* 1. Global Variables: Keep these to easily change theme colors later */
:root {
    --color-bg: #f2f2f2;
    --color-text: #050505;
    --color-accent: #FF4F00;
    --color-border: #050505;
}
html {
    scroll-padding-top: 7rem; /* header height */
    scroll-behavior: smooth;  /* optional */
}

/* 2. Base Resets: Keep these for font consistency */
body {
    font-family: 'Inter', sans-serif;
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;

}
h1, h2, h3, h4, .font-display {
    font-family: 'Archivo', sans-serif;
}

/* 3. Selection Color */
::selection {
    background: var(--color-accent);
    color: white;
}

/* 4. Animations: Easier to keep in CSS than Tailwind config */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.grid-bg {
    background-size: 40px 40px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
}

.card-brutal{
  background: white;
  border: 2px solid var(--color-border);
  box-shadow: 4px 4px 0px var(--color-border);
}

.step-number {
    background: black;
    color: white;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 12px;
    margin-right: 8px;
    flex-shrink: 0;
}
.tracking-widest{
    letter-spacing: 0.025em !important;
    font-weight: 900 !important;
}