/* ==================================================
   FONT IMPORTS (LOCAL)
   ================================================== */

@font-face {
  font-family: "Brand-Regular";
  src: url("/fonts/MonumentExtended-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Brand-UltraBold";
  src: url("/fonts/MonumentExtended-Ultrabold.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Syne";
  src: url("/fonts/Syne-VariableFont_wght.ttf") format("truetype-variations");
  font-weight: 50 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Brand-Light";
  src: url("/fonts/HelveticaNeueLight.otf") format("opentype");
  font-weight: 50;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PP-Monument_Extd_Regular";
  src: url("/fonts/MonumentExtended-Ultrabold.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PP-Monument_Extd_BLACK";
  src: url("/fonts/PPMonumentExtended-Black.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


/* ==================================================
   ROOT VARIABLES
   ================================================== */

:root {
  --color-bg: #000000;
  --color-surface: #111827;
  --color-primary: #ff8f06;
  --color-text: #e5e7eb;

  --max-width: 1500px;
  --radius: 0.75rem;
  --padding-inline: clamp(1rem, 4vw, 2rem);
}

/* ==================================================
   RESET / BASE
   ================================================== */

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

body {
  margin: 0;
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: "Brand-Regular", system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

/* ==================================================
   CONTAINER
   ================================================== */

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--padding-inline);
}


/* ==================================================
   RESPONSIVE MARGIN UTILITIES
   ================================================== */

/* Margin Bottom */
.mb-1  { margin-bottom: clamp(0.25rem, 0.5vw, 0.5rem); }
.mb-2  { margin-bottom: clamp(0.5rem, 0.8vw, 0.75rem); }
.mb-3  { margin-bottom: clamp(0.75rem, 1vw, 1rem); }
.mb-4  { margin-bottom: clamp(1rem, 1.5vw, 1.5rem); }
.mb-5  { margin-bottom: clamp(1.25rem, 2vw, 2rem); }
.mb-6  { margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem); }
.mb-7  { margin-bottom: clamp(2rem, 3vw, 3rem); }
.mb-8  { margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.mb-9  { margin-bottom: clamp(3rem, 7vw, 9rem); }
.mb-10 { margin-bottom: clamp(7rem, 10vw, 12rem); }
.mb-15 { margin-bottom: clamp(8rem, 14vw, 16rem); }

/* Margin Top */
.mt-1  { margin-top: clamp(0.25rem, 0.5vw, 0.5rem); }
.mt-2  { margin-top: clamp(0.5rem, 0.8vw, 0.75rem); }
.mt-3  { margin-top: clamp(0.75rem, 1vw, 1rem); }
.mt-4  { margin-top: clamp(1rem, 1.5vw, 1.5rem); }
.mt-5  { margin-top: clamp(1.25rem, 2vw, 2rem); }
.mt-6  { margin-top: clamp(1.5rem, 2.5vw, 2.5rem); }
.mt-7  { margin-top: clamp(2rem, 3vw, 3rem); }
.mt-8  { margin-top: clamp(2.5rem, 4vw, 4rem); }
.mt-9  { margin-top: clamp(3rem, 7vw, 9rem); }
.mt-10 { margin-top: clamp(7rem, 10vw, 12rem); }
.mt-15 { margin-top: clamp(8rem, 14vw, 16rem); }



/* ==================================================
   TYPOGRAPHY — EXPLICIT PER HEADING
   ================================================== */

h1 {
  font-family: "Brand-Regular", system-ui, sans-serif;
  font-size: clamp(1.6rem, 6.0vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.0em;
}

h2 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.5rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h3 {
  font-family: "Brand-Regular", system-ui, sans-serif;
  font-size: clamp(1.1rem, 3.0vw, 1.7rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: 0.07em;
}

h4 {
  font-family: "Syne", system-ui, sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 0.5em;
}

h5 {
  font-family: "Brand-UltraBold", system-ui, sans-serif;
  font-size: clamp(1.0rem, 2vw, 1.3rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.08em;
  margin: 0 0 0.5em;
}


p {
  font-family: "Brand-Light", system-ui, sans-serif;
  font-size: clamp(1.2rem, 2vw, 2rem);
  font-weight: 50;
  margin: 0 0 1em;
}

.caps{
  text-transform: uppercase;
}

b,
strong {
  font-family: "Brand-UltraBold", system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(0.6rem, 1.5vw, 1.2rem);
  line-height: 1.2;
  letter-spacing: 0.1em;
}

span {
  font-family: "Brand-Light", system-ui, sans-serif;
  font-size: clamp(0.5em, 1em + 0.2vw, 1.5em);
  line-height: 1.2;
  letter-spacing: 0.1em;
}


/* ==================================================
   PRIMARY PILL BUTTON (INVERT ON HOVER)
   ================================================== */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  text-decoration: none;
  font-family: "Brand-Regular", system-ui, sans-serif;
  font-size: clamp(0.80rem, 0.7rem + 0.3vw, 1.5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;

  padding: clamp(0.65rem, 1vw, 0.85rem)
           clamp(1.2rem, 2.5vw, 1.75rem);

  border-radius: 9999px;
  border: 2px solid #ffffff;

  background-color: transparent;
  color: #ffffff;

  cursor: pointer;
  user-select: none;
  white-space: nowrap;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

/* Arrow */
.btn-primary::after {
  content: "";
  width: 1em;
  height: 1em;
  background: url("/svg/arrow-right.svg") no-repeat center / contain;

  transition:
    transform 0.25s ease,
    filter 0.2s ease;
}

/* Hover */
.btn-primary:hover {
  background-color: #ffffff;
  color: #020617;
}

/* Rotate arrow on hover */
.btn-primary:hover::after {
  transform: rotate(45deg);
  filter: invert(1); /* makes arrow dark if SVG is white */
}

/* Active / Clicked */
.btn-primary:active {
  transform: scale(0.97);
}

/* Focus (keyboard) */
.btn-primary:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgb(255, 255, 255);
}

/* Disabled */
.btn-primary:disabled,
.btn-primary[aria-disabled="true"] {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.pp-mon{
  font-family: "Brand-UltraBold", system-ui, sans-serif !important;
  letter-spacing: 0.02em;
}
.social-icons a{
  text-decoration: none !important;
}