* {
  box-sizing: border-box;
}

:root {
  --black: #090909;
  --offwhite: #f5f3ed;
  --white: #ffffff;
  --cyan: #18e6ff;
  --pink: #ff4fa3;
  --lime: #c9ff39;
  --orange: #ff8a28;
  --violet: #9b6cff;
  --blue: #4e7cff;
  --line: rgba(9, 9, 9, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--offwhite);
  font-family: "DM Sans", sans-serif;
}

body.no-scroll {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.announcement {
  background: var(--lime);
  padding: 10px 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 78px;
  padding: 0 4vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(245, 243, 237, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.logo {
  justify-self: start;
  background: var(--black);
  padding: 9px 13px;
  display: inline-flex;
}

.logo-word {
  font-family: "Archivo Black", sans-serif;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: white;
  text-shadow: -2px 0 var(--cyan), 2px 0 var(--pink), 0 2px var(--lime);
}

.desktop-nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a:hover {
  opacity: 0.55;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-btn,
.cart-btn,
.menu-btn {
  background: none;
  border: 0;
  font-weight: 800;
}

.cart-btn span {
  display: inline-grid;
  place-items: center;
  min-width: 23px;
  height: 23px;
  margin-left: 5px;
  border-radius: 50%;
  background: var(--black);
  color: white;
  font-size: 11px;
}

.menu-btn {
  display: none;
}

.mobile-menu {
  display: none;
}

.hero {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  padding: 7vw 4vw 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Archivo Black", sans-serif;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(76px, 9vw, 150px);
}

h1 span {
  color: var(--pink);
  text-shadow: 4px 4px 0 var(--cyan);
}

h2 {
  font-size: clamp(54px, 6.8vw, 110px);
}

.hero-text,
.section-lead,
.builder-copy > p,
.piece-story-copy > p {
  max-width: 570px;
  font-size: 18px;
  line-height: 1.55;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  border: 2px solid var(--black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: 0.2s ease;
}

.button.primary {
  color: white;
  background: var(--black);
}

.button.primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--pink);
}

.button.secondary {
  color: var(--black);
  background: transparent;
}

.button.secondary:hover {
  background: var(--lime);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.button.full {
  width: 100%;
}

.text-link {
  font-size: 13px;
  font-weight: 800;
  border-bottom: 2px solid;
}

.hero-art {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    var(--black);
  background-size: 44px 44px;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}

.glow-one {
  width: 330px;
  height: 330px;
  background: var(--pink);
  top: 8%;
  right: 7%;
}

.glow-two {
  width: 280px;
  height: 280px;
  background: var(--cyan);
  bottom: 5%;
  left: 5%;
}

.bracelet {
  display: flex;
  align-items: center;
  transform: rotate(-8deg);
  filter: drop-shadow(0 32px 24px rgba(0,0,0,0.32));
}

.bracelet-large {
  position: relative;
  z-index: 3;
  transform: rotate(-8deg) scale(1.04);
}

.strap {
  height: 70px;
  background: #171717;
  border: 1px solid #333;
  box-shadow: inset 0 10px 14px rgba(255,255,255,0.04);
}

.strap.left {
  width: 150px;
  border-radius: 35px 8px 8px 35px;
}

.strap.right {
  width: 150px;
  border-radius: 8px 35px 35px 8px;
}

.tile-row,
.builder-slots {
  display: flex;
  gap: 4px;
  padding: 7px;
  background: #151515;
  border-radius: 12px;
}

.tile,
.floating-piece,
.giant-piece {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 9px;
  border: 2px solid rgba(255,255,255,0.45);
  color: var(--black);
  font-family: "Archivo Black", sans-serif;
  box-shadow:
    inset 0 -4px 0 rgba(0,0,0,0.13),
    0 5px 12px rgba(0,0,0,0.18);
}

.tile {
  width: 58px;
  font-size: 24px;
}

.cyan { background: var(--cyan); }
.pink { background: var(--pink); }
.lime { background: var(--lime); }
.orange { background: var(--orange); }
.violet { background: var(--violet); }
.blue { background: var(--blue); }
.white { background: white; }
.silver { background: #bfc3c9; }
.black { background: #121212; color: white; }

.floating-piece {
  position: absolute;
  z-index: 4;
  width: 78px;
  font-size: 30px;
}

.fp-one { top: 15%; left: 15%; transform: rotate(-15deg); }
.fp-two { bottom: 16%; right: 14%; transform: rotate(16deg); }
.fp-three { top: 20%; right: 18%; transform: rotate(11deg); }

.hero-badge {
  position: absolute;
  right: 5%;
  bottom: 5%;
  z-index: 4;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background: var(--lime);
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
  line-height: 1.05;
  transform: rotate(8deg);
}

.marquee {
  overflow: hidden;
  background: var(--pink);
  border-bottom: 2px solid var(--black);
}

.marquee div {
  width: max-content;
  padding: 15px 0;
  display: flex;
  animation: marquee 22s linear infinite;
}

.marquee span {
  padding: 0 26px;
  font-family: "Archivo Black", sans-serif;
  font-size: 18px;
}

.marquee span::after {
  content: " ✦";
  margin-left: 38px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section-pad {
  padding: 9vw 4vw;
}

.intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 7vw;
  align-items: end;
  padding-bottom: 4vw;
}

.intro h2 {
  margin-bottom: 0;
}

.product-grid {
  padding-top: 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.product-card {
  min-width: 0;
}

.product-visual {
  position: relative;
  min-height: 380px;
  padding: 25px;
  display: grid;
  place-items: center;
  border: 2px solid var(--black);
  overflow: hidden;
}

.dark-card {
  background:
    radial-gradient(circle at 50% 50%, rgba(24,230,255,0.18), transparent 43%),
    var(--black);
}

.tiles-card {
  background: var(--pink);
}

.light-card {
  background: #d9d5cd;
}

.product-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 11px;
  background: var(--lime);
  border: 2px solid var(--black);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.bracelet-card {
  transform: rotate(-10deg) scale(0.78);
}

.piece-grid {
  display: grid;
  grid-template-columns: repeat(3, 72px);
  gap: 13px;
  transform: rotate(-5deg);
}

.piece-grid .tile {
  width: 72px;
  font-size: 25px;
}

.product-info {
  min-height: 105px;
  padding: 20px 0 15px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.product-info h3 {
  margin-bottom: 7px;
  font-family: "Archivo Black", sans-serif;
  font-size: 20px;
}

.product-info p {
  margin-bottom: 0;
  color: #5c5c5c;
  font-size: 14px;
}

.price {
  flex-shrink: 0;
  font-weight: 800;
}

.builder {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 5vw;
  color: white;
  background: var(--black);
}

.builder-copy {
  align-self: center;
}

.builder-copy h2 {
  color: var(--lime);
}

.builder-status {
  margin: 30px 0 16px;
  font-family: "Archivo Black", sans-serif;
  font-size: 15px;
}

.builder-panel {
  min-height: 580px;
  padding: 5vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    #101010;
  background-size: 34px 34px;
}

.builder-bracelet {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 55px;
}

.builder-slots {
  min-width: 350px;
}

.slot {
  width: 60px;
  aspect-ratio: 1;
  border: 2px dashed #555;
  border-radius: 9px;
  color: #666;
  background: #1e1e1e;
  font-size: 23px;
}

.slot.filled {
  border-style: solid;
  color: var(--black);
  font-family: "Archivo Black", sans-serif;
}

.pick-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.piece-picker {
  display: grid;
  grid-template-columns: repeat(8, minmax(48px, 1fr));
  gap: 10px;
}

.pick {
  width: 100%;
  border: 2px solid rgba(255,255,255,0.5);
  transition: 0.18s ease;
}

.pick:hover,
.pick.selected {
  transform: translateY(-6px);
  outline: 3px solid white;
}

.reset-link {
  align-self: flex-start;
  margin-top: 22px;
  padding: 0;
  color: white;
  background: none;
  border: 0;
  border-bottom: 1px solid;
  font-size: 11px;
  font-weight: 800;
}

.how {
  background: var(--lime);
}

.how > h2 {
  margin-bottom: 5vw;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}

.steps article {
  position: relative;
  min-height: 380px;
  padding: 32px;
  border-right: 2px solid var(--black);
}

.steps article:last-child {
  border-right: 0;
}

.step-number {
  font-family: "Archivo Black", sans-serif;
  font-size: 14px;
}

.step-icon {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps h3,
.value-grid h3 {
  font-family: "Archivo Black", sans-serif;
  font-size: 22px;
}

.steps p,
.value-grid p {
  max-width: 320px;
  line-height: 1.5;
}

.mini-bracelet span {
  width: 45px;
  height: 34px;
  background: var(--black);
  border-radius: 17px 4px 4px 17px;
}

.mini-bracelet span:last-child {
  border-radius: 4px 17px 17px 4px;
}

.mini-bracelet i {
  width: 38px;
  height: 38px;
  margin: 2px;
  border-radius: 6px;
  background: var(--pink);
  border: 2px solid var(--black);
}

.snap-icon {
  flex-direction: column;
}

.snap-icon .tile {
  width: 72px;
}

.snap-icon span {
  font-size: 42px;
}

.switch-icon {
  font-size: 130px;
  font-family: "Archivo Black", sans-serif;
}

.piece-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  align-items: center;
  background: var(--offwhite);
}

.piece-story-art {
  position: relative;
  min-height: 560px;
}

.giant-piece {
  position: absolute;
  width: 240px;
  font-size: 90px;
  border-radius: 28px;
  border-width: 5px;
}

.giant-piece:nth-child(1) {
  top: 2%;
  left: 5%;
  transform: rotate(-12deg);
}

.giant-piece:nth-child(2) {
  right: 6%;
  top: 28%;
  transform: rotate(10deg);
}

.giant-piece:nth-child(3) {
  bottom: 0;
  left: 17%;
  transform: rotate(4deg);
}

.piece-story-copy .button {
  margin-top: 18px;
}

.values {
  color: white;
  background: var(--black);
}

.value-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: start;
}

.value-heading h2 {
  color: var(--pink);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 5vw;
  border-top: 1px solid rgba(255,255,255,0.3);
}

.value-grid article {
  padding: 35px 28px 0 0;
}

.value-grid span {
  display: block;
  margin-bottom: 55px;
  color: var(--lime);
  font-family: "Archivo Black", sans-serif;
}

.social-proof {
  text-align: center;
}

.social-proof h2 span {
  color: var(--cyan);
  text-shadow: 3px 3px 0 var(--pink);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 55px;
}

.social-card {
  min-height: 300px;
  display: grid;
  place-items: center;
  border: 2px solid var(--black);
  overflow: hidden;
}

.sc-one { background: var(--cyan); }
.sc-two { background: var(--black); }
.sc-three { background: var(--pink); }
.sc-four { background: var(--lime); }

.social-card p {
  font-size: 24px;
}

.social-card strong {
  font-family: "Archivo Black", sans-serif;
  font-size: 36px;
}

.piece-grid.mini {
  grid-template-columns: repeat(2, 60px);
}

.piece-grid.mini .tile {
  width: 60px;
}

.wrist {
  width: 380px;
  height: 120px;
  border-radius: 60px;
  background: #bc815f;
  transform: rotate(-18deg);
  display: grid;
  place-items: center;
}

.wrist-two {
  background: #e2b58e;
  transform: rotate(16deg);
}

.bracelet.tiny {
  width: 85px;
  height: 130px;
  border: 16px solid var(--black);
  border-radius: 50%;
  transform: none;
}

.newsletter {
  padding: 8vw 4vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7vw;
  align-items: end;
  background: var(--violet);
}

.newsletter h2 {
  margin-bottom: 0;
}

.newsletter form {
  display: flex;
  border-bottom: 3px solid var(--black);
}

.newsletter input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 18px 0;
  background: transparent;
  font-weight: 800;
}

.newsletter-message {
  grid-column: 2;
  font-weight: 800;
}

footer {
  padding: 70px 4vw 25px;
  color: white;
  background: var(--black);
}

.footer-logo .logo-word {
  font-size: clamp(70px, 13vw, 190px);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 750px;
  margin: 65px 0;
}

.footer-columns h4 {
  color: var(--lime);
  font-size: 12px;
  letter-spacing: 0.13em;
}

.footer-columns a {
  display: block;
  margin: 11px 0;
  font-size: 14px;
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255,255,255,0.22);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(430px, 100%);
  height: 100vh;
  padding: 28px;
  display: flex;
  flex-direction: column;
  background: var(--offwhite);
  transform: translateX(105%);
  transition: 0.28s ease;
}

.cart-drawer.open {
  transform: translateX(0);
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  background: rgba(0,0,0,0.62);
}

.overlay.open {
  display: block;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--black);
}

.cart-header h2 {
  margin: 0 0 18px;
  font-size: 38px;
}

.cart-header button {
  border: 0;
  background: none;
  font-size: 38px;
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 20px 0;
}

.empty-cart {
  color: #666;
}

.cart-line {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.cart-line strong {
  display: block;
}

.cart-line small {
  color: #666;
}

.remove-item {
  padding: 0;
  border: 0;
  background: none;
  text-decoration: underline;
  font-size: 11px;
  font-weight: 800;
}

.cart-footer {
  padding-top: 20px;
  border-top: 2px solid var(--black);
}

.cart-total {
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  font-family: "Archivo Black", sans-serif;
}

.cart-footer small {
  display: block;
  margin-top: 12px;
  color: #666;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1050px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr 1fr; }
  .menu-btn { display: block; }
  .icon-btn { display: none; }

  .mobile-menu {
    position: fixed;
    top: 112px;
    left: 0;
    right: 0;
    z-index: 49;
    padding: 28px 4vw;
    flex-direction: column;
    gap: 22px;
    background: var(--offwhite);
    border-bottom: 2px solid var(--black);
    font-family: "Archivo Black", sans-serif;
    font-size: 26px;
  }

  .mobile-menu.open { display: flex; }

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

  .hero-art {
    min-height: 520px;
  }

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

  .product-card.featured {
    grid-column: 1 / -1;
  }

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

  .piece-picker {
    grid-template-columns: repeat(4, 1fr);
  }

  .piece-story {
    gap: 3vw;
  }

  .giant-piece {
    width: 190px;
  }

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

@media (max-width: 700px) {
  .announcement {
    font-size: 9px;
  }

  .site-header {
    height: 68px;
  }

  .logo-word {
    font-size: 18px;
  }

  .mobile-menu {
    top: 98px;
  }

  .hero-copy {
    padding: 18vw 6vw 13vw;
  }

  h1 {
    font-size: clamp(66px, 21vw, 98px);
  }

  h2 {
    font-size: clamp(46px, 14vw, 72px);
  }

  .hero-art {
    min-height: 420px;
  }

  .bracelet-large {
    transform: rotate(-8deg) scale(0.62);
  }

  .floating-piece {
    width: 58px;
  }

  .hero-badge {
    width: 88px;
    height: 88px;
    font-size: 11px;
  }

  .section-pad {
    padding: 20vw 6vw;
  }

  .intro,
  .piece-story,
  .newsletter,
  .value-heading {
    grid-template-columns: 1fr;
  }

  .intro {
    gap: 25px;
    padding-bottom: 10vw;
  }

  .product-grid {
    padding-top: 0;
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    grid-column: auto;
  }

  .product-visual {
    min-height: 320px;
  }

  .piece-grid {
    grid-template-columns: repeat(3, 62px);
  }

  .piece-grid .tile {
    width: 62px;
  }

  .builder-panel {
    padding: 12vw 5vw;
  }

  .builder-bracelet .strap {
    display: none;
  }

  .builder-slots {
    min-width: 0;
    width: 100%;
  }

  .slot {
    width: calc((100vw - 22vw) / 5);
    max-width: 55px;
  }

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

  .steps article {
    min-height: 330px;
    border-right: 0;
    border-bottom: 2px solid var(--black);
  }

  .steps article:last-child {
    border-bottom: 0;
  }

  .piece-story-art {
    min-height: 430px;
  }

  .giant-piece {
    width: 155px;
    font-size: 62px;
  }

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

  .value-grid article {
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }

  .value-grid span {
    margin-bottom: 20px;
  }

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

  .newsletter form {
    flex-direction: column;
    border-bottom: 0;
  }

  .newsletter input {
    margin-bottom: 12px;
    border-bottom: 3px solid var(--black);
  }

  .newsletter-message {
    grid-column: 1;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}
