/* DialUp Threads — Retro Tech Nostalgia Stylesheet */

:root {
  --neon-green: #00ff41;
  --neon-cyan: #00eeff;
  --neon-pink: #ff2d78;
  --neon-yellow: #ffe600;
  --dark-bg: #0a0a0f;
  --darker-bg: #05050a;
  --card-bg: #0f0f1a;
  --card-border: #1e1e3a;
  --text-primary: #e8e8f0;
  --text-muted: #888899;
  --accent: var(--neon-green);
  --font-mono: 'Courier New', Courier, monospace;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--dark-bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--darker-bg); }
::-webkit-scrollbar-thumb { background: var(--neon-green); border-radius: 3px; }

/* Marquee */
.marquee-bar {
  background: var(--neon-green);
  color: #000;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: bold;
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-inner {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neon-green);
  padding: 0 1.5rem;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}
.logo-icon { font-size: 1.5rem; }
.logo-text {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.logo-accent { color: var(--neon-green); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-family: var(--font-mono);
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--neon-green); }
.nav-cta {
  background: var(--neon-green) !important;
  color: #000 !important;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-weight: bold;
}
.nav-cta:hover { background: #00cc33 !important; }
.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
  font-size: 1.2rem;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  border-radius: 4px;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 1rem 0;
  gap: 1rem;
  border-top: 1px solid var(--card-border);
}
.mobile-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-mono);
  padding: 0.5rem 0;
}
.mobile-nav a:hover { color: var(--neon-green); }
.mobile-nav.open { display: flex; }

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
}

/* Hero */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 5rem 3rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.hero-bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,65,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,65,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: -1;
}
.hero-content { flex: 1; max-width: 600px; }
.hero-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--neon-green);
  border: 1px solid var(--neon-green);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--neon-green);
  text-shadow: 0 0 40px rgba(0,255,65,0.4);
  margin-bottom: 0.75rem;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--neon-cyan);
  font-family: var(--font-mono);
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-desc em { color: var(--neon-pink); font-style: normal; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* Buttons */
.btn-primary {
  display: inline-block;
  background: var(--neon-green);
  color: #000;
  font-family: var(--font-mono);
  font-weight: bold;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  border: 2px solid var(--neon-green);
}
.btn-primary:hover {
  background: transparent;
  color: var(--neon-green);
  box-shadow: 0 0 20px rgba(0,255,65,0.4);
}
.btn-primary.btn-large { padding: 1rem 2rem; font-size: 1rem; }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--neon-green);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid var(--neon-green);
  transition: all 0.2s;
}
.btn-secondary:hover {
  background: rgba(0,255,65,0.1);
  box-shadow: 0 0 15px rgba(0,255,65,0.3);
}

/* Modem animation */
.hero-modem {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}
.modem-text { margin-bottom: 0.4rem; }
.modem-bar {
  width: 250px;
  height: 6px;
  background: var(--card-border);
  border-radius: 3px;
  overflow: hidden;
}
.modem-fill {
  height: 100%;
  width: 0;
  background: var(--neon-green);
  border-radius: 3px;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--neon-green);
}

/* CRT Screen */
.hero-graphic { flex: 0 0 380px; }
.crt-screen {
  background: #001a00;
  border: 3px solid #334;
  border-radius: 12px;
  padding: 2px;
  box-shadow:
    0 0 30px rgba(0,255,65,0.2),
    inset 0 0 30px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.crt-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.1) 2px,
    rgba(0,0,0,0.1) 4px
  );
  pointer-events: none;
  z-index: 1;
}
.crt-inner {
  padding: 2rem;
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--neon-green);
  text-shadow: 0 0 8px var(--neon-green);
  line-height: 2;
}
.crt-line { opacity: 0; animation: fadeIn 0.5s forwards; }
.crt-line:nth-child(1) { animation-delay: 0.5s; }
.crt-line:nth-child(2) { animation-delay: 1.2s; }
.crt-line:nth-child(3) { animation-delay: 2.0s; }
.crt-line:nth-child(4) { animation-delay: 2.8s; }
.crt-line:nth-child(5) { animation-delay: 3.2s; }
.crt-line:nth-child(6) { animation-delay: 3.6s; }
.crt-line:nth-child(7) { animation-delay: 4.0s; }
@keyframes fadeIn { to { opacity: 1; } }

