:root {
  --bg: #050711;
  --bg-alt: #0b0f1f;
  --accent: #ffb52d;
  --accent-soft: rgba(255, 181, 45, 0.15);
  --text: #f5f5f7;
  --muted: #9aa0c3;
  --card: #101426;
  --border: #262b43;
  --danger: #ff4b6a;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.45);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #121739 0, #050711 60%);
  color: var(--text);
  min-height: 100vh;
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

/* LAYOUT */

.shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER / NAV */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(5, 7, 17, 0.95), transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.logo-badge {
  width: 32px;
  height: 32px;
  border-radius: 30% 70% 65% 35%;
  background: radial-gradient(circle at 30% 0, #ffffff, #ffb52d 40%, #ff4b6a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 0.3rem 0.2rem;
  color: var(--muted);
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--danger));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Dropdown Menu */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

/* Desktop dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  z-index: 100;
  padding: 0.5rem 0;
  min-width: 180px;
}

/* Add invisible bridge to prevent dropdown from closing */
.dropdown-content::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
  background: transparent;
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--text) !important;
  transition: background 0.2s ease;
}

.dropdown-content a:hover {
  background: var(--accent-soft);
}

/* Show dropdown on hover (desktop only) */
@media (min-width: 901px) {
  .nav-dropdown:hover .dropdown-content {
    display: block;
  }
}

.nav-link-main {
  padding: 0.3rem 0.2rem;
  color: var(--muted);
  position: relative;
  transition: color 0.2s ease;
  cursor: pointer;
}

.nav-link-main::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--danger));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-link-main:hover {
  color: var(--text);
}

.nav-link-main:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 181, 45, 0.7);
  background: radial-gradient(circle at top left, rgba(255, 181, 45, 0.25), transparent 55%);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
}

.nav-cta span.icon {
  font-size: 1.1rem;
}

/* Mobile nav */

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  color: var(--text);
  font-size: 0.9rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
  }

  .nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.75rem 0 1.4rem;
    font-size: 0.95rem;
  }

  .nav-mobile a {
    color: var(--muted);
  }

  .nav-mobile a:hover {
    color: var(--text);
  }

  .nav-mobile.show {
    display: flex;
  }
}

/* HERO */

#home {
  padding: 4rem 0 3rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  max-width: 800px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, rgba(255, 181, 45, 0.12), rgba(16, 20, 38, 0.95));
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.hero-kicker span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #00e28a;
  box-shadow: 0 0 10px rgba(0, 226, 138, 0.9);
}

