:root {
  --ig: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  --ink: #000;
  --ink-2: #262626;
  --ink-soft: #737373;
  --ink-muted: #8e8e8e;
  --ink-dim: #c7c7c7;
  --canvas: #fff;
  --canvas-soft: #fafafa;
  --surface: #efefef;
  --action: #0095f6;
  --like: #ed4956;
  --link: #00376b;
  --sans: Inter, "Noto Sans TC", "Noto Sans HK", system-ui, sans-serif;
  --script: "Grand Hotel", cursive;
  --radius: 8px;
}

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

html.lenis,
html.lenis body {
  height: auto;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 3px;
  background: var(--ig);
  transform: scaleX(0);
  pointer-events: none;
}

.cursor {
  display: none;
}

.has-cursor {
  cursor: none;
}

.has-cursor a,
.has-cursor button {
  cursor: none;
}

.has-cursor .cursor {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ig);
  pointer-events: none;
  mix-blend-mode: multiply;
  transition: width 0.2s, height 0.2s;
}

.has-cursor .cursor.is-hot {
  width: 36px;
  height: 36px;
}

body {
  margin: 0;
  color: var(--ink-2);
  background: var(--canvas);
  font-family: var(--sans);
  line-height: 1.5;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: #fff;
  padding: 0.5rem 0.8rem;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 6vw;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--surface);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: inherit;
  text-decoration: none;
}

.brand-photo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
}

.brand-handle {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}

.topbar-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.topbar-nav a {
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
}

.lang {
  display: inline-flex;
  border: 1px solid var(--surface);
  border-radius: 999px;
  overflow: hidden;
}

.lang a {
  padding: 0.28rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.lang a[aria-current="page"] {
  background: var(--ink);
  color: #fff;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--surface);
  background: #fff;
  border-radius: var(--radius);
  padding: 0.4rem 0.75rem;
  font: inherit;
}

main {
  padding: 0 6vw 4rem;
  max-width: 1080px;
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 4.8rem 6vw 2.8rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(240, 148, 51, 0.18), transparent 52%),
    radial-gradient(ellipse at 80% 20%, rgba(188, 24, 136, 0.12), transparent 45%);
  margin: 0 -6vw;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.blob-a {
  width: 220px;
  height: 220px;
  left: 8%;
  top: 10%;
  background: rgba(240, 148, 51, 0.28);
}

.blob-b {
  width: 180px;
  height: 180px;
  right: 10%;
  bottom: 0;
  background: rgba(188, 24, 136, 0.22);
}

.pill {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 0 1.1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(237, 73, 86, 0.1);
  color: var(--like);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-actions {
  position: relative;
  z-index: 1;
}

h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 1.6rem;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
}

h1 .word {
  display: inline-block;
}

h1 em {
  font-family: var(--script);
  font-style: normal;
  background: var(--ig);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0;
  padding: 0 0.12em;
}

.lede {
  max-width: 36rem;
  margin: 0 auto 1.6rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.hero-actions,
.profile-actions,
.feed-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius);
  padding: 0.7rem 1.1rem;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn:active {
  transform: scale(0.98);
}

.btn-blue {
  background: var(--action);
  color: #fff !important;
}

.btn-black {
  background: var(--ink);
  color: #fff !important;
}

.btn-gray {
  background: var(--surface);
  color: var(--ink) !important;
}

.btn-outline {
  background: #fff;
  color: var(--ink) !important;
  border: 1px solid var(--surface);
}

.btn-gradient {
  background: var(--ig);
  color: #fff !important;
}

.profile-card {
  border: 1px solid var(--surface);
  border-radius: 16px;
  padding: 1.5rem;
  background: var(--canvas);
  margin-bottom: 1rem;
}

.profile-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
}

.avatar-ring {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  padding: 3px;
  background: var(--ig);
}

.avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  background: #111;
}

.username {
  margin: 0 0 0.7rem;
  font-weight: 600;
  font-size: 1.15rem;
}

