/* ═══════════════════════════════════════════════
   TOPCO INTERNET MARKETING — SHARED STYLES
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #070707;
  --dark:    #0f0f0f;
  --mid:     #1a1a1a;
  --panel:   #141414;
  --white:   #ffffff;
  --gray:    #888;
  --lgray:   rgba(255,255,255,0.6);
  --accent:  #FF6B35;
  --accent2: #FFB800;
  --grd:     linear-gradient(135deg, #FF6B35 0%, #FFB800 100%);
  --grd-r:   linear-gradient(135deg, #FFB800 0%, #FF6B35 100%);
  --shadow:  0 0 60px rgba(255,107,53,0.25);
  --font-h:  'Barlow Condensed', sans-serif;
  --font-b:  'Barlow', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed; top: 0; left: 0;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: normal;
}
#cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,107,53,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .35s, height .35s, border-color .2s;
}
body:has(a:hover) #cursor,
body:has(button:hover) #cursor { width: 20px; height: 20px; }
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width: 60px; height: 60px; border-color: var(--accent); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  background: rgba(7,7,7,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .3s;
}
nav.scrolled { background: rgba(7,7,7,0.98); }

.nav-logo img { height: 36px; width: auto; object-fit: contain; display: block; }
.nav-logo { text-decoration: none; }

.nav-links {
  display: flex; gap: 40px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px; letter-spacing: .06em; text-transform: uppercase; font-weight: 500;
  position: relative; padding-bottom: 2px;
  transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--grd);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--grd);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase; font-weight: 600;
  text-decoration: none;
  cursor: none;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  transition: opacity .2s;
}
.nav-cta:hover { opacity: .85; }

/* ── FOOTER ── */
footer {
  background: #030303;
  padding: 72px 56px 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand img { height: 32px; margin-bottom: 20px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.35); line-height: 1.7; max-width: 220px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 12px; text-decoration: none;
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }

.footer-col-title {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); font-weight: 600; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }
.footer-accent-bar {
  height: 2px;
  background: var(--grd);
  margin-bottom: 0;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grd);
  color: var(--white);
  border: none; padding: 16px 36px;
  font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; cursor: none;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: box-shadow .3s, transform .2s;
  font-family: var(--font-b);
}
.btn-primary:hover { box-shadow: 0 8px 40px rgba(255,107,53,.4); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  background: transparent; padding: 14px 32px;
  font-size: 13px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  text-decoration: none; cursor: none;
  transition: border-color .2s, background .2s;
  font-family: var(--font-b);
}
.btn-outline:hover { border-color: var(--accent); background: rgba(255,107,53,.08); }

/* ── SECTION COMMONS ── */
.section-label {
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 16px;
  background: var(--grd); -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(42px,5.5vw,80px);
  font-weight: 900; text-transform: uppercase; line-height: .95;
}
.section-sub {
  font-size: 16px; line-height: 1.75;
  color: rgba(255,255,255,0.55);
  max-width: 540px;
}

/* ── SCROLL REVEAL ── */
.sr { opacity: 0; transform: translateY(50px); }
.sr.active { opacity: 1; transform: translateY(0); transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1); }
.sr-d1 { transition-delay: .08s !important; }
.sr-d2 { transition-delay: .16s !important; }
.sr-d3 { transition-delay: .24s !important; }
.sr-d4 { transition-delay: .32s !important; }
.sr-d5 { transition-delay: .40s !important; }

/* ── ACCENT LINE ── */
.accent-line {
  height: 3px; width: 48px;
  background: var(--grd);
  margin-bottom: 24px;
}

/* ── GRADIENT TEXT ── */
.grad-text {
  background: var(--grd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── GRADIENT BORDER CARD ── */
.grd-card {
  position: relative;
  background: var(--panel);
  padding: 40px 36px;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.grd-card::before {
  content: '';
  position: absolute; inset: 0;
  border: 1px solid transparent;
  background: linear-gradient(var(--panel),var(--panel)) padding-box,
              var(--grd) border-box;
  opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.grd-card:hover { transform: translateY(-6px); }
.grd-card:hover::before { opacity: 1; }

/* ── PAGE HERO COMMON ── */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 120px 56px 80px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.25) saturate(1.2);
  transition: transform 8s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1.04); }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,107,53,0.15) 0%, rgba(7,7,7,0.6) 60%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 800px; }

/* ── TAG CHIP ── */
.chip {
  display: inline-block;
  border: 1px solid rgba(255,107,53,0.4);
  color: var(--accent);
  padding: 5px 14px; font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; font-weight: 600;
  background: rgba(255,107,53,0.08);
}

/* ── DIVIDER ── */
.divider { height: 1px; background: rgba(255,255,255,0.06); margin: 0; }

/* ── PHOTO REVEAL ── */
.photo-wrap { position: relative; overflow: hidden; }
.photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: var(--grd);
  mix-blend-mode: color;
  opacity: 0;
  transition: opacity .4s;
}
.photo-wrap:hover::after { opacity: .12; }

/* ── GLOW ── */
.glow-accent {
  box-shadow: 0 0 0 0 rgba(255,107,53,0);
  transition: box-shadow .3s;
}
.glow-accent:hover { box-shadow: 0 0 40px rgba(255,107,53,.3); }

/* ── PAGE TRANSITION ── */
#page-veil {
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 9990;
  transform-origin: top;
  pointer-events: none;
}
