@import url('https://fonts.googleapis.com/css2?family=Stardos+Stencil:wght@400;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=DM+Mono:wght@400;500&display=swap');

:root {
  --navy: #09090E;
  --navy-mid: #12131F;
  --navy-light: #1A1C2E;
  --red: #2B60E8;
  --red-dark: #1A3FA0;
  --red-light: #4B7BFF;
  --white: #F0EDE6;
  --white-pure: #FFFFFF;
  --gold: #C4873A;
  --warm: #C4873A;
  --purple: #3C3560;
  --gray: #7A8898;
  --gray-light: #A0ADB8;

  --font-serif: 'Stardos Stencil', serif;
  --font-sans: 'DM Sans', sans-serif;

  --container: 1320px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
}

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

img {
  display: block;
  max-width: 100%;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--red);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--red);
  color: var(--white-pure);
}
.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245, 240, 232, 0.35);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(245, 240, 232, 0.08);
}

/* ── DIVIDER ── */
.divider {
  width: 60px;
  height: 2px;
  background: var(--red);
  margin: 0 auto 40px;
}

/* ── DART ICON SVG ── */
.dart-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(9, 9, 14, 0.97);
  box-shadow: 0 1px 0 var(--purple);
  backdrop-filter: blur(12px);
}

.navbar-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  color: var(--white);
  text-decoration: none;
}

.logo-bullseye {
  width: 32px;
  height: 32px;
}

.navbar .links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.navbar .links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}
.navbar .links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width var(--transition);
}
.navbar .links a:hover,
.navbar .links a.active {
  color: var(--white);
}
.navbar .links a:hover::after,
.navbar .links a.active::after {
  width: 100%;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navbar .navbar-logo, .navbar .links, .navbar .navbar-cta {
  flex: 1;
}

.navbar .navbar-cta {
  justify-content: flex-end;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  overflow: hidden;
  background: var(--red);
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.mobile-menu span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}
.mobile-menu.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu.open span:nth-child(2) { opacity: 0; }
.mobile-menu.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--red); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 70px 40px 30px;
  border-top: 1px solid var(--purple);
}

.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand-name span { color: var(--red); }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-contact p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
}
.footer-contact p strong {
  color: var(--white);
  font-weight: 500;
}

.footer-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}

.footer-bottom {
  max-width: var(--container);
  margin: 30px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--gray);
}

/* ── FOOTER SOCIAL ── */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 36px;
  height: 36px;
  background: var(--navy-light);
  border: 1px solid rgba(245,240,232,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all var(--transition);
}
.social-link:hover {
  color: var(--white);
  border-color: var(--red);
  background: rgba(43,96,232,0.1);
}

/* ── FLOATING CONTACT BUTTONS ── */
.floating-contact {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.float-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.55);
}
.float-btn::before {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 10px);
  background: rgba(9,9,14,0.92);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  white-space: nowrap;
  padding: 5px 10px;
  border: 1px solid rgba(245,240,232,0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.float-btn:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.float-wa  { background: #25D366; }
.float-vib { background: #7360F2; }

@media (max-width: 650px) {
  .floating-contact { bottom: 20px; right: 18px; }
  .float-btn { width: 46px; height: 46px; }
  .float-btn::before { display: none; }
}

/* ── SCROLL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .navbar { padding: 0 30px; }
  footer { padding: 60px 30px 30px; }
  .footer-grid { gap: 40px; }
}

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 850px) {
  .navbar .links { display: none; }
  .navbar-cta .btn { display: none; }
  .mobile-menu { display: flex; }
  .navbar { padding: 0 20px; }
}

@media (max-width: 650px) {
  footer { padding: 50px 20px 25px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}