:root {
  --black: #0b0b0b;
  --white: #f5f4f0;
  --cream: #e9e5dc;
  --accent: #00D9FF;
  --line: rgba(20, 20, 20, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --pad: clamp(20px, 3.4vw, 64px);
  --font-main: "Manrope", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--black);
  font-family: var(--font-main);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

.section-dark { background: var(--black); color: var(--white); }
.section-light { background: var(--white); color: var(--black); }
.section-cream { background: var(--cream); color: var(--black); }

/* Cursor */
.cursor, .cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  mix-blend-mode: difference;
}
.cursor {
  width: 34px;
  height: 34px;
  border: 1px solid #fff;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s;
}
.cursor-dot {
  width: 4px;
  height: 4px;
  background: #fff;
  transform: translate(-50%, -50%);
}
body.cursor-hover .cursor {
  width: 64px;
  height: 64px;
}

/* Page Loader */
.loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #0b0b0b;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}
.loader.done { transform: translateY(-100%); }
.loader__logo img {
  width: min(70vw, 380px);
  filter: invert(1);
}
.loader__line {
  position: absolute;
  bottom: 12%;
  width: 180px;
  height: 2px;
  background: #333;
  overflow: hidden;
}
.loader__line span {
  display: block;
  height: 100%;
  background: var(--accent);
  animation: load 1.1s ease forwards;
}
@keyframes load { from { width: 0; } to { width: 100%; } }

