
:root {
  --ui-purple: #6936F5;
  --ui-purple-dark: #3F1F9E;
  --ui-orange: #F48B2A;
  --ui-navy: #08152E;
  --ui-bg: #f6f6fb;
  --ui-light: #ffffff;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--ui-bg);
  color: var(--ui-navy);
  line-height: 1.6;
}

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

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

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

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

/* Header */
.site-header {
  background: var(--ui-light);
  box-shadow: 0 8px 24px rgba(8, 21, 46, 0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

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

.brand-logo {
  width: 52px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ui-purple-dark);
}

.brand-tagline {
  font-size: 0.75rem;
  color: rgba(8, 21, 46, 0.7);
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 0.15rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ui-purple), var(--ui-orange));
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at top left, rgba(244, 139, 42, 0.18), transparent 55%),
    radial-gradient(circle at top right, rgba(105, 54, 245, 0.18), transparent 55%);
  padding: 3.5rem 0 3rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  gap: 3rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--ui-orange);
  margin-bottom: 0.6rem;
}

.hero-title {
  font-size: clamp(2.1rem, 3vw + 1rem, 2.9rem);
  line-height: 1.15;
  margin: 0 0 0.9rem;
  color: var(--ui-navy);
}

.hero-highlight {
  background: linear-gradient(90deg, var(--ui-purple) 0%, var(--ui-orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 0.98rem;
  max-width: 34rem;
  color: rgba(8, 21, 46, 0.78);
  margin-bottom: 1.6rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--ui-purple), var(--ui-orange));
  color: var(--ui-light);
  box-shadow: 0 14px 30px rgba(105, 54, 245, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(105, 54, 245, 0.45);
}

.btn-outline {
  border: 1px solid rgba(8, 21, 46, 0.12);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  color: var(--ui-navy);
}

.hero-note {
  font-size: 0.8rem;
  color: rgba(8, 21, 46, 0.7);
}

/* Sections */
.section {
  padding: 2.5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

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

.section-title {
  font-size: 1.6rem;
  margin: 0 0 0.4rem;
  color: var(--ui-navy);
}

.section-subtitle {
  font-size: 0.95rem;
  max-width: 34rem;
  margin: 0 auto;
  color: rgba(8, 21, 46, 0.75);
}

/* Products grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

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

.product-card {
  background: var(--ui-light);
  border-radius: 1.3rem;
  padding: 1.1rem 1rem;
  box-shadow: 0 10px 30px rgba(8, 21, 46, 0.08);
  border: 1px solid rgba(8, 21, 46, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(8, 21, 46, 0.12);
  border-color: rgba(105,54,245,0.25);
}

.product-tag {
  display: inline-flex;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ui-purple);
  background: rgba(105,54,245,0.06);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--ui-navy);
}

.product-text {
  font-size: 0.82rem;
  color: rgba(8, 21, 46, 0.8);
}

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

.product-pill {
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(8, 21, 46, 0.04);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ui-purple-dark);
}

/* Info cards */
.info-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2.1rem;
}

.info-card {
  background: var(--ui-light);
  border-radius: 1.4rem;
  padding: 1.5rem 1.3rem;
  box-shadow: 0 10px 28px rgba(8, 21, 46, 0.08);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 0;
  font-size: 0.9rem;
}

.info-list li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.info-bullet {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-top: 0.4rem;
  background: linear-gradient(135deg, var(--ui-purple), var(--ui-orange));
}

/* Contact section */
.contact-section {
  background: var(--ui-navy);
  color: rgba(255,255,255,0.9);
  padding: 2.5rem 0 1.8rem;
  margin-top: 1.5rem;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 2.5rem;
  align-items: center;
}

.contact-title {
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
}

.contact-text {
  font-size: 0.9rem;
  max-width: 22rem;
}

.contact-box {
  background: rgba(8, 21, 46, 0.8);
  border-radius: 1.2rem;
  padding: 1.3rem 1.4rem;
  border: 1px solid rgba(244, 139, 42, 0.4);
}

.contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 0.8rem;
  font-size: 0.9rem;
}

.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
}

.contact-value {
  font-weight: 600;
}

.social-links {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.social-links a {
  color: var(--ui-light);
  margin-right: 1rem;
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 1.6rem;
  padding-top: 0.9rem;
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255,255,255,0.65);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner,
  .info-grid,
  .contact-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.4rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }

  .main-nav {
    width: 100%;
    flex-wrap: wrap;
    row-gap: 0.3rem;
  }

  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


.product-image {
  width: 100%;
  border-radius: 1rem;
  margin-bottom: 0.75rem;
  display: block;
}

.product-detail-hero {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.product-detail-hero img {
  max-width: 500px;
  width: 100%;
  border-radius: 1.2rem;
}