.hero-title {
  font-size: clamp(2.3rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero-title span.highlight {
  background: linear-gradient(90deg, #ffb52d, #ff4b6a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 32rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  align-items: center;
}

@media (max-width: 600px) {
  .hero-ctas {
    gap: 0.5rem;
  }
  
  .btn-primary,
  .btn-ghost {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 450px) {
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .btn-primary,
  .btn-ghost {
    width: 100%;
  }
}

.btn-primary {
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-pill);
  border: none;
  background: linear-gradient(135deg, #ffb52d, #ff4b6a);
  color: #050711;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: var(--shadow-soft);
  white-space: nowrap;
}

.btn-ghost {
  padding: 0.85rem 1.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(9, 13, 32, 0.9);
  color: var(--text);
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.btn-secondary {
  padding: 0.85rem 1.3rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(9, 13, 32, 0.9);
  color: var(--text);
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.hero-footnote {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.3rem;
  flex-wrap: wrap;
}

.hero-footnote span.badge {
  padding: 0.15rem 0.6rem;
  background: rgba(0, 226, 138, 0.12);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 226, 138, 0.6);
  font-size: 0.75rem;
  color: #8bf5c4;
}

.hero-proof {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.proof-value {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
}

.proof-label {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 200px;
}

.hero-visual {
  background: radial-gradient(circle at top, rgba(255, 181, 45, 0.2), transparent 55%),
              linear-gradient(145deg, var(--bg-alt), #050711);
  border-radius: 26px;
  padding: 1.5rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero-visual-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-visual-tag {
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  background: rgba(5, 7, 17, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
}

.hero-gauge {
  margin-top: 0.4rem;
  background: radial-gradient(circle at top, #151b3a, #050711);
  border-radius: 20px;
  padding: 1.2rem 1rem 0.9rem;
  border: 1px solid var(--border);
}

.gauge-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.4rem;
  font-size: 0.8rem;
}

.gauge-bar {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #1b213d, #1b213d);
  overflow: hidden;
  margin-bottom: 0.3rem;
}

.gauge-bar-fill {
  position: absolute;
  inset: 0;
  width: 72%;
  background: linear-gradient(90deg, #13e28a, #ffb52d);
  box-shadow: 0 0 18px rgba(19, 226, 138, 0.7);
}

.gauge-scale {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--muted);
  opacity: 0.85;
}

.hero-mini-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.8rem;
}

.mini-card {
  background: rgba(12, 18, 45, 0.9);
  border-radius: 14px;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.mini-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.82rem;
}

.mini-card span {
  color: var(--muted);
}

.hero-badge-floating {
  position: absolute;
  bottom: 1.2rem;
  right: 1.3rem;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  border: 1px solid rgba(255, 181, 45, 0.7);
  font-size: 0.76rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-badge-floating span.icon {
  font-size: 1rem;
}

@media (max-width: 600px) {
  #home {
    padding-top: 3rem;
  }
  .hero-title {
    font-size: 2rem;
  }
}

/* SECTIONS */

section.section {
  padding: 3.5rem 0;
}

section.section:nth-of-type(odd) {
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
}

.section-header {
  margin-bottom: 1.8rem;
}

.section-kicker {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.section-description {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 32rem;
}

/* PRODUCTS */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.3rem;
}

.product-card {
  background: rgba(10, 14, 35, 0.95);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.2rem 1.1rem 1.1rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.product-tag {
  font-size: 0.75rem;
  color: var(--muted);
}

.product-name {
  font-size: 1.05rem;
  font-weight: 600;
}

.product-body {
  font-size: 0.9rem;
  color: var(--muted);
}

.product-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.3rem;
}

.pill {
  padding: 0.12rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  color: var(--muted);
}

/* ABOUT */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
}

.about-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.7rem;
}

.about-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.about-list li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.about-list span.bullet {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.about-panel {
  background: rgba(8, 13, 33, 0.95);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.1rem 1rem 1.2rem;
  box-shadow: var(--shadow-soft);
  font-size: 0.85rem;
  color: var(--muted);
}

.about-panel-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  font-size: 0.86rem;
}

.about-panel-row strong {
  color: var(--text);
}

@media (max-width: 900px) {
  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* CONTACT */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.2rem;
}

.contact-card {
  background: rgba(10, 14, 35, 0.95);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.2rem 1.1rem;
}

.contact-card p {
  font-size: 0.93rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.7rem;
}

.field {
  display: grid;
  gap: 0.25rem;
  font-size: 0.8rem;
}

.field label {
  color: var(--muted);
}

.field input,
.field textarea {
  background: rgba(5, 7, 17, 0.9);
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 0.6rem 0.7rem;
  color: var(--text);
  font-size: 0.9rem;
  resize: vertical;
  min-height: 42px;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255, 181, 45, 0.4);
}

.contact-meta {
  font-size: 0.85rem;
  color: var(--muted);
  display: grid;
  gap: 0.4rem;
}

.contact-meta div {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.contact-meta div span.emoji {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* FOOTER */

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0 2rem;
  font-size: 0.8rem;
  color: var(--muted);
}

footer .shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ================================
   MOBILE TAP-TO-OPEN DROPDOWN FIX
   ================================ */

@media (max-width: 900px) {
  .nav-dropdown.dropdown-open .dropdown-content {
    display: block !important;
    position: relative;
    transform: none;
    left: 0;
    margin-top: 0.5rem;
    width: 100%;
    border-radius: 12px;
    box-shadow: none;
    
  }
}""
.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card-link .product-card {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card-link .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.product-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card-link .product-card {
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.product-card-link .product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive: stack on smaller screens */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}