/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #04060d;
  --bg2: #080c18;
  --surface: #0d1225;
  --border: rgba(255,255,255,.07);
  --cyan: #00e5ff;
  --cyan2: #0097a7;
  --green: #39ff84;
  --magenta: #ff3cac;
  --text: #e8eaf0;
  --muted: #7a80a0;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed; width: 10px; height: 10px;
  background: var(--cyan); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transition: transform .15s, background .2s;
  mix-blend-mode: screen;
}
#cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(0,229,255,.4);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transition: transform .35s cubic-bezier(.25,.8,.25,1), width .2s, height .2s;
}
body:has(a:hover) #cursor { transform: scale(3); background: var(--magenta); }
body:has(button:hover) #cursor { transform: scale(3); background: var(--green); }

/* ── CANVAS BACKGROUND ── */
#hero-canvas {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0;
  opacity: .45;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5vw;
  background: rgba(4,6,13,.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  animation: slideDown .6s ease both;
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: none; } }

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem; font-weight: 800;
  letter-spacing: .03em;
  color: var(--white); text-decoration: none;
  display: flex; align-items: center; gap: .5rem;
}
.logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 8px var(--cyan); }
  50% { box-shadow: 0 0 22px var(--cyan), 0 0 40px rgba(0,229,255,.3); }
}

nav ul { list-style: none; display: flex; gap: 2.2rem; }
nav ul a {
  text-decoration: none; font-size: .8rem;
  font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--muted);
  transition: color .2s; position: relative;
}
nav ul a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--cyan); transform: scaleX(0);
  transition: transform .25s; transform-origin: left;
}
nav ul a:hover { color: var(--cyan); }
nav ul a:hover::after { transform: scaleX(1); }
nav ul a.active { color: var(--cyan); }
nav ul a.active::after { transform: scaleX(1); }

.nav-cta {
  font-family: 'Syne', sans-serif;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; color: var(--bg);
  background: var(--cyan);
  padding: .65rem 1.6rem;
  clip-path: polygon(8px 0%, 100% 0%, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0% 100%, 0% 8px);
  transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--green); transform: translateY(-1px); }

/* ── BUTTONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }

.btn-primary {
  font-family: 'Syne', sans-serif;
  text-decoration: none; font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--bg); background: var(--cyan);
  padding: 1rem 2.4rem;
  clip-path: polygon(10px 0%, 100% 0%, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0% 100%, 0% 10px);
  transition: background .25s, transform .2s, box-shadow .25s;
}
.btn-primary:hover {
  background: var(--green); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(57,255,132,.25);
}

.btn-secondary {
  text-decoration: none; font-size: .82rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 1rem 2.4rem;
  transition: border-color .25s, color .25s;
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan); }

/* ── SECTION COMMON ── */
section { position: relative; z-index: 1; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .72rem; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--cyan);
  margin-bottom: 1rem;
}
.section-eyebrow::before { content: '//'; }

h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -.02em; color: var(--white);
  margin-bottom: 1.2rem;
}
h2 em { font-style: normal; color: var(--cyan); }

.section-sub {
  font-size: .95rem; font-weight: 300;
  line-height: 1.8; color: var(--muted);
  max-width: 54ch;
}

/* ── SCROLLING TICKER ── */
.ticker-wrap {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden; padding: .8rem 0;
  position: relative; z-index: 1;
}
.ticker {
  display: flex; gap: 3rem;
  animation: ticker 30s linear infinite;
  white-space: nowrap; width: max-content;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  font-family: 'Syne', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  display: flex; align-items: center; gap: .8rem;
}
.ticker-item span { color: var(--cyan); }

/* ── FOOTER ── */
footer {
  background: linear-gradient(180deg, var(--bg2) 0%, rgba(13, 18, 37, 0.8) 100%);
  border-top: 2px solid rgba(0, 229, 255, 0.2);
  padding: 2.5rem 5vw 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.3), transparent);
}

.footer-section {
  display: flex;
  flex-direction: column;
  position: relative;
}

