/* =========================================================
   Buy Me a Coffee - Homepage Clone
   Design tokens & sections
   ========================================================= */

:root {
  --bg-floral: #FAF8F0;
  --yellow: #FD0;
  --yellow-bright: #F7D046;
  --yellow-star: #FFDD00;
  --red: #D8573F;
  --blue: #1877F2;
  --green-star: #2E813A;
  --dark-green: #355E3B;
  --dark: #222;
  --grey-v1: #717171;
  --grey-v8: #E1E1E1;
  --white: #fff;

  --shadow-card-md: 0 0 3.86px rgba(0,0,0,.15), 0 15.44px 77.19px rgba(0,0,0,.04), 0 3.86px 9.65px rgba(0,0,0,.05);
  --shadow-card: 0 0 1.96px rgba(0,0,0,.15), 0 7.82px 39.11px rgba(0,0,0,.04), 0 1.96px 4.89px rgba(0,0,0,.05);
  --shadow-card-xs: 0 0 2.79px rgba(0,0,0,.15), 0 11.17px 55.87px rgba(0,0,0,.04), 0 2.79px 6.98px rgba(0,0,0,.05);
  --shadow-smd: 0 0 2px rgba(0,0,0,.15), 0 8px 40px rgba(0,0,0,.04), 0 2px 5px rgba(0,0,0,.05);
  --shadow-header: 0 2.65546px 95px rgba(0,0,0,.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Circular", "Avenir Next", "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  background: var(--bg-floral);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  transition: transform .2s cubic-bezier(.2,.75,.28,.9);
  isolation: isolate;
  overflow: hidden;
}
.btn-yellow {
  background: var(--yellow);
  padding: 10px 22px;
}
.btn-yellow:hover { transform: scale(1.041, 1.021); }
.btn-xl {
  height: 74px;
  font-size: 24px;
  padding: 0 56px;
  font-weight: 700;
}
.btn-lg {
  height: 56px;
  font-size: 18px;
  padding: 0 34px;
  font-weight: 700;
}

/* =========================================================
   Header
   ========================================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #fff;
  transition: box-shadow .3s ease;
}
#site-header.scrolled { box-shadow: var(--shadow-header); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1272px;
  margin: 0 auto;
  padding: 14px 24px;
}

.nav-left { display: flex; align-items: center; gap: 30px; }

.nav-links { display: flex; align-items: center; gap: 6px; }

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  padding: 10px 16px;
  border-radius: 40px;
  white-space: nowrap;
}
.inline-heart { transform: translateY(-1px); }
.chev { transition: transform .2s ease; }

.has-dropdown { position: relative; }
.has-dropdown.open .chev { transform: rotate(180deg); }

.dropdown-trigger {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2.66px 95px rgba(0,0,0,.1);
  padding: 14px;
  display: none;
  z-index: 60;
}
.has-dropdown.open .dropdown-menu {
  display: block;
  animation: ddIn .18s ease;
}
@keyframes ddIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.dropdown-menu.dropdown-wide { min-width: 260px; }
.dropdown-wide { right: 0; left: auto; transform: none; }
.has-dropdown.open .dropdown-wide { animation-name: ddInWide; }
@keyframes ddInWide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
  display: block;
  padding: 9px 12px;
  font-size: 15px;
  color: var(--dark);
  border-radius: 12px;
  transition: background .15s ease;
}
.dropdown-item:hover { background: rgba(0,0,0,.05); }

.logo-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}

.nav-right { display: flex; align-items: center; gap: 14px; }

.search-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 24px;
  background: rgba(0,0,0,.03);
  padding: 10px 16px;
  font-size: 14px;
  color: #444;
  transition: background .2s ease;
}
.search-btn:hover { background: rgba(0,0,0,.06); }
.search-label { font-weight: 400; }

.login-link { padding: 10px 12px; }

.signup-btn { display: inline-flex; }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 22px; height: 2.4px; background: #191924; border-radius: 2px; }

/* =========================================================
   Mobile menu
   ========================================================= */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(360px, 86vw);
  background: #fff;
  z-index: 200;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.2,.75,.28,.9);
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  z-index: 150;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.mobile-menu-links { flex: 1; padding-top: 16px; display: flex; flex-direction: column; }
.mm-link {
  padding: 14px 4px;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.mobile-menu-foot { padding: 20px 0; }
.mobile-menu-foot .btn { width: 100%; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  background: #fff;
  padding-top: 172px;
  padding-bottom: 40px;
}
.hero-inner {
  position: relative;
  z-index: 5;
  max-width: 1272px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px 60px;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}
.stars { display: inline-flex; gap: 2px; }
.rating-text { font-size: 16px; color: var(--dark); font-weight: 400; }

.hero-title {
  font-size: 96px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 95px;
  color: var(--dark);
}
.hero-sub {
  font-size: 22px;
  color: var(--dark);
  margin-top: 18px;
  font-weight: 400;
}
.hero-cta { margin-top: 34px; }
.hero-note { margin-top: 16px; font-size: 15px; color: #444; }

/* fade-up entrance */
.fade-up {
  opacity: 0;
  transform: translateY(60px);
  animation: fadeUp .8s cubic-bezier(.2,.75,.28,.9) forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* hero floating creator cards */
.hero-cards { position: relative; z-index: 2; }

.creator-card {
  position: absolute;
  width: 192px;
  height: 172px;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-smd);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px) rotate(0deg) scale(.85);
  animation: cardIn 1s cubic-bezier(.2,.75,.28,.9) forwards;
}
@keyframes cardIn {
  to { opacity: 1; transform: translateY(0) rotate(var(--rot)) scale(1); }
}

.cc-cover { height: 56px; }
.cc-cover-1 { background: linear-gradient(120deg, #FFDD00, #F7B26B); }
.cc-cover-2 { background: linear-gradient(120deg, #B6E3F0, #8FB8E8); }
.cc-cover-3 { background: linear-gradient(120deg, #FFD9E8, #FF9DBB); }
.cc-cover-4 { background: linear-gradient(120deg, #C9F2D5, #7FD4A5); }
.cc-cover-5 { background: linear-gradient(120deg, #E4D9FF, #B79CF5); }
.cc-cover-6 { background: linear-gradient(120deg, #FFE3B8, #F8C471); }

.cc-body { padding: 6px 14px 12px; text-align: center; }
.cc-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: -20px auto 6px;
  border: 3px solid #fff;
  font-size: 16px; font-weight: 700; color: #fff;
}
.cc-av-1 { background: #8A6EF0; }
.cc-av-2 { background: #E86A5E; }
.cc-av-3 { background: #4A9BD4; }
.cc-av-4 { background: #56B98F; }
.cc-av-5 { background: #E0A43C; }
.cc-av-6 { background: #D8573F; }

.cc-name { font-size: 14px; font-weight: 700; }
.cc-desc { font-size: 12px; color: var(--grey-v1); }
.cc-btn {
  margin-top: 8px;
  background: var(--yellow);
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 0;
  color: #000;
}

.card-1 { --rot: 4deg;  left: 2%;    top: 60px;  animation-delay: 1.0s; }
.card-2 { --rot: -3deg; right: 3%;   top: 30px;  animation-delay: 1.3s; }
.card-3 { --rot: -5deg; left: 9%;    bottom: -10px; animation-delay: 1.6s; }
.card-4 { --rot: 3deg;  right: 8%;   bottom: -20px; animation-delay: 1.9s; }
.card-5 { --rot: 6deg;  left: 20%;   top: -30px; animation-delay: 1.1s; }
.card-6 { --rot: -6deg; right: 22%;  top: -40px; animation-delay: 1.4s; }

/* =========================================================
   Content layout
   ========================================================= */
.content-wrap {
  max-width: 1272px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

.feature-card {
  background: #fff;
  border-radius: 48px;
  padding: 48px 96px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 32px;
}
.feature-card:first-of-type { margin-top: 48px; }
.feature-card > * { min-width: 0; }

/* animated reveal on scroll */
.animated {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity .8s cubic-bezier(.2,.75,.28,.9), transform .8s cubic-bezier(.2,.75,.28,.9);
}
.animated.visible { opacity: 1; transform: translateY(0); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--grey-v1);
  margin-bottom: 18px;
}
.feature-title {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
}
.feature-body {
  font-size: 18px;
  color: var(--grey-v1);
  line-height: 1.55;
  margin-top: 18px;
}

/* =========================================================
   Support mockup
   ========================================================= */
.support-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 460px;
}

.coffee-card {
  width: 330px;
  background: #fff;
  border-radius: 36px;
  box-shadow: var(--shadow-card-md);
  padding: 28px 26px 30px;
  text-align: center;
  z-index: 4;
}
.coffee-title { font-size: 22px; font-weight: 700; margin-bottom: 20px; }

.amount-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}
.amount-btn {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  width: 62px;
  border: 2px solid var(--red);
  color: var(--red);
  border-radius: 14px;
  padding: 10px 0;
  font-size: 20px;
  font-weight: 700;
  background: #fff;
  transition: all .15s ease;
}
.amount-btn span { font-size: 14px; font-weight: 600; }
.amount-btn.active { background: var(--red); color: #fff; }
.amount-btn.other {
  width: 68px;
  font-size: 15px;
  padding: 16px 0;
}
.amount-btn:hover { transform: translateY(-2px); }

.message-box {
  background: #fafafa;
  border: 1px solid var(--grey-v8);
  border-radius: 14px;
  padding: 14px 16px;
  text-align: left;
  color: #b9b9b9;
  font-size: 15px;
  margin-bottom: 18px;
}

.support-btn {
  width: 100%;
  background: var(--red);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 9999px;
  padding: 16px 0;
  transition: transform .15s ease;
}
.support-btn:hover { transform: scale(1.02); }

.float-note {
  position: absolute;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 14px 16px;
  max-width: 240px;
  z-index: 5;
  animation: floaty 5s ease-in-out infinite;
}
.note-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 700;
  flex-shrink: 0;
}
.av-a { background: #8A6EF0; }
.av-c { background: #4A9BD4; }
.av-al { background: #E0A43C; }
.av-t { background: #56B98F; }
.note-text { font-size: 13px; line-height: 1.45; color: var(--dark); }
.note-grey { color: var(--grey-v1); font-weight: 400; }

.note-1 { top: 12px;  left: 0;  animation-delay: 0s; }
.note-2 { top: 130px; right: 0; animation-delay: 1.2s; max-width: 220px; }
.note-3 { bottom: 130px; left: 0; animation-delay: 2s; }
.note-4 { bottom: 6px; right: 0; animation-delay: .6s; max-width: 250px; }

.float-emoji {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-card-xs);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  z-index: 5;
  animation: floaty 6s ease-in-out infinite;
}
.emoji-1 { top: 60px; right: 6%; animation-delay: .4s; }
.emoji-2 { bottom: 70px; left: 5%; animation-delay: 1.6s; }
.emoji-3 { bottom: 20px; right: 24%; animation-delay: 2.4s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =========================================================
   Memberships mockup
   ========================================================= */
.membership-mockup {
  position: relative;
  min-height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mcard {
  position: absolute;
  width: 240px;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--shadow-card-md);
  padding: 28px 26px;
  z-index: 2;
}
.mcard-main {
  position: relative;
  width: 250px;
  z-index: 4;
  animation: mfloat 6s ease-in-out infinite;
}
.mcard-left {
  left: 0;
  transform: rotate(-6deg);
  z-index: 3;
  animation: mfloat 6s ease-in-out infinite;
  animation-delay: 1s;
}
.mcard-right {
  right: 0;
  transform: rotate(6deg);
  z-index: 3;
  animation: mfloat 6s ease-in-out infinite;
  animation-delay: 2s;
}

@keyframes mfloat {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50% { transform: translateY(-12px) rotate(-6deg); }
}
.mcard-main { animation: mfloat2 6s ease-in-out infinite; }
.mcard-right { animation: mfloat3 6s ease-in-out infinite; }
@keyframes mfloat2 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(0deg); }
}
@keyframes mfloat3 {
  0%, 100% { transform: translateY(0) rotate(6deg); }
  50% { transform: translateY(-10px) rotate(6deg); }
}

.mcard-head { margin-bottom: 18px; }
.mcard-name { font-size: 15px; font-weight: 600; color: var(--grey-v1); margin-bottom: 6px; }
.mcard-price { font-size: 34px; font-weight: 700; }
.mcard-price span { font-size: 14px; color: var(--grey-v1); font-weight: 500; }

.mcard-list { margin-bottom: 22px; }
.mcard-list li {
  display: flex; gap: 8px;
  font-size: 13px;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 10px;
}
.check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #1F2022;
  color: #fff;
  font-size: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.join-btn {
  width: 100%;
  background: var(--blue);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 9999px;
  padding: 12px 0;
  transition: transform .15s ease;
}
.join-btn:hover { transform: scale(1.03); }

.float-stat {
  position: absolute;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
  animation: floaty 5s ease-in-out infinite;
}
.stat-members { bottom: 30px; left: 4%; animation-delay: .8s; }
.stat-earned { top: 30px; right: 4%; animation-delay: 1.8s; }
.member-avatars { display: flex; }
.ma {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px; font-weight: 700;
  margin-left: -8px;
}
.ma:first-child { margin-left: 0; }
.ma1 { background: #8A6EF0; }
.ma2 { background: #E86A5E; }
.ma3 { background: #4A9BD4; }
.ma4 { background: #E0A43C; }
.stat-text b { font-size: 18px; display: block; }
.stat-text .note-grey { font-size: 13px; }
.home-ico { flex-shrink: 0; }

/* =========================================================
   Shop mockup
   ========================================================= */
.shop-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.product-card {
  width: 300px;
  background: #fff;
  border-radius: 32px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  z-index: 3;
  animation: mfloat2 7s ease-in-out infinite;
}
.product-cover {
  position: relative;
  height: 190px;
  background: var(--yellow-bright);
  display: flex; align-items: center; justify-content: center;
}
.book-ico { opacity: .95; }
.pdf-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: #fff;
  border-radius: 4px;
  font-size: 11px; font-weight: 800;
  padding: 3px 8px;
  letter-spacing: 1px;
}
.star-spark {
  position: absolute;
  font-size: 18px;
  color: #fff;
}
.s1 { top: 16px; left: 20px; }
.s2 { bottom: 20px; left: 30px; font-size: 14px; }
.s3 { bottom: 16px; right: 40px; font-size: 20px; }

.product-body { padding: 22px 24px 26px; }
.product-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.product-name { font-size: 20px; font-weight: 700; }
.product-price { font-size: 20px; font-weight: 700; }
.product-rating { display: flex; align-items: center; gap: 2px; margin-bottom: 16px; }
.rating-num { font-size: 13px; color: var(--dark-green); font-weight: 600; margin-left: 6px; }

.skeleton { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.sk-line {
  height: 12px;
  background: var(--grey-v8);
  border-radius: 12px;
}

.buy-btn {
  width: 100%;
  background: var(--yellow-bright);
  color: #000;
  font-size: 18px;
  font-weight: 700;
  border-radius: 9999px;
  padding: 14px 0;
  transition: transform .15s ease;
}
.buy-btn:hover { transform: scale(1.02); }

.float-shop {
  position: absolute;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  padding: 14px 18px;
  z-index: 4;
  animation: floaty 5s ease-in-out infinite;
}
.fs-1 { top: 20px; left: 0; display: flex; align-items: center; gap: 10px; }
.fs-2 { bottom: 40px; left: 6%; animation-delay: 1.4s; }
.fs-3 { top: 90px; right: 0; animation-delay: 2s; padding: 16px 20px; }
.fs-4 { bottom: 10px; right: 4%; animation-delay: .8s; }
.fs-text b { font-size: 16px; }
.fs-text .note-grey { font-size: 13px; }
.fs-title { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.rating-line { display: flex; align-items: center; gap: 2px; }
.four-star {
  margin-left: 8px;
  background: #191924;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  border-radius: 9999px;
  padding: 3px 10px;
}

/* =========================================================
   Posts mockup
   ========================================================= */
.posts-mockup {
  display: flex;
  justify-content: center;
  width: 100%;
  min-width: 0;
}
.posts-window {
  width: 560px;
  max-width: 100%;
  min-width: 0;
  background: #fff;
  border-radius: 32px;
  box-shadow: var(--shadow-card-md);
  overflow: hidden;
}
.pw-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 18px 26px;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.pw-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; }
.pw-tabs { display: flex; gap: 4px; margin-left: auto; }
.pw-tab {
  font-size: 13px; font-weight: 600;
  padding: 8px 16px;
  border-radius: 9999px;
  color: var(--grey-v1);
}
.pw-tab.active { background: var(--yellow); color: #000; }
.pw-badge {
  background: var(--red);
  color: #fff;
  font-size: 11px; font-weight: 700;
  border-radius: 9999px;
  padding: 4px 12px;
}

.post-card { padding: 26px; }
.post-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.post-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #8A6EF0;
  color: #fff; font-size: 17px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.post-meta b { display: block; font-size: 15px; }
.post-meta .note-grey { font-size: 13px; }
.post-lock { margin-left: auto; font-size: 18px; }

.post-title { font-size: 22px; font-weight: 700; margin-bottom: 14px; }
.post-cover {
  height: 160px;
  border-radius: 18px;
  background: linear-gradient(120deg, #FFDD00, #F7B26B 55%, #E86A5E);
  margin-bottom: 16px;
  position: relative;
}
.post-cover::after {
  content: "🎵";
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
}

.post-audio {
  display: flex; align-items: center; gap: 14px;
  background: #faf7ec;
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 16px;
}
.play-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .15s ease;
}
.play-btn:hover { transform: scale(1.06); }
.wave { display: flex; align-items: center; gap: 3px; flex: 1; height: 30px; }
.wave i {
  width: 3px;
  border-radius: 2px;
  background: #D9C98F;
  animation: eq 1s ease-in-out infinite;
}
.wave i:nth-child(1) { height: 8px; }
.wave i:nth-child(2) { height: 20px; animation-delay: .1s; }
.wave i:nth-child(3) { height: 12px; animation-delay: .2s; }
.wave i:nth-child(4) { height: 26px; animation-delay: .3s; }
.wave i:nth-child(5) { height: 10px; animation-delay: .15s; }
.wave i:nth-child(6) { height: 22px; animation-delay: .25s; }
.wave i:nth-child(7) { height: 14px; animation-delay: .05s; }
.wave i:nth-child(8) { height: 28px; animation-delay: .35s; }
.wave i:nth-child(9) { height: 12px; animation-delay: .2s; }
.wave i:nth-child(10) { height: 24px; animation-delay: .1s; }
.wave i:nth-child(11) { height: 8px; }
.wave i:nth-child(12) { height: 18px; animation-delay: .3s; }
.wave i:nth-child(13) { height: 26px; animation-delay: .05s; }
.wave i:nth-child(14) { height: 10px; animation-delay: .2s; }
.wave i:nth-child(15) { height: 20px; animation-delay: .1s; }
.wave i:nth-child(16) { height: 14px; animation-delay: .25s; }
.wave i:nth-child(17) { height: 24px; animation-delay: .15s; }
.wave i:nth-child(18) { height: 10px; }
.wave i:nth-child(19) { height: 18px; animation-delay: .3s; }
.wave i:nth-child(20) { height: 26px; animation-delay: .1s; }
.wave i:nth-child(21) { height: 12px; animation-delay: .2s; }
.wave i:nth-child(22) { height: 22px; animation-delay: .05s; }
.wave i:nth-child(23) { height: 8px; animation-delay: .25s; }
.wave i:nth-child(24) { height: 20px; animation-delay: .15s; }

@keyframes eq {
  0%, 100% { transform: scaleY(.5); }
  50% { transform: scaleY(1); }
}

.audio-time { font-size: 13px; color: var(--grey-v1); font-weight: 500; }

.post-text { font-size: 15px; line-height: 1.6; color: #333; margin-bottom: 16px; }
.post-foot { display: flex; align-items: center; gap: 18px; font-size: 14px; color: var(--grey-v1); }
.post-like {
  margin-left: auto;
  background: var(--yellow);
  color: #000;
  font-size: 14px; font-weight: 700;
  border-radius: 9999px;
  padding: 9px 20px;
  transition: transform .15s ease;
}
.post-like:hover { transform: scale(1.04); }

/* =========================================================
   Designed for creators
   ========================================================= */
.designed {
  padding: 40px 0 96px;
}
.designed-title {
  text-align: center;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  max-width: 900px;
  margin: 0 auto 56px;
}
.text-grey-soft { color: var(--grey-v1); }

.designed-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 56px;
  max-width: 900px;
  margin: 0 auto;
}
.d-item { display: flex; gap: 18px; align-items: flex-start; }
.d-check {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #1F2022;
  color: #fff;
  font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.d-item p {
  font-size: 22px;
  color: var(--grey-v1);
  line-height: 1.4;
  font-weight: 400;
}
.d-item b { color: var(--dark); font-weight: 700; }

/* =========================================================
   Make 20% or more
   ========================================================= */
.make-more {
  display: block;
  padding: 64px 80px 72px;
}
.make-title {
  text-align: center;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.05;
  max-width: 900px;
  margin: 0 auto 56px;
}
.make-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 44px;
}
.make-item .mico { margin-bottom: 20px; }
.make-item h3 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.make-item p {
  font-size: 16px;
  color: var(--grey-v1);
  line-height: 1.55;
  font-weight: 400;
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--bg-floral);
  padding: 28px 24px 36px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1272px;
  margin: 0 auto;
}
.footer-copy { font-size: 16px; color: var(--grey-v1); white-space: nowrap; }
.footer-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.flink {
  font-size: 15px;
  color: var(--dark);
  padding: 8px 12px;
  border-radius: 40px;
  white-space: nowrap;
}
.flink:hover { background: rgba(0,0,0,.04); }

.footer-social { display: flex; gap: 6px; }
.soc {
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
  border-radius: 50%;
  transition: background .15s ease;
}
.soc:hover { background: rgba(0,0,0,.05); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1200px) {
  .hero-title { font-size: 76px; line-height: 80px; }
  .feature-title, .designed-title, .make-title { font-size: 52px; }
  .feature-card { grid-template-columns: 1fr; gap: 40px; }
  .support-mockup { margin-top: 10px; }
  .membership-mockup { margin-top: 10px; }
  .card-1 { left: 0; }
  .card-2 { right: 0; }
}

@media (max-width: 900px) {
  .nav-links, .search-btn, .login-link, .signup-btn { display: none; }
  .hamburger { display: flex; }
  .logo-text { display: block; }

  .hero { padding-top: 120px; }
  .hero-title { font-size: 48px; line-height: 52px; letter-spacing: -1px; }
  .hero-sub { font-size: 18px; }
  .btn-xl { height: 56px; font-size: 18px; padding: 0 40px; }
  .hero-cards { display: none; }

  .feature-card { padding: 40px 28px; border-radius: 32px; }
  .feature-title, .designed-title, .make-title { font-size: 38px; line-height: 1.12; letter-spacing: -1px; }
  .feature-body { font-size: 16px; }

  .designed-grid { grid-template-columns: 1fr; gap: 30px; }
  .d-item p { font-size: 18px; }
  .make-grid { grid-template-columns: 1fr; gap: 36px; }
  .make-more { padding: 48px 28px; }

  .support-mockup { min-height: 560px; }
  .float-note, .float-emoji { display: none; }
  .coffee-card, .product-card { max-width: 100%; }

  .membership-mockup { flex-direction: column; gap: 20px; min-height: auto; padding: 10px 0; }
  .mcard, .mcard-main, .mcard-left, .mcard-right {
    position: relative; left: auto; right: auto;
    transform: none !important;
    width: 100%;
    animation: none;
  }
  .float-stat { display: none; }

  .shop-mockup { min-height: auto; padding: 10px 0 0; }
  .float-shop { display: none; }

  .footer-inner { flex-direction: column; gap: 14px; }
  .footer-copy { order: 2; }
  .footer-links { justify-content: center; order: 3; }
  .footer-social { order: 1; }
}
