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

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

:root {
  --navy:     #040d1e;
  --deep:     #060e22;
  --blue:     #1557ff;
  --electric: #3b82f6;
  --neon:     #60a5fa;
  --ice:      #bfdbfe;
  --white:    #eef4ff;
  --muted:    #7ba3cc;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  color: var(--white);
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── ANIMATED GRID BACKGROUND ── */
.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(21,87,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,87,255,0.055) 1px, transparent 1px);
  background-size: 52px 52px;
  animation: gridMove 22s linear infinite;
}

@keyframes gridMove {
  0%   { background-position: 0 0; }
  100% { background-position: 52px 52px; }
}

/* ── GRAIN OVERLAY ── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 500;
  padding: 0 2.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(4, 13, 30, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(21, 87, 255, 0.2);
}

header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 40%, var(--electric) 60%, transparent 100%);
  animation: glow-line 4s ease-in-out infinite;
}

@keyframes glow-line {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.logo-wrap img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: 'Anton', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.logo-text em {
  font-style: normal;
  color: var(--electric);
}

nav { display: flex; gap: 2.5rem; align-items: center; }

nav a {
  text-decoration: none;
  color: var(--muted);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--electric);
  transition: width 0.25s;
}

nav a:hover, nav a.active { color: var(--white); }
nav a:hover::after, nav a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); transition: all 0.3s; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  padding: 0.9rem 2.4rem;
  transition: all 0.22s;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}
.btn-primary:hover {
  background: var(--electric);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(21,87,255,0.55), 0 0 80px rgba(21,87,255,0.15);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  outline: 1px solid rgba(255,255,255,0.28);
  outline-offset: -1px;
}
.btn-ghost:hover {
  outline-color: var(--electric);
  color: var(--electric);
  box-shadow: 0 0 28px rgba(59,130,246,0.18);
}

/* ── HERO ── */
.hero {
  position: relative;
  z-index: 1;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 2rem 5rem;
  overflow: hidden;
}

/* Big radial glow blob */
.hero::before {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 800px;
  background: radial-gradient(ellipse, rgba(21,87,255,0.2) 0%, rgba(21,87,255,0.04) 50%, transparent 70%);
  pointer-events: none;
  animation: breathe 6s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
  50% { transform: translateX(-50%) scale(1.08); opacity: 0.8; }
}

/* Diagonal slash at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 110px;
  background: var(--deep);
  clip-path: polygon(0 65%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 2;
}

/* Floating diagonal lines */
.hero-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-lines::before,
.hero-lines::after {
  content: '';
  position: absolute;
  width: 1px;
  height: 140%;
  background: linear-gradient(180deg, transparent, rgba(21,87,255,0.3), transparent);
  animation: lineDrift 8s ease-in-out infinite;
}
.hero-lines::before { left: 22%; transform: rotate(-15deg); animation-delay: 0s; }
.hero-lines::after  { right: 22%; transform: rotate(15deg); animation-delay: -4s; }

@keyframes lineDrift {
  0%, 100% { opacity: 0.4; transform: rotate(-15deg) translateY(0); }
  50% { opacity: 0.8; transform: rotate(-15deg) translateY(-20px); }
}

.hero-tag {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--electric);
  border: 1px solid rgba(59,130,246,0.3);
  padding: 0.35rem 1.1rem;
  margin-bottom: 2rem;
  background: rgba(21,87,255,0.07);
  clip-path: polygon(7px 0%, 100% 0%, calc(100% - 7px) 100%, 0% 100%);
  animation: fadeUp 0.6s ease both;
}

.hero-tag .dot {
  width: 6px; height: 6px;
  background: var(--electric);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(59,130,246,0.5); }
  50% { opacity: 0.6; transform: scale(0.7); box-shadow: 0 0 0 4px rgba(59,130,246,0); }
}

.hero h1 {
  position: relative;
  z-index: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(5.5rem, 16vw, 12rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero h1 .line-outline {
  display: block;
  -webkit-text-stroke: 2px rgba(255,255,255,0.7);
  color: transparent;
}
.hero h1 .line-solid { display: block; color: var(--white); }
.hero h1 .line-blue {
  display: block;
  color: var(--electric);
  text-shadow: 0 0 80px rgba(59,130,246,0.6), 0 0 160px rgba(59,130,246,0.2);
}

.hero-sub {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.75;
  margin: 2rem auto 2.5rem;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── FEATURES ── */
.features {
  position: relative;
  z-index: 1;
  background: var(--deep);
  padding: 6rem 2rem 5rem;
}

.features-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  border: 1px solid rgba(21,87,255,0.12);
}

.feature-card {
  background: rgba(255,255,255,0.018);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.feature-card:hover { background: rgba(21,87,255,0.055); }

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--electric));
  transition: width 0.4s ease;
}
.feature-card:hover::before { width: 100%; }