.footer-section:not(:first-child) {
  padding-left: .5rem;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.footer-tagline {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 1rem;
  max-width: 35ch;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: auto;
  align-items: center;
}

.social-icons-image {
  width: 160px;
  height: 40px;
  object-fit: contain;
  cursor: pointer;
  transition: filter 0.3s ease, opacity 0.3s ease;
  filter: brightness(1);
}

.social-icons-image:hover {
  filter: brightness(1.2) drop-shadow(0 0 12px rgba(0, 229, 255, 0.4));
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 2px solid;
  border-radius: 9px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.5s ease;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.05);
}

.social-link:hover::before {
  left: 100%;
}

.social-link i {
  position: relative;
  z-index: 1;
}

/* LinkedIn */
.social-link.linkedin {
  border-color: #0A66C2;
  background: linear-gradient(135deg, rgba(10, 102, 194, 0.12), transparent);
  color: #0A66C2;
}

.social-link.linkedin::before {
  background: linear-gradient(90deg, transparent, rgba(10, 102, 194, 0.4), transparent);
}

.social-link.linkedin:hover {
  background: linear-gradient(135deg, #0A66C2, rgba(10, 102, 194, 0.8));
  border-color: #0A66C2;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(10, 102, 194, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Twitter */
.social-link.twitter {
  border-color: #1DA1F2;
  background: linear-gradient(135deg, rgba(29, 161, 242, 0.12), transparent);
  color: #1DA1F2;
}

.social-link.twitter::before {
  background: linear-gradient(90deg, transparent, rgba(29, 161, 242, 0.4), transparent);
}

.social-link.twitter:hover {
  background: linear-gradient(135deg, #1DA1F2, rgba(29, 161, 242, 0.8));
  border-color: #1DA1F2;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Facebook */
.social-link.facebook {
  border-color: #1877F2;
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.12), transparent);
  color: #1877F2;
}

.social-link.facebook::before {
  background: linear-gradient(90deg, transparent, rgba(24, 119, 242, 0.4), transparent);
}

.social-link.facebook:hover {
  background: linear-gradient(135deg, #1877F2, rgba(24, 119, 242, 0.8));
  border-color: #1877F2;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Instagram */
.social-link.instagram {
  border-color: #E4405F;
  background: linear-gradient(135deg, rgba(228, 64, 95, 0.12), transparent);
  color: #E4405F;
}

.social-link.instagram::before {
  background: linear-gradient(90deg, transparent, rgba(228, 64, 95, 0.4), transparent);
}

.social-link.instagram:hover {
  background: linear-gradient(135deg, #E4405F, #F5B041);
  border-color: #E4405F;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(228, 64, 95, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
  font-family: 'Syne', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--cyan);
  margin-bottom: 0.9rem;
  position: relative;
  padding-bottom: 0.6rem;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  list-style: none;
}

.footer-links a {
  text-decoration: none;
  font-size: .73rem;
  color: var(--muted);
  transition: all .3s ease;
  position: relative;
  padding-left: .5rem;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--cyan);
  transition: height .3s ease;
}

.footer-links a:hover {
  color: var(--cyan);
  transform: translateX(4px);
}

.footer-links a:hover::before {
  height: 100%;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.footer-contact p {
  font-size: .7rem;
  line-height: 1.5;
  color: var(--muted);
}

.footer-contact strong {
  color: var(--cyan);
  font-weight: 600;
  display: block;
  margin-bottom: .2rem;
  font-size: .72rem;
}

.footer-contact a {
  color: var(--text);
  text-decoration: none;
  transition: all .2s ease;
  font-size: .7rem;
}

.footer-contact a:hover {
  color: var(--cyan);
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.footer-bottom {
  background: linear-gradient(90deg, var(--bg) 0%, rgba(8, 12, 24, 0.8) 100%);
  border-top: 1px solid rgba(0, 229, 255, 0.15);
  padding: 1rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.footer-copy {
  font-size: .68rem;
  color: var(--muted);
}

.footer-policies {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer-policies a {
  font-size: .68rem;
  color: var(--muted);
  text-decoration: none;
  transition: all .2s ease;
  position: relative;
}

.footer-policies a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width .3s ease;
}

.footer-policies a:hover {
  color: var(--cyan);
}

.footer-policies a:hover::after {
  width: 100%;
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  nav ul { display: none; }
}