.profile-stats {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
  font-size: 0.92rem;
}

.profile-stats strong {
  display: block;
  font-size: 1.15rem;
}

.name {
  margin: 0;
  font-weight: 600;
}

.bio,
.section-head p {
  margin: 0.25rem 0 0.5rem;
  color: var(--ink-soft);
}

.bio-link {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-weight: 600;
  color: var(--link);
}

.profile-actions {
  justify-content: flex-start;
}

.highlights {
  display: flex;
  gap: 1.4rem;
  list-style: none;
  padding: 1.2rem 0 0;
  margin: 1rem 0 0;
  border-top: 1px solid var(--surface);
}

.highlights li {
  text-align: center;
}

.hl-ring {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 0.4rem;
  border-radius: 50%;
  padding: 2.5px;
  background: var(--ig);
}

.hl-ring span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  background: var(--canvas-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.highlights small {
  color: var(--ink-2);
  font-size: 0.72rem;
}

section {
  padding: 3.2rem 0;
  scroll-margin-top: 4.2rem;
}

.section-head {
  max-width: 38rem;
  margin-bottom: 1.5rem;
}

.kicker {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  color: var(--ink);
}

h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.metric-grid,
.two-col,
.three-col,
.four-col,
.steps,
.collab-form,
.feed,
.embed-grid {
  display: grid;
  gap: 0.85rem;
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}

.metric-grid li,
.panel,
.steps li,
.feed li {
  min-width: 0;
  background: var(--canvas-soft);
  border: 1px solid var(--surface);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.metric-grid li:hover,
.panel:hover,
.steps li:hover,
.tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.07);
}

.metric-grid span {
  display: block;
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.metric-grid strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
}

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

.feed li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 1rem;
  padding: 0.85rem;
  background: #fff;
}

.feed-art {
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
}