.blink { animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

@media (max-width: 900px) {
  .hero { flex-direction: column; padding: 3rem 1.5rem; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-graphic { display: none; }
  .modem-bar { margin: 0 auto; }
}

/* Features Bar */
.features-bar {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}
.feature-item {
  flex: 1;
  min-width: 220px;
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  border-right: 1px solid var(--card-border);
  text-align: center;
}
.feature-item:last-child { border-right: none; }
.feature-item strong { color: var(--text-primary); }

/* Section headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  color: var(--neon-green);
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* Shop Section */
.shop-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.product-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s;
  position: relative;
}
.product-card:hover {
  border-color: var(--neon-green);
  box-shadow: 0 0 20px rgba(0,255,65,0.15);
  transform: translateY(-4px);
}
.product-card.featured {
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px rgba(255,45,120,0.1);
}
.product-card.featured:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 30px rgba(255,45,120,0.2);
}
.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--neon-pink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  font-family: var(--font-mono);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  z-index: 1;
}
.product-img-wrap { aspect-ratio: 1; overflow: hidden; background: #111; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.product-card:hover .product-img-wrap img { transform: scale(1.05); }

.category-header {
  margin: 2.5rem 0 1rem;
  padding: 0 0.5rem;
}
.cat-label {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: bold;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 1px solid var(--neon-cyan);
  padding-bottom: 0.4rem;
  display: block;
}

.product-price {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--neon-green) !important;
  margin-bottom: 0.75rem !important;
  font-weight: bold;
}
.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  transition: transform 0.3s;
}
.product-card:hover .product-placeholder { transform: scale(1.05); }
.product-placeholder.modem { background: linear-gradient(135deg, #0a1628, #1a2a4a); }
.product-placeholder.netscape { background: linear-gradient(135deg, #0d1a2e, #1a3a6e); }
.product-placeholder.aol { background: linear-gradient(135deg, #1a0a0a, #3a1414); }
.product-placeholder.floppy { background: linear-gradient(135deg, #0a1a0a, #1a3a1a); }
.product-placeholder.geocities { background: linear-gradient(135deg, #1a0a1a, #2e1050); }
.product-placeholder.bluescreen { background: linear-gradient(135deg, #000080, #0000c0); }
.product-emoji { font-size: 4rem; }
.product-label {
  font-size: 0.7rem;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.4);
  font-weight: bold;
}
.product-info { padding: 1.25rem; }
.product-info h3 {
  font-family: var(--font-mono);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.product-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.btn-shop {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--neon-green);
  text-decoration: none;
  border: 1px solid var(--neon-green);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  transition: all 0.2s;
}
.btn-shop:hover {
  background: var(--neon-green);
  color: #000;
}
.product-card.featured .btn-shop {
  color: var(--neon-pink);
  border-color: var(--neon-pink);
}
.product-card.featured .btn-shop:hover {
  background: var(--neon-pink);
  color: #fff;
}
.shop-cta-wrap {
  text-align: center;
  padding: 2rem;
  border: 1px dashed var(--card-border);
  border-radius: 8px;
}
.shop-cta-wrap p {
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* About Section */
.about-section {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 5rem 2rem;
}
.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
.about-window {
  background: #c0c0c0;
  border: 2px solid;
  border-color: #fff #888 #888 #fff;
  border-radius: 2px;
  font-family: var(--font-mono);
  box-shadow: 4px 4px 0 #000;
  max-width: 420px;
  margin: 0 auto;
}
.window-bar {
  background: #000080;
  color: #fff;
  padding: 0.3rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
}
.win-btn {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.win-btn.red { background: #ff5f57; }
.win-btn.yellow { background: #ffbd2e; }
.win-btn.green { background: #28c840; }
.win-title { margin-left: 0.5rem; }
.window-body {
  padding: 1.25rem;
  background: #fff;
  color: #000;
  font-size: 0.85rem;
  line-height: 1.8;
}
.about-text h2 {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  color: var(--neon-green);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.about-text strong { color: var(--text-primary); }
.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--neon-cyan);
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Blog Teaser */
.blog-teaser {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s;
}
.blog-card:not(.coming-soon):hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0,238,255,0.1);
  transform: translateY(-3px);
}
.blog-card.coming-soon { opacity: 0.5; }
.blog-card-date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}
.blog-card h3 { font-size: 1rem; margin-bottom: 0.75rem; line-height: 1.5; }
.blog-card h3 a { color: var(--text-primary); text-decoration: none; }
.blog-card h3 a:hover { color: var(--neon-cyan); }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }
.read-more {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--neon-cyan);
  text-decoration: none;
}
.read-more:hover { text-decoration: underline; }
.read-more.muted { color: var(--text-muted); }
.blog-cta { text-align: center; }

/* Instagram */
.instagram-section {
  background: var(--card-bg);
  border-top: 1px solid var(--card-border);
  padding: 5rem 2rem;
  text-align: center;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  max-width: 900px;
  margin: 0 auto 2rem;
}
.insta-placeholder {
  aspect-ratio: 1;
  background: var(--darker-bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border-radius: 4px;
  transition: all 0.2s;
}
.insta-placeholder:hover { border-color: var(--neon-pink); }
.btn-insta {
  display: inline-block;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: bold;
  font-size: 0.9rem;
  padding: 0.75rem 2rem;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.btn-insta:hover { opacity: 0.85; }
@media (max-width: 600px) {
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Footer */
.site-footer {
  background: var(--darker-bg);
  border-top: 1px solid var(--card-border);
  padding: 3rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.social-links { display: flex; gap: 1rem; align-items: center; }
.social-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.2s;
}
.social-links a:hover { color: var(--neon-pink); }
.footer-links { display: flex; gap: 3rem; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--card-border);
  padding-top: 1.5rem;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  line-height: 1.6;
}
.footer-tiny { color: #555 !important; }
