:root {
  --bg: #f7f9ff;
  --surface: #ffffff;
  --text: #0a1020;
  --muted: #5a6a85;
  --brand: #00d4ff;
  --brand2: #ff4d8d;
  --accent: #111827;
  --line: rgba(10, 16, 32, 0.12);
  --shadow: 0 18px 38px rgba(10, 16, 32, 0.1);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.section {
  padding: 72px 0;
}

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

.section-title {
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  margin: 0 0 8px;
  line-height: 1.15;
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  color: var(--brand2);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 8px;
}

.angle-section {
  position: relative;
  overflow: hidden;
}

.angle-section::before {
  content: "";
  position: absolute;
  inset: -80px 0 auto;
  height: 120px;
  background: linear-gradient(120deg, rgba(0, 212, 255, 0.14), rgba(255, 77, 141, 0.08));
  transform: skewY(-3deg);
  z-index: -1;
}

.btn {
  border: 0;
  border-radius: 12px;
  height: 44px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  color: var(--accent);
  background: linear-gradient(135deg, var(--brand), #77e8ff);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.33);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-pink {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand2), #ff86b2);
  box-shadow: 0 8px 20px rgba(255, 77, 141, 0.33);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  background: rgba(247, 249, 255, 0.86);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  white-space: nowrap;
}

.logo svg {
  width: 20px;
  height: 20px;
  color: var(--brand);
  flex-shrink: 0;
}

.desktop-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: nowrap;
}

.desktop-nav a {
  font-weight: 600;
  color: var(--muted);
}

.desktop-nav a.active,
.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: absolute;
  left: 16px;
  right: 16px;
  top: calc(100% + 8px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 14px;
}

.mobile-menu.open {
  display: grid;
  gap: 10px;
  animation: drop 0.25s ease;
}

.mobile-menu a {
  padding: 8px 4px;
  font-weight: 600;
  color: var(--muted);
}

.mobile-menu a.active {
  color: var(--text);
}

.hero {
  width: 100%;
  min-height: 82vh;
  background:
    linear-gradient(125deg, rgba(0, 0, 0, 0.36), rgba(0, 212, 255, 0.16), rgba(255, 77, 141, 0.14)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0.32)),
    url("/images/daily-use-products.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  padding: 70px 0;
}

.hero-grid > * {
  min-width: 0;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  margin: 10px 0 16px;
  max-width: 620px;
  text-wrap: balance;
}

.hero p {
  margin: 0 0 24px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-chips {
  margin-top: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
  font-size: 13px;
}

.floating-cards {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.sprint-card {
  width: min(330px, 100%);
  background: rgba(17, 24, 39, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 18px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
}

.sprint-card h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.sprint-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--brand), var(--brand2));
  transform: translateX(-1px);
}

.drop-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.drop-card img,
.product-card img,
.deal-card img,
.about-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.drop-content,
.product-content,
.deal-content {
  padding: 14px;
}

.badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.tag {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(0, 212, 255, 0.12);
  color: #005970;
}

.price {
  font-weight: 800;
  color: var(--brand2);
}

.drop-title,
.product-title,
.deal-title {
  margin: 0;
  font-size: 1rem;
  overflow-wrap: anywhere;
}

.category-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.pill,
.filter-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--surface);
  font-weight: 600;
  font-size: 13px;
}

.pill.active,
.filter-chip.active {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.24), rgba(255, 77, 141, 0.2));
  border-color: rgba(0, 212, 255, 0.5);
}

.mini-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.mini-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  font-weight: 700;
  text-align: center;
}

.stagger-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card,
.deal-card,
.item-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stagger-grid .product-card:nth-child(2n) {
  transform: translateY(12px);
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
}

.faq-preview,
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq-btn {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}

.faq-body {
  padding: 0 14px 14px;
  color: var(--muted);
  display: none;
}

.faq-item.open .faq-body {
  display: block;
}

.cta-band {
  background: linear-gradient(125deg, var(--accent), #1f2937);
  color: var(--white);
  border-radius: 22px;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.page-hero {
  padding: 60px 0 36px;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.filters-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 20px;
}

.filter-panel,
.side-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.side-panel {
  position: sticky;
  top: 90px;
  height: fit-content;
}

.filter-group {
  margin-bottom: 16px;
}

.filter-group h3 {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.filter-toggle {
  display: none;
}

.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.deals-grid,
.items-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.item-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.item-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.item-card .deal-content {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 122px;
}

.item-summary {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  background: var(--surface);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, 0.56);
  display: none;
  place-items: center;
  z-index: 120;
  padding: 16px;
}

.modal.open {
  display: grid;
}

.modal-card {
  width: min(540px, 100%);
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
}

.modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  width: 34px;
  height: 34px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.steps {
  display: grid;
  gap: 10px;
}

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--accent);
  color: var(--white);
  border-radius: 12px;
  padding: 12px 14px;
  display: none;
  z-index: 140;
}

.toast.show {
  display: inline-block;
}

.site-footer {
  margin-top: 72px;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.2fr;
  gap: 18px;
  padding: 44px 0 24px;
}

.footer-col h4 {
  margin: 0 0 10px;
  font-size: 0.95rem;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.socials svg {
  width: 16px;
  height: 16px;
}

.footer-note {
  border-top: 1px solid var(--line);
  padding: 14px 0 20px;
  color: var(--muted);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.scroll-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
  display: none;
  z-index: 90;
}

.scroll-top.show {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@keyframes drop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .desktop-nav {
    gap: 16px;
  }

  .hero-grid,
  .about-layout,
  .contact-layout,
  .filters-layout {
    grid-template-columns: 1fr;
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    display: none;
  }

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

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

  .mini-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .side-panel {
    position: static;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }

  .nav-wrap {
    min-height: 64px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: none;
  }

  .filter-toggle {
    display: inline-flex;
  }

  .filter-panel.mobile-hidden {
    display: none;
  }

  .deals-grid,
  .items-grid,
  .stagger-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .item-card img {
    height: 210px;
  }

  .hero {
    min-height: calc(100vh - 64px);
    background-position: center;
  }

  .hero-grid {
    padding: 56px 0;
    gap: 18px;
  }

  .floating-cards {
    justify-items: start;
    width: 100%;
  }

  .sprint-card {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
    line-height: 1.08;
    margin-bottom: 12px;
  }

  .hero p {
    margin-bottom: 16px;
  }

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

  .hero-chip {
    font-size: 12px;
    padding: 7px 10px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .btn {
    height: 40px;
    padding: 8px 12px;
    font-size: 13px;
  }

  .logo {
    font-size: 1rem;
  }

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

  .item-card img {
    height: 190px;
  }

  .hero-grid {
    padding: 44px 0;
  }

  .section-subtitle,
  .footer-col a,
  .footer-col p {
    font-size: 15px;
  }

  .footer-note {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