.art-1 { background: linear-gradient(160deg, #f09433, #dc2743); }
.art-2 { background: linear-gradient(160deg, #dc2743, #bc1888); }
.art-3 { background: linear-gradient(160deg, #e6683c, #0095f6); }

.feed-user {
  margin: 0 0 0.2rem;
  font-weight: 600;
  font-size: 0.88rem;
}

.feed-body p {
  margin: 0 0 0.45rem;
  color: var(--ink-2);
}

.feed-meta {
  justify-content: flex-start;
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.78rem;
}

.two-col {
  grid-template-columns: 1fr 1fr;
}

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

.four-col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.embed-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.embed-card {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.embed-card figcaption {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.embed-clip {
  height: 360px;
  overflow: hidden;
  border-radius: 10px;
  background: var(--canvas-soft);
  border: 1px solid var(--surface);
}

.embed-card .instagram-media {
  margin: 0 auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

.addons {
  margin-top: 0.85rem;
}

.panel-featured {
  background: #fff;
  box-shadow: inset 0 0 0 1px transparent;
  background-image: linear-gradient(#fff, #fff), var(--ig);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 1px solid transparent;
}

.badge {
  display: inline-block;
  margin: 0 0 0.5rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
}

.accent {
  color: var(--like);
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.bars {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.45rem;
}

.bars li {
  background: var(--surface);
  border-radius: 4px;
  overflow: hidden;
}

.bars span {
  display: block;
  background: var(--ig);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.7rem;
  min-width: max-content;
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  background: #fff;
}

.steps h3::before {
  content: counter(step) "  ";
  color: var(--ink-muted);
}

.collab-form {
  grid-template-columns: 1fr 1fr;
  width: min(44rem, 100%);
  max-width: 44rem;
}

#contact {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contact .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

#contact .collab-form {
  margin: 0 auto;
  text-align: left;
}

.collab-form label,
.collab-form .full {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-2);
}

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

.collab-form input,
.collab-form select,
.collab-form textarea {
  width: 100%;
  border: 1px solid var(--surface);
  background: var(--canvas-soft);
  border-radius: var(--radius);
  padding: 0.7rem 0.8rem;
  font: inherit;
  font-weight: 400;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.thanks-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(240, 148, 51, 0.16), transparent 52%),
    var(--canvas);
}

.thanks-card {
  max-width: 28rem;
  text-align: center;
}

.ticker {
  overflow: hidden;
  margin: 0 -6vw 0.5rem;
  padding: 0.85rem 0;
  border-block: 1px solid var(--surface);
  background: #fff;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: marquee 22s linear infinite;
  font-size: 0.84rem;
  font-weight: 600;
}

.ticker-set {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2.4rem;
  padding-right: 2.4rem;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  white-space: nowrap;
}

.ticker-track span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ig);
  flex-shrink: 0;
}

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

.audience-block {
  margin-bottom: 1.5rem;
}

.audience-block h3 {
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.audience-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.75rem;
}

.audience-geo {
  grid-template-columns: 1.3fr 1fr 1fr;
}

.tile {
  --share: 0%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 188px;
  padding: 1.25rem 1.2rem;
  border-radius: 22px;
  background:
    radial-gradient(120% 80% at 0% 100%, rgba(220, 39, 67, 0.08), transparent 55%),
    #f7f7f8;
  border: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.tile::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--share);
  z-index: 0;
  background: linear-gradient(180deg, rgba(240, 148, 51, 0.18), rgba(188, 24, 136, 0.28));
  border-radius: 18px 18px 0 0;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='80' height='80' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.tile-hk {
  background-image:
    radial-gradient(90% 70% at 12% 88%, rgba(255, 255, 255, 0.28), transparent 50%),
    var(--ig);
  color: #fff;
  box-shadow: 0 18px 40px rgba(188, 24, 136, 0.22);
}

.tile-hk::before {
  display: none;
}

.tile-age-lead {
  background-image:
    radial-gradient(90% 70% at 12% 88%, rgba(255, 255, 255, 0.2), transparent 50%),
    linear-gradient(160deg, #262626, #000);
  color: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
}

.tile-age-lead::before {
  display: none;
}

.tile strong,
.tile span {
  position: relative;
  z-index: 1;
}

.tile strong {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.tile span {
  margin-top: 0.4rem;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

#pillars .three-col {
  counter-reset: lane;
}

#pillars .panel h3::before {
  counter-increment: lane;
  content: counter(lane, decimal-leading-zero) "  ";
  color: var(--ink-muted);
  font-weight: 600;
}

.metric-grid,
.three-col,
.audience-row,
.steps {
  perspective: 900px;
}

.dock {
  position: sticky;
  bottom: 1rem;
  z-index: 9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: min(1080px, calc(100% - 12vw));
  margin: 0 auto 1.2rem;
  padding: 0.65rem 0.7rem 0.65rem 1.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--surface);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.dock.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.dock.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

@media (max-width: 1080px) {
  .four-col {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .embed-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .embed-clip {
    height: 340px;
  }
}

@media (max-width: 900px) {
  .three-col,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .topbar-nav {
    display: none;
    position: absolute;
    inset: 3.4rem 6vw auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--surface);
    border-radius: 12px;
  }

  .topbar-nav.open {
    display: flex;
  }

  .profile-head,
  .two-col,
  .metric-grid,
  .collab-form,
  .feed li {
    grid-template-columns: 1fr;
  }

  .audience-row,
  .audience-geo {
    grid-template-columns: 1fr 1fr;
  }

  .tile-hk {
    grid-column: 1 / -1;
    min-height: 160px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.8rem);
  }

  .profile-head {
    justify-items: start;
  }

  .dock {
    width: calc(100% - 8vw);
    border-radius: 18px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .profile-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .three-col,
  .four-col,
  .steps,
  .metric-grid,
  .audience-row,
  .audience-geo {
    grid-template-columns: 1fr;
  }

  .tile-hk {
    grid-column: auto;
  }

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

  .embed-clip {
    height: 300px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .ticker-track {
    animation: marquee 28s linear infinite !important;
  }

  .dock {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
