@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --bg: #050912;
  --panel: #0a1326;
  --card: #0d172f;
  --accent: #ff8b3d;
  --accent-2: #00c9ff;
  --text: #f6f7fb;
  --muted: #9fb3d1;
  --border: #1c2946;
  --danger: #f05454;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(1050px 920px at 15% 18%, rgba(0, 201, 255, 0.16), transparent),
    radial-gradient(900px 740px at 85% 10%, rgba(255, 139, 61, 0.18), transparent),
    linear-gradient(140deg, #04070f 0%, #0b1429 55%, #050a15 100%);
  color: var(--text);
  line-height: 1.6;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.04), transparent 35%),
    linear-gradient(120deg, rgba(0, 201, 255, 0.15), rgba(255, 139, 61, 0.05)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 14px);
  opacity: 0.35;
  pointer-events: none;
}

a {
  color: var(--accent);
  text-decoration: none;
}

h1, h2, h3, h4 {
  margin: 0 0 0.6rem;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 12, 24, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand__logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 20% 20%, rgba(255, 139, 61, 0.2), rgba(0, 201, 255, 0.12));
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--accent);
  box-shadow: inset 0 0 20px rgba(0, 201, 255, 0.15);
}

.brand__logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

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

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

.nav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__link--dropdown::after {
  content: "▾";
  font-size: 0.8rem;
  margin-left: 0.3rem;
  color: var(--muted);
}

.dropdown {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  min-width: 240px;
  background: rgba(13, 23, 47, 0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  padding: 0.35rem 0.35rem;
  z-index: 15;
}

.dropdown__link {
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown__link:hover,
.dropdown__link:focus-visible {
  background: rgba(255, 139, 61, 0.12);
  color: var(--accent);
}

.nav__item--dropdown:hover .dropdown,
.nav__item--dropdown:focus-within .dropdown {
  display: flex;
}

.nav__link {
  padding: 0.35rem 0.75rem;
  border-radius: 10px;
  color: var(--text);
  position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav__link:hover {
  color: var(--accent);
  background: rgba(255, 139, 61, 0.12);
}

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: 10px;
}

.btn:focus-visible,
.nav__link:focus-visible,
.nav__toggle:focus-visible,
.dropdown__link:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(255, 139, 61, 0.15);
}

.hero {
  padding: 4.5rem 0 3.75rem;
  position: relative;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 201, 255, 0.12);
  color: var(--accent-2);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 30px rgba(0, 201, 255, 0.18);
}

.hero__title {
  font-size: clamp(2.1rem, 3.3vw, 3rem);
  margin-top: 0.5rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.service-actions {
  display: grid;
  gap: 0.5rem;
  margin-top: 1rem;
}

.service-actions__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.service-actions .btn {
  width: 100%;
}

.service-actions__full {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, #ff8b3d, #ffb347);
  box-shadow: var(--shadow);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(0, 201, 255, 0.08);
  color: #e4f6ff;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(255, 139, 61, 0.3);
}

.section {
  padding: 3.75rem 0;
}

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section__title {
  font-size: 1.6rem;
  letter-spacing: 0.2px;
}

.section__subtitle {
  color: var(--muted);
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(255, 139, 61, 0.25), rgba(0, 201, 255, 0.18));
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 139, 61, 0.35);
  box-shadow: 0 22px 70px rgba(0, 201, 255, 0.18);
}

.card:hover::before {
  opacity: 0.15;
}

.card__tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 201, 255, 0.14);
  color: var(--accent-2);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.card__title {
  margin-top: 0.3rem;
  font-size: 1.1rem;
  padding-right: 5.5rem;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  padding: 0.35rem 0;
  position: relative;
}

.list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8b3d, #00c9ff);
  display: inline-block;
}

.pill {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: rgba(0, 201, 255, 0.1);
  border: 1px solid rgba(0, 201, 255, 0.35);
  border-radius: 999px;
  color: #cfeaff;
  font-size: 0.85rem;
}

.product {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.product__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.1rem;
}

