@font-face {
  font-family: "DM Sans";
  src: url("/fonts/DMSans-VariableFont_opsz_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans";
  src: url("/fonts/DMSans-Italic-VariableFont_opsz_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --red: #ff6b6b;
  --red-light: #ffd0d0;
  --red-glow: #ff6b6b33;
  --navy: #1a1a2e;
  --navy-soft: #2a2a4a;
  --bg: #fafaf8;
  --text: #1a1a1a;
  --text-soft: #6b6b7b;
  --radius: 16px;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px;
  opacity: 0.5;
}

/* ── UTILITY ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.accent {
  color: var(--red);
}
.bold {
  font-weight: 700;
}

/* ── HEADER / NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(250, 250, 248, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: padding 0.3s;
}
nav.scrolled {
  padding: 12px 0;
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 40px;
}
.nav-logo span {
  font-size: 1.35rem;
  letter-spacing: -0.5px;
}
.nav-cta {
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}
.nav-cta:hover {
  background: #2d2d52;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 26, 46, 0.25);
}

/* ── FOOTER ── */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-left img {
  width: 28px;
  height: 28px;
}
.footer-left span {
  font-size: 0.9rem;
  color: var(--text-soft);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--red);
}
