/*
 Theme Name:   Neocarbone Divi Child
 Theme URI:    https://example.com/
 Description:  Divi child theme with a fast spearfishing/ecommerce homepage inspired by a modern Lovable prototype and clean Kickbike-style structure.
 Author:       OpenAI
 Author URI:   https://openai.com/
 Template:     Divi
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  neocarbone-divi-child
*/

:root {
  --neo-bg: #08131d;
  --neo-surface: #0d1f2e;
  --neo-surface-2: #0b1620;
  --neo-text: #eaf4fb;
  --neo-muted: #9db4c6;
  --neo-accent: #1ea7ff;
  --neo-accent-2: #56c7ff;
  --neo-border: rgba(255,255,255,.08);
  --neo-radius: 18px;
  --neo-shadow: 0 18px 40px rgba(0,0,0,.25);
  --neo-width: 1200px;
}

body {
  background: var(--neo-bg);
  color: var(--neo-text);
}

.neo-home {
  background:
    radial-gradient(circle at top right, rgba(30,167,255,.18), transparent 28%),
    linear-gradient(180deg, #07121b 0%, #08131d 100%);
}

.neo-wrap {
  width: min(calc(100% - 32px), var(--neo-width));
  margin: 0 auto;
}

.neo-card {
  background: rgba(7, 18, 27, .82);
  border: 1px solid var(--neo-border);
  border-radius: var(--neo-radius);
  box-shadow: var(--neo-shadow);
}

.neo-topbar {
  border-bottom: 1px solid var(--neo-border);
  background: rgba(4,10,15,.65);
  backdrop-filter: blur(8px);
}

.neo-topbar .neo-wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--neo-muted);
}

.neo-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 19, 29, .82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neo-border);
}

.neo-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

.neo-brand {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .03em;
  color: #fff;
}

.neo-brand span {
  color: var(--neo-accent);
}

.neo-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.neo-menu a {
  color: #d9e9f5;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.neo-menu a:hover {
  color: var(--neo-accent-2);
}

.neo-hero {
  padding: 56px 0 32px;
}

.neo-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 24px;
  overflow: hidden;
}

.neo-hero-copy {
  padding: 56px 48px;
}

.neo-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(30,167,255,.14);
  color: var(--neo-accent-2);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.neo-title {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .94;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: #fff;
}

.neo-title .accent {
  color: var(--neo-accent);
}

.neo-subtitle {
  max-width: 560px;
  color: var(--neo-muted);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.neo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.neo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.neo-btn:hover {
  transform: translateY(-1px);
}

.neo-btn-primary {
  background: linear-gradient(135deg, #189ef2, #2bc0ff);
  color: #06131e;
}

.neo-btn-secondary {
  border-color: rgba(255,255,255,.18);
  color: #fff;
  background: transparent;
}

.neo-hero-media {
  min-height: 560px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.neo-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,19,29,.08) 0%, rgba(8,19,29,.22) 100%);
}

.neo-section {
  padding: 18px 0 72px;
}

.neo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.neo-feature,
.neo-cat,
.neo-about,
.neo-cta {
  padding: 28px;
}

.neo-feature h3,
.neo-cat h3,
.neo-about h2,
.neo-products h2,
.neo-cta h2 {
  color: #fff;
}

.neo-feature p,
.neo-cat p,
.neo-about p,
.neo-cta p,
.neo-section-lead {
  color: var(--neo-muted);
}

.neo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 12px;
  background: rgba(30,167,255,.12);
  color: var(--neo-accent-2);
  font-weight: 800;
}

.neo-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.neo-section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
}

.neo-cats-grid,
.neo-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.neo-cat {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(9,18,28,.2), rgba(5,12,19,.92)),
    radial-gradient(circle at top right, rgba(30,167,255,.22), transparent 36%),
    linear-gradient(135deg, #0d2436 0%, #07111b 100%);
}

.neo-cat a,
.neo-product-card a {
  color: var(--neo-accent-2);
  font-weight: 700;
  text-decoration: none;
}

.neo-products-grid .product,
.neo-product-card {
  padding: 0;
  overflow: hidden;
}

.neo-product-thumb {
  aspect-ratio: 1.05 / 1;
  background:
    radial-gradient(circle at 70% 20%, rgba(86,199,255,.3), transparent 25%),
    linear-gradient(135deg, #10344c 0%, #08131d 100%);
}

.neo-product-body {
  padding: 22px;
}

.neo-price {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  margin: 8px 0 14px;
}

.neo-about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
}

.neo-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.neo-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--neo-border);
  color: #dbeaf5;
}

.neo-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.neo-footer {
  border-top: 1px solid var(--neo-border);
  padding: 26px 0 42px;
  color: var(--neo-muted);
}

.neo-footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .neo-hero-grid,
  .neo-about-grid,
  .neo-grid-3,
  .neo-cats-grid,
  .neo-products-grid {
    grid-template-columns: 1fr;
  }

  .neo-hero-copy {
    padding: 34px 24px;
  }

  .neo-hero-media {
    min-height: 320px;
  }

  .neo-nav-inner {
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }
}