.feat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 4rem;
  color: rgba(21,87,255,0.1);
  line-height: 1;
  margin-bottom: 0.25rem;
  transition: color 0.3s;
}
.feature-card:hover .feat-num { color: rgba(21,87,255,0.22); }

.feature-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── CTA BAND ── */
.cta-band {
  position: relative;
  z-index: 1;
  padding: 8rem 2rem;
  text-align: center;
  background: linear-gradient(145deg, #091840 0%, #040d1e 55%, #091840 100%);
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 110%, rgba(21,87,255,0.22) 0%, transparent 65%);
  pointer-events: none;
}

/* Giant watermark word */
.cta-band .wm {
  position: absolute;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(8rem, 22vw, 18rem);
  color: rgba(21,87,255,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -0.02em;
  user-select: none;
}

.cta-band h2 {
  position: relative;
  z-index: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.cta-band p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  z-index: 1;
  background: linear-gradient(160deg, #0b1f55 0%, var(--navy) 70%);
  padding: 4.5rem 2rem 5.5rem;
  text-align: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 90% at 50% 130%, rgba(21,87,255,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--navy);
  clip-path: polygon(0 100%, 100% 20%, 100% 100%);
}

.page-hero h1 {
  position: relative;
  z-index: 1;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(3rem, 9vw, 6.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.page-hero p {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 0.75rem;
}

/* ── PRODUCT PAGE ── */
.product-section {
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 4.5rem auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.product-image-wrap {
  position: relative;
  background: linear-gradient(135deg, rgba(21,87,255,0.09) 0%, rgba(4,13,30,0.95) 100%);
  border: 1px solid rgba(21,87,255,0.2);
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Corner brackets */
.product-image-wrap::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 44px; height: 44px;
  border-top: 3px solid var(--blue);
  border-left: 3px solid var(--blue);
  z-index: 2;
  pointer-events: none;
}

.corner-br {
  position: absolute;
  bottom: -1px; right: -1px;
  width: 44px; height: 44px;
  border-bottom: 3px solid var(--blue);
  border-right: 3px solid var(--blue);
  z-index: 2;
  pointer-events: none;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-image-wrap:hover img { transform: scale(1.05); }

.product-details { padding-top: 0.5rem; }

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--electric);
  background: rgba(21,87,255,0.1);
  border: 1px solid rgba(21,87,255,0.28);
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.badge-dot {
  width: 5px; height: 5px;
  background: var(--electric);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

.product-details h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 3.25rem;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 1rem;
}

.product-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 2.75rem;
  color: var(--electric);
  text-shadow: 0 0 40px rgba(59,130,246,0.45);
  margin-bottom: 1.5rem;
}

.product-desc {
  font-size: 0.925rem;
  color: var(--muted);
  line-height: 1.82;
  margin-bottom: 2rem;
  border-left: 2px solid rgba(21,87,255,0.35);
  padding-left: 1.1rem;
}

.product-specs {
  list-style: none;
  margin-bottom: 2rem;
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.72rem 0;
  border-bottom: 1px solid rgba(21,87,255,0.1);
  color: var(--muted);
}

.product-specs li span:last-child { color: var(--white); font-weight: 500; }

.buy-btn {
  width: 100%;
  text-align: center;
  padding: 1.15rem;
  font-size: 1rem;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

/* ── ABOUT PAGE ── */
.about-section {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.about-section h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 2.75rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.about-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.about-divider::before {
  content: '';
  width: 48px; height: 3px;
  background: var(--blue);
  clip-path: polygon(4px 0%, 100% 0%, calc(100% - 4px) 100%, 0% 100%);
}
.about-divider::after {
  content: '';
  flex: 1; height: 1px;
  background: rgba(21,87,255,0.15);
}

.about-section p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-section p strong { color: var(--white); font-weight: 500; }

.about-callout {
  background: linear-gradient(135deg, rgba(21,87,255,0.1) 0%, rgba(4,13,30,0.6) 100%);
  border: 1px solid rgba(21,87,255,0.22);
  padding: 2.5rem;
  margin-top: 3rem;
  position: relative;
  overflow: hidden;
}

.about-callout::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 50px; height: 50px;
  border-top: 3px solid var(--blue);
  border-left: 3px solid var(--blue);
}

.about-callout h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.about-callout p { color: var(--muted); margin-bottom: 1.5rem; }

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  background: var(--deep);
  border-top: 1px solid rgba(21,87,255,0.14);
  color: var(--muted);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  margin-top: auto;
}

footer a { color: var(--electric); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--white); }
footer strong { color: var(--white); font-weight: 500; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(4,13,30,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(21,87,255,0.18);
  }
  nav.open { display: flex; }
  .hamburger { display: flex; }
  .product-section { grid-template-columns: 1fr; gap: 2.5rem; margin: 2rem auto; }
  .hero { min-height: 80vh; padding: 5rem 1.5rem 5rem; }
}