.product__image {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 20% 20%, rgba(0, 201, 255, 0.08), rgba(255, 139, 61, 0.06));
}

.product__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: 0.1px;
}

.availability__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
  box-shadow: 0 0 0 4px rgba(0, 201, 255, 0.12);
}

.availability--in {
  border-color: rgba(0, 201, 255, 0.4);
  background: rgba(0, 201, 255, 0.12);
  color: #c8f5ff;
}

.availability--in .availability__dot {
  background: #00c9ff;
}

.availability--limited {
  border-color: rgba(255, 139, 61, 0.4);
  background: rgba(255, 139, 61, 0.1);
  color: #ffd6be;
}

.availability--limited .availability__dot {
  background: #ff8b3d;
}

.availability--preorder {
  border-color: rgba(255, 139, 61, 0.35);
  background: rgba(255, 139, 61, 0.08);
  color: #ffdac2;
}

.availability--preorder .availability__dot {
  background: #ffb347;
}

.availability--out {
  border-color: rgba(240, 84, 84, 0.35);
  background: rgba(240, 84, 84, 0.12);
  color: #ffc2c2;
}

.availability--out .availability__dot {
  background: #f05454;
}

.availability--unknown .availability__dot {
  background: var(--muted);
}

.muted {
  color: var(--muted);
  letter-spacing: 0.1px;
}

.about {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.about__panel {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.6rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.contact__card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.6rem;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact__list li {
  margin-bottom: 0.75rem;
}

.form {
  display: grid;
  gap: 0.75rem;
}

.input {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input:focus {
  outline: 2px solid rgba(0, 201, 255, 0.3);
  border-color: var(--accent-2);
  box-shadow: 0 10px 30px rgba(0, 201, 255, 0.2);
}

.footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2.2rem;
  background: linear-gradient(120deg, rgba(0, 201, 255, 0.14), rgba(255, 139, 61, 0.12)), #050912;
  margin-top: auto;
  color: var(--muted);
}

.footer__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.status {
  font-size: 0.95rem;
  margin-top: 0.75rem;
}

.status--success {
  color: #9cf1ff;
}

.status--error {
  color: var(--danger);
}

.page--detail main {
  padding-bottom: 2.5rem;
}

.detail-hero {
  padding: 3.5rem 0 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
  align-items: center;
}

.detail-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 139, 61, 0.12);
  color: #ffd3b5;
  border: 1px solid rgba(255, 139, 61, 0.35);
  font-weight: 700;
  letter-spacing: 0.35px;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.stat {
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(0, 201, 255, 0.06);
  color: var(--text);
  box-shadow: var(--shadow);
}

.stat__label {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}

.detail-card {
  border: 1px solid var(--border);
  background: rgba(13, 23, 47, 0.9);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow);
}

.detail-card--glow {
  border-color: rgba(0, 201, 255, 0.35);
  background: linear-gradient(140deg, rgba(0, 201, 255, 0.12), rgba(13, 23, 47, 0.8));
}

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

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.detail-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  align-items: start;
  gap: 0.6rem;
  color: var(--muted);
}

.detail-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8b3d, #00c9ff);
  display: inline-block;
  margin-top: 0.35rem;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.step {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.02);
}

.step__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 139, 61, 0.14);
  color: #ffd6b7;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.cta-panel {
  border: 1px solid rgba(0, 201, 255, 0.3);
  background: linear-gradient(120deg, rgba(0, 201, 255, 0.14), rgba(255, 139, 61, 0.12));
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  display: grid;
  gap: 0.35rem;
  box-shadow: var(--shadow);
}

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

@media (max-width: 768px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(11, 19, 36, 0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 0.75rem 1.25rem;
    display: none;
  }

  .nav--open {
    display: flex;
  }

  .nav__toggle {
    display: inline-flex;
  }

  .service-actions__row {
    grid-template-columns: 1fr;
  }

  .dropdown {
    margin-top: 0.35rem;
    position: static;
    display: grid;
    gap: 0.3rem;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
  }
}