/* Site Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 22px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  mix-blend-mode: difference;
}
.brand-mark { display: flex; align-items: center; }
.brand-mark__img { height: 26px; width: auto; filter: invert(1); }

.desktop-nav { display: flex; align-items: center; gap: 36px; font-size: 12px; font-weight: 600; letter-spacing: 0.05em; }
.desktop-nav a, .text-link { position: relative; }
.desktop-nav a:after, .text-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s;
}
.desktop-nav a:hover:after, .text-link:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

.cart-trigger {
  font-size: 11px;
  font-weight: 700;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 16px;
  border-radius: 20px;
  color: #fff;
  transition: background 0.3s;
}
.cart-trigger:hover { background: #fff; color: #000; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.cart-trigger--mobile { display: none; }

.menu-toggle {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
}
.menu-toggle i {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  position: relative;
}
.menu-toggle i:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 1px;
  background: currentColor;
  left: 0;
  top: 5px;
  transition: 0.3s;
}
.menu-toggle[aria-expanded="true"] i { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] i:after { top: 0; transform: rotate(90deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--accent);
  color: #101010;
  padding: 130px var(--pad) 42px;
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.18, 1);
  display: flex;
  justify-content: space-between;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu__inner { display: flex; flex-direction: column; }
.mobile-menu__inner a {
  font-size: clamp(40px, 7vw, 100px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.05em;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  padding: 12px 0;
}
.mobile-menu__inner em { font-size: 12px; font-style: normal; vertical-align: top; margin-left: 12px; opacity: 0.7; }
.mobile-menu__meta { align-self: flex-end; font-size: 11px; line-height: 1.7; font-weight: 600; }

/* Hero Section */
.hero { height: 100svh; min-height: 700px; position: relative; overflow: hidden; }
.hero__media { position: absolute; inset: -8%; }
.hero__media img { filter: grayscale(100%); transform: scale(1.06); }
.hero__shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.85)); }
.hero__content { position: relative; z-index: 2; height: 100%; padding: 130px var(--pad) 38px; display: flex; flex-direction: column; }
.hero__eyebrow { font-size: 11px; letter-spacing: 0.16em; font-weight: 600; opacity: 0.8; }
.hero__title { margin: auto 0 0; font-size: clamp(90px, 18vw, 340px); line-height: 0.72; letter-spacing: -0.09em; font-weight: 800; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line>span { display: block; transform: translateY(110%); animation: titleIn 1.1s 1s cubic-bezier(0.2, 0.75, 0.2, 1) forwards; }
.hero__title .line--right { text-align: right; }
.hero__title .line--right>span { animation-delay: 1.12s; }
@keyframes titleIn { to { transform: translateY(0); } }
.hero__bottom { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 42px; }
.hero__bottom p { font-size: 14px; line-height: 1.6; margin: 0; opacity: 0.9; }

.round-link {
  width: 116px;
  height: 116px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 700;
  transition: background 0.35s, color 0.35s;
}
.round-link:hover { background: #fff; color: #111; }
.round-link b { font-size: 17px; font-weight: 400; }
.scroll-label {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  top: 50%;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right;
  font-size: 8px;
  letter-spacing: 0.16em;
  display: flex;
  gap: 12px;
  align-items: center;
}
.scroll-label span { display: inline-block; width: 60px; height: 1px; background: #fff; }

/* Section Common */
.section-index { font-size: 11px; letter-spacing: 0.14em; font-weight: 700; opacity: 0.6; margin-bottom: 24px; }

/* Brand Section */
.manifesto { padding: 120px var(--pad) 150px; }
.manifesto__grid { display: grid; grid-template-columns: 1.8fr 0.7fr; gap: 10vw; margin-top: 60px; align-items: end; }
.manifesto__lead { font-size: clamp(40px, 6.2vw, 105px); font-weight: 800; line-height: 0.95; letter-spacing: -0.06em; margin: 0; }
.manifesto__aside { font-size: 14px; line-height: 1.75; max-width: 380px; color: #444; }
.text-link { display: inline-flex; gap: 12px; margin-top: 30px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; }

.brand-cards { margin-top: 140px; display: grid; grid-template-columns: 0.75fr 1.25fr; gap: 24px; align-items: end; }
.brand-card { position: relative; overflow: hidden; }
.card-tall { height: 60vw; max-height: 800px; }
.card-wide { height: 42vw; max-height: 600px; }
.brand-card img { filter: grayscale(100%); transition: filter 0.8s, transform 1.2s; }
.brand-card:hover img { filter: grayscale(0); transform: scale(1.035); }
.card-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 16px 20px;
  background: rgba(245, 244, 240, 0.94);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
}

/* Shop Section (Commerce) */
.shop { padding: 120px var(--pad) 150px; background: #EFECE6; color: #111; }
.shop__heading h2 { font-size: clamp(60px, 11vw, 170px); font-weight: 800; line-height: 0.82; letter-spacing: -0.075em; margin: 20px 0 40px; }
.shop__heading h2 span { display: block; }
.shop__heading h2 span:last-child { text-align: right; }
.shop__header-flex { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 50px; }
.shop__header-flex p { font-size: 14px; color: #555; max-width: 420px; margin: 0; line-height: 1.6; }

.shop-filter-tabs { display: flex; gap: 10px; }
.filter-tab {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid rgba(0,0,0,0.15);
  font-size: 11px;
  font-weight: 700;
  background: transparent;
  color: #111;
  transition: all 0.3s;
}
.filter-tab.active, .filter-tab:hover { background: #000; color: #fff; }

.product-track-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 10px 0 30px;
  cursor: grab;
  user-select: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.product-track-wrap::-webkit-scrollbar {
  display: none;
}
.product-track-wrap:active {
  cursor: grabbing;
}

.product-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 24px;
  width: max-content;
}

.product-card {
  width: clamp(280px, 24vw, 360px) !important;
  flex-shrink: 0 !important;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.08);
}

.product-card__image {
  position: relative;
  aspect-ratio: 4/5;
  background: #f4f2ee;
  overflow: hidden;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 5px 10px;
  letter-spacing: 0.05em;
  z-index: 2;
  border-radius: 0;
}

.quick-view-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #000;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 2;
  border: 0;
  padding: 0;
}
.quick-view-btn:hover {
  transform: scale(1.12);
  background: #ffffff;
  color: #000;
}

.product-card__info {
  padding: 18px 20px 22px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-card__info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.product-card__info h3 {
  font-size: 12px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
  color: #111;
  text-transform: uppercase;
}
.product-card__info .price-tag {
  font-size: 12px;
  font-weight: 800;
  color: #111;
  white-space: nowrap;
}
.product-desc {
  font-size: 11px;
  color: #777;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

/* Service Section (SaaS) */
.service { position: relative; padding: 120px var(--pad) 150px; overflow: hidden; }
.service__intro { border-top: 1px solid rgba(255, 255, 255, 0.2); padding-top: 24px; }
.service__headline { display: grid; grid-template-columns: 1.5fr 0.5fr; gap: 8vw; margin: 60px 0 100px; align-items: end; }
.service__headline h2 { font-size: clamp(50px, 8vw, 130px); font-weight: 800; line-height: 0.88; letter-spacing: -0.065em; margin: 0; }
.service__headline p { font-size: 14px; line-height: 1.7; margin: 0; opacity: 0.8; }

.service-list { position: relative; z-index: 2; }
.service-item {
  display: grid;
  grid-template-columns: 70px 1.2fr 0.8fr 40px;
  gap: 30px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 40px 0;
  transition: padding 0.35s, opacity 0.35s;
}
.service-item:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
.service-item:hover { padding-left: 20px; }
.service-item__num { font-size: 12px; opacity: 0.6; font-weight: 600; }
.service-item h3 { font-size: clamp(22px, 3vw, 42px); font-weight: 700; letter-spacing: -0.04em; margin: 0 0 6px; }
.service-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  background: rgba(0, 217, 255, 0.15);
  color: var(--accent);
  padding: 4px 8px;
  border-radius: 4px;
}
.service-item p { font-size: 13px; line-height: 1.6; margin: 0; color: #bbb; }
.service-item b { font-size: 26px; font-weight: 300; }

.floating-preview {
  position: fixed;
  width: 280px;
  height: 180px;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.85);
  transition: opacity 0.25s, transform 0.25s;
}
.floating-preview.show { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.preview {
  position: absolute;
  inset: 0;
  background: var(--accent);
  color: #111;
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.preview span { font-size: 18px; font-weight: 800; }
.preview small { font-size: 11px; opacity: 0.8; margin-top: 4px; }
.preview.active { display: flex; }

/* Pricing Section */
.pricing { padding: 120px var(--pad) 150px; }
.pricing__intro h2 { font-size: clamp(50px, 9vw, 140px); font-weight: 800; line-height: 0.86; letter-spacing: -0.07em; margin: 16px 0 24px; }
.pricing__intro p { font-size: 15px; color: #555; max-width: 480px; margin-bottom: 70px; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 32px; }
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s;
}
.price-card:hover { transform: translateY(-8px); }
.price-card--featured {
  background: #000;
  color: #fff;
  border-color: #000;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.featured-badge {
  position: absolute;
  top: -14px;
  left: 36px;
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.price-card__tier { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; color: #888; }
.price-card--featured .price-card__tier { color: var(--accent); }

.price-card__amount { font-size: 42px; font-weight: 800; margin: 18px 0 12px; letter-spacing: -0.03em; }
.price-card__amount span { font-size: 14px; font-weight: 500; opacity: 0.6; }
.price-card p { font-size: 13px; line-height: 1.6; color: #666; margin: 0 0 30px; }
.price-card--featured p { color: #aaa; }

.price-card__features { list-style: none; padding: 0; margin: 0 0 40px; border-top: 1px solid rgba(0,0,0,0.08); padding-top: 24px; }
.price-card--featured .price-card__features { border-top-color: rgba(255,255,255,0.15); }
.price-card__features li { font-size: 13px; margin-bottom: 14px; opacity: 0.9; }

.primary-btn, .secondary-btn {
  padding: 16px 28px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.3s;
}
.primary-btn { background: var(--accent); color: #000; }
.primary-btn:hover { background: #fff; color: #000; }
.price-card--featured .primary-btn:hover { background: var(--accent); box-shadow: 0 0 20px rgba(0, 217, 255, 0.5); }
.secondary-btn { background: #f0f0f0; color: #111; }
.secondary-btn:hover { background: #000; color: #fff; }
.full-width { width: 100%; }

/* Statement Section */
.statement { padding: 150px var(--pad) 80px; min-height: 85vh; display: flex; flex-direction: column; justify-content: space-between; }
.statement__small { font-size: 11px; letter-spacing: 0.15em; font-weight: 700; opacity: 0.6; }
.statement__title { font-size: clamp(60px, 11vw, 170px); font-weight: 800; line-height: 0.84; letter-spacing: -0.08em; margin: 100px 0; }
.statement__footer { display: flex; justify-content: space-between; align-items: flex-end; font-size: 11px; font-weight: 700; }
.round-link--dark { border-color: #222; }
.round-link--dark:hover { background: #111; color: #fff; }

/* Footer */
.footer { background: var(--accent); color: #101010; padding: 75px var(--pad) 28px; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 80px; gap: 40px; flex-wrap: wrap; }
.footer-logo-img { height: 42px; width: auto; margin-bottom: 16px; }
.footer-desc { font-size: 13px; max-width: 320px; line-height: 1.6; margin: 0; opacity: 0.85; }
.footer__links { display: flex; gap: 80px; }
.footer__links h4 { font-size: 10px; letter-spacing: 0.15em; margin: 0 0 18px; opacity: 0.6; }
.footer__links a { display: block; font-size: 12px; font-weight: 700; margin-bottom: 12px; }
.footer__bottom { border-top: 1px solid rgba(0,0,0,0.25); padding-top: 24px; display: flex; justify-content: space-between; font-size: 10px; font-weight: 600; }
.to-top { font-size: 10px; font-weight: 700; }

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }

.modal-container {
  background: #fff;
  width: min(90vw, 760px);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 12px;
  position: relative;
  padding: 40px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  color: #888;
  transition: color 0.2s;
}
.modal-close:hover { color: #000; }

.product-modal-content { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; }
.modal-image-wrap { aspect-ratio: 4/5; border-radius: 8px; overflow: hidden; background: #eee; }
.modal-details h2 { font-size: 22px; font-weight: 800; margin: 8px 0; }
.modal-price { font-size: 20px; font-weight: 800; color: #000; margin-bottom: 16px; }
.modal-details p { font-size: 13px; color: #666; line-height: 1.6; margin-bottom: 24px; }

.option-group { margin-bottom: 20px; }
.option-group label { display: block; font-size: 10px; font-weight: 800; letter-spacing: 0.1em; color: #888; margin-bottom: 8px; }
.size-options { display: flex; gap: 8px; }
.size-btn { width: 40px; height: 40px; border: 1px solid #ddd; border-radius: 6px; font-size: 12px; font-weight: 700; }
.size-btn.active { border-color: #000; background: #000; color: #fff; }

.qty-picker { display: inline-flex; align-items: center; border: 1px solid #ddd; border-radius: 6px; overflow: hidden; }
.qty-picker button { width: 36px; height: 36px; font-size: 16px; font-weight: 700; background: #f5f5f5; }
.qty-picker span { width: 44px; text-align: center; font-size: 14px; font-weight: 700; }

.service-modal-content { max-width: 480px; margin: 0 auto; text-align: center; }
.service-modal-content h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.service-modal-content p { font-size: 14px; color: #666; margin-bottom: 28px; }
.form-field { text-align: left; margin-bottom: 18px; }
.form-field label { display: block; font-size: 11px; font-weight: 700; margin-bottom: 6px; color: #444; }
.form-field input { width: 100%; padding: 14px 16px; border: 1px solid #ddd; border-radius: 8px; font-size: 14px; font-family: inherit; }
.form-field input:focus { outline: none; border-color: #000; }

/* Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100vw, 420px);
  height: 100vh;
  background: #fff;
  z-index: 1001;
  box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-drawer__header {
  padding: 24px 28px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-drawer__header h3 { font-size: 14px; font-weight: 800; margin: 0; }
#cart-close { font-size: 28px; color: #888; }
.cart-drawer__body { flex: 1; padding: 24px 28px; overflow-y: auto; }
.empty-cart-msg { text-align: center; color: #999; margin-top: 60px; font-size: 14px; }

.cart-item { display: flex; gap: 16px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f0f0f0; align-items: center; }
.cart-item img { width: 64px; height: 80px; border-radius: 4px; }
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: 12px; font-weight: 700; margin: 0 0 4px; }
.cart-item-info small { font-size: 11px; color: #777; display: block; margin-bottom: 6px; }
.cart-item-info span { font-size: 13px; font-weight: 800; }
.remove-item-btn { color: #ff3b30; font-size: 11px; font-weight: 600; }

.cart-drawer__footer { padding: 24px 28px; border-top: 1px solid #eee; background: #fafafa; }
.cart-subtotal { display: flex; justify-content: space-between; font-size: 14px; font-weight: 800; margin-bottom: 18px; }

/* Toast */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #000;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2000;
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}
.toast-notification.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* Motion & Reveal */
.reveal { opacity: 0; transform: translateY(25px); transition: opacity 0.8s, transform 0.8s; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-text {
  background: linear-gradient(to right, #111 50%, rgba(17,17,17,0.18) 50%);
  background-size: 200% 100%;
  background-position: 100% 0;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transition: background-position 1.4s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.reveal-text.is-visible { background-position: 0 0; }

/* Media Queries */
@media (max-width: 850px) {
  .desktop-nav { display: none; }
  .cart-trigger--mobile { display: flex; }
  .cursor, .cursor-dot { display: none; }
  .mobile-menu { flex-direction: column; }
  .manifesto__grid, .service__headline { grid-template-columns: 1fr; }
  .brand-cards { grid-template-columns: 1fr; }
  .card-tall, .card-wide { height: 110vw; }
  .hero__content { padding-top: 110px; }
  .hero__title { font-size: 26vw; }
  .hero__bottom { align-items: center; }
  .round-link { width: 88px; height: 88px; }
  .product-modal-content { grid-template-columns: 1fr; gap: 20px; }
  .footer__top { flex-direction: column; gap: 50px; }
  .footer__links { gap: 40px; }
  .scroll-label { display: none; }
}
