/* Sneaker Heads — Brutalist streetwear template (distinct from restaurant / IT sites) */
:root {
  --bg: #0a0a0b;
  --bg-2: #121214;
  --bg-3: #1a1a1e;
  --lime: #c8ff00;
  --lime-dim: #9acc00;
  --pink: #ff2d6a;
  --pink-soft: #ff6b94;
  --text: #f4f4f5;
  --text-soft: #a1a1aa;
  --text-muted: #71717a;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(200, 255, 0, 0.35);
  --font-display: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Kanit', system-ui, sans-serif;
  --rail-w: 72px;
  --header-h: 64px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-weight: 400;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Side rail (desktop only) */
.rail {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--rail-w);
  z-index: 200;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  border-right: 1px solid var(--line);
  background: var(--bg);
}

.rail-logo img { display: block; }

.rail-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rail-nav a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  border: 1px solid var(--line);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  position: relative;
}

.rail-nav a:hover,
.rail-nav a:focus-visible {
  color: var(--bg);
  background: var(--lime);
  border-color: var(--lime);
}

.rail-nav a::after {
  content: attr(data-tip);
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  padding: 0.35rem 0.65rem;
  background: var(--lime);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.rail-nav a:hover::after { opacity: 1; }

.rail-tag {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.page {
  min-height: 100vh;
}

/* Top bar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(12px);
}

.topbar.scrolled {
  border-color: var(--line-strong);
}

.topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.wm-sm {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.wm-lg {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.wm-lg em {
  font-style: normal;
  color: var(--lime);
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s;
}

.nav a:hover { color: var(--lime); }

.nav-pill {
  padding: 0.5rem 1.1rem;
  background: var(--lime);
  color: var(--bg) !important;
  font-weight: 600;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.nav-pill:hover {
  background: var(--pink);
  color: var(--text) !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  width: 36px;
  height: 36px;
  padding: 8px;
  background: none;
  border: 1px solid var(--line);
  cursor: pointer;
}

.burger i {
  display: block;
  height: 2px;
  background: var(--lime);
  transition: transform 0.3s, opacity 0.3s;
}

.burger.active i:first-child { transform: translateY(9px) rotate(45deg); }
.burger.active i:last-child { transform: translateY(-9px) rotate(-45deg); }

/* Ticker */
.ticker {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--lime);
  color: var(--bg);
  padding: 0.55rem 0;
}

.ticker-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.25rem 4rem;
  align-items: center;
}

.stamp {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--pink);
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  margin-bottom: 1.25rem;
}

.hero h1 .line {
  display: block;
  font-size: clamp(3.5rem, 12vw, 7.5rem);
  letter-spacing: 0.02em;
}

.hero h1 .accent { color: var(--lime); }
.hero h1 .outline {
  -webkit-text-stroke: 2px var(--text);
  color: transparent;
}

.hero-text {
  max-width: 32rem;
  color: var(--text-soft);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 1.75rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-lime {
  background: var(--lime);
  color: var(--bg);
  clip-path: polygon(12px 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.btn-lime:hover { background: var(--pink); color: var(--text); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.btn-block { width: 100%; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.25rem;
  color: var(--lime);
  line-height: 1;
}

.hero-stats span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), calc(100% - 48px) 100%, 0 100%);
  border: 2px solid var(--lime);
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hero-sticker {
  position: absolute;
  top: -1rem;
  right: -0.5rem;
  background: var(--pink);
  color: var(--text);
  padding: 0.75rem 1rem;
  text-align: center;
  transform: rotate(6deg);
  box-shadow: 6px 6px 0 var(--bg);
}

.hero-sticker span {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-sticker strong {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.hero-badge {
  position: absolute;
  bottom: 1.5rem;
  left: -1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem 0.65rem 0.65rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  max-width: calc(100% + 1rem);
}

.hero-badge img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 2px solid var(--lime);
}

.hero-badge span {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero-badge strong {
  display: block;
  font-size: 0.95rem;
}

/* Sections */
.section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
}

.label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.section-head h2 span { color: var(--lime); }

.section-head p {
  color: var(--text-soft);
  max-width: 28rem;
  font-weight: 300;
}

/* Bento drops */
.bento {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}

.bento article {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  background: var(--bg-2);
}

.bento img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  transition: transform 0.6s var(--ease);
}

.bento article:hover img { transform: scale(1.05); }

.bento-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  background: linear-gradient(transparent 40%, rgba(10, 10, 11, 0.92));
}

.bento-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.bento-overlay p {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.bento-overlay.sm h3 { font-size: 1.35rem; }

.tag {
  align-self: flex-start;
  padding: 0.25rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border: 1px solid var(--text);
  margin-bottom: 0.5rem;
}

.tag-hot {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--text);
}

.link-arrow {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lime);
}

.link-arrow:hover { text-decoration: underline; }

.accent-tile {
  background: var(--lime);
  color: var(--bg);
  min-height: 180px;
}

.tile-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1.5rem;
}

.tile-inner span {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
}

.tile-inner p {
  font-weight: 500;
  margin: 0.25rem 0 1rem;
}

.tile-inner a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Scroll row */
.scroll-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.scroll-row::-webkit-scrollbar { height: 4px; }
.scroll-row::-webkit-scrollbar-thumb { background: var(--lime); }

.card-mini {
  flex: 0 0 200px;
  scroll-snap-align: start;
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: border-color 0.2s;
}

.card-mini:hover { border-color: var(--lime); }

.card-mini img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.card-mini h4 {
  padding: 0.75rem 0.75rem 0.25rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.card-mini span {
  display: block;
  padding: 0 0.75rem 0.75rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--lime);
}

/* Culture */
.culture {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.culture-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.culture-media {
  position: relative;
}

.culture-media img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  filter: grayscale(20%);
}

.culture-float {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--pink);
  color: var(--text);
  box-shadow: 8px 8px 0 var(--bg);
}

.culture-float strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.culture-float span { font-size: 0.8rem; }

.culture-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.culture-copy h2 span { color: var(--lime); }

.culture-copy > p {
  color: var(--text-soft);
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.checklist {
  margin-bottom: 1.75rem;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--text-soft);
  font-weight: 400;
}

.checklist li::before {
  content: '■';
  position: absolute;
  left: 0;
  color: var(--lime);
  font-size: 0.6rem;
  top: 0.35rem;
}

/* Events */
.events-layout {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.events-visual img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border: 2px solid var(--line);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.event-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  transition: background 0.2s;
}

.event-card:hover {
  background: var(--bg-2);
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.event-card time {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 56px;
  padding: 0.5rem;
  background: var(--bg-3);
  border: 1px solid var(--line-strong);
}

.ev-day {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--lime);
  line-height: 1;
}

.ev-mon {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.event-card h3 {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.event-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.ev-cta {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  border: 1px solid var(--lime);
  color: var(--lime);
  transition: background 0.2s, color 0.2s;
}

.ev-cta:hover {
  background: var(--lime);
  color: var(--bg);
}

/* Tiers */
.tiers {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.tier {
  position: relative;
  padding: 1.75rem;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.tier-featured {
  border-color: var(--lime);
  background: var(--bg-3);
  box-shadow: inset 0 0 0 1px rgba(200, 255, 0, 0.15);
}

.tier-pop {
  position: absolute;
  top: -0.65rem;
  left: 1.25rem;
  padding: 0.2rem 0.6rem;
  background: var(--pink);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tier header {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.tier-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.tier-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--lime);
  font-weight: 400;
}

.tier-price span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.tier ul {
  margin-bottom: 1.5rem;
}

.tier li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  border-bottom: 1px dashed var(--line);
}

/* Feed */
.feed-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.feed-post {
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--bg-2);
}

.feed-post.highlight {
  border-color: var(--pink);
  background: linear-gradient(135deg, rgba(255, 45, 106, 0.08), transparent);
}

.feed-post p {
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text-soft);
  margin-bottom: 1.25rem;
}

.feed-post footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feed-post img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 0;
  border: 2px solid var(--line);
}

.feed-post cite {
  font-size: 0.85rem;
  font-style: normal;
  color: var(--text-muted);
}

/* Join */
.join {
  padding-bottom: 5rem;
}

.join-wrap {
  display: grid;
  gap: 2.5rem;
  padding: 2.5rem;
  border: 2px solid var(--lime);
  background:
    linear-gradient(135deg, rgba(200, 255, 0, 0.06) 0%, transparent 50%),
    var(--bg-2);
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.join-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 0.95;
  margin: 0.5rem 0 1rem;
}

.join-copy h2 span { color: var(--lime); }

.join-copy p { color: var(--text-soft); font-weight: 300; }

.join-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.join-form label span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.join-form input,
.join-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.join-form input:focus,
.join-form select:focus {
  outline: none;
  border-color: var(--lime);
}

.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.form-note a { color: var(--lime); }

/* Footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 2.5rem 1.25rem;
  background: var(--bg);
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wordmark-sm .wm-lg { font-size: 1.5rem; }

.footer-inner > p {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 36rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-soft);
}

.footer-links a:hover { color: var(--lime); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Articles */
.artikel {
  border-top: 1px solid var(--line);
}

.artikel-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
}

.artikel-nav a {
  padding: 0.4rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-soft);
  border: 1px solid var(--line);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.artikel-nav a:hover {
  color: var(--bg);
  background: var(--lime);
  border-color: var(--lime);
}

.artikel-quicktips {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 2px solid var(--lime);
}

.quicktips-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.quicktips-title span { color: var(--pink); }

.quicktips-lead {
  color: var(--text-soft);
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.quicktips-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

.quicktip-card {
  padding: 1.15rem 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--lime);
  transition: border-color 0.2s;
}

.quicktip-card:hover { border-left-color: var(--pink); }

.quicktip-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--lime);
  line-height: 1;
  display: block;
  margin-bottom: 0.35rem;
}

.quicktip-card h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.quicktip-card p {
  font-size: 0.82rem;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.5;
}

.artikel-post {
  display: grid;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
}

.artikel-post:last-child { border-bottom: none; }

.artikel-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border: 1px solid var(--line);
}

.artikel-cat {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.5rem;
}

.artikel-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.artikel-lead {
  font-size: 1.05rem;
  color: var(--text-soft);
  font-weight: 300;
  margin-bottom: 1rem;
}

.artikel-body p {
  color: var(--text-soft);
  font-weight: 300;
  margin-bottom: 0.85rem;
  font-size: 0.95rem;
}

.artikel-body h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 1.25rem 0 0.5rem;
}

.artikel-timeline {
  list-style: decimal;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.artikel-timeline li {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}

.artikel-timeline strong { color: var(--lime); }

.artikel-meta {
  display: block;
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* Size guide */
.ukuran {
  background: var(--bg-2);
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.ukuran .section-head,
.ukuran-wrap {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.ukuran-wrap {
  display: grid;
  gap: 1.5rem;
  padding-bottom: 1rem;
}

.ukuran-note {
  padding: 1.25rem;
  border-left: 3px solid var(--lime);
  background: var(--bg);
}

.ukuran-note p {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
}

.ukuran-note ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.ukuran-note li {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  -webkit-overflow-scrolling: touch;
}

.table-scroll::-webkit-scrollbar { height: 5px; }
.table-scroll::-webkit-scrollbar-thumb { background: var(--lime); }

.size-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.size-table thead {
  background: var(--lime);
  color: var(--bg);
}

.size-table th,
.size-table td {
  padding: 0.6rem 0.8rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.size-table th {
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.size-table tbody tr:nth-child(even) { background: rgba(255, 255, 255, 0.02); }
.size-table tbody tr:hover { background: rgba(200, 255, 0, 0.06); }
.size-table td:first-child {
  font-weight: 600;
  color: var(--lime);
  text-align: left;
}

.row-highlight { background: rgba(255, 45, 106, 0.1) !important; }

.brand-tips {
  padding: 1.25rem;
  border: 1px dashed var(--line-strong);
  background: var(--bg);
}

.brand-tips h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  color: var(--lime);
  margin-bottom: 0.75rem;
}

.brand-tips dl { display: grid; gap: 0.65rem; }

.brand-tips dt {
  font-weight: 600;
  font-size: 0.88rem;
}

.brand-tips dd {
  font-size: 0.85rem;
  color: var(--text-soft);
  padding-left: 0.65rem;
  border-left: 2px solid var(--pink);
}

/* Popular models */
.legend { border-top: 1px solid var(--line); }

.models-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin-bottom: 2.5rem;
}

.model-card {
  border: 1px solid var(--line);
  background: var(--bg-2);
  transition: border-color 0.2s;
  overflow: hidden;
}

.model-card:hover { border-color: var(--lime); }

.model-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.model-body { padding: 1.15rem; }

.model-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  margin: 0.35rem 0 0.5rem;
}

.model-body p {
  font-size: 0.88rem;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.model-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--lime);
}

.models-more-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.models-more-title span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

.models-more-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.models-text-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

.model-text {
  padding: 1rem 1.15rem;
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-left: 3px solid var(--pink);
}

.model-text h4 {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.model-text p {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 300;
  line-height: 1.55;
}

/* Animations */
.animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.animate.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 10000;
  padding: 0.85rem 1.5rem;
  background: var(--lime);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.9rem;
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s;
  max-width: min(90vw, 400px);
  text-align: center;
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Responsive */
@media (min-width: 640px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .bento-main { grid-column: 1 / 3; min-height: 320px; }
  .bento-side { min-height: 280px; }
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    padding-top: 4rem;
  }

  .culture-grid {
    grid-template-columns: 1.1fr 1fr;
  }

  .events-layout {
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
  }

  .tiers {
    grid-template-columns: repeat(3, 1fr);
  }

  .feed-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .join-wrap {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .artikel-post,
  .artikel-post--flip {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .artikel-post--flip .artikel-img { order: 2; }
  .artikel-post--flip .artikel-body { order: 1; }

  .ukuran-wrap {
    grid-template-columns: 1fr 260px;
  }

  .table-scroll { grid-column: 1 / -1; }
  .brand-tips { grid-column: 2; grid-row: 1 / 3; align-self: start; }

  .models-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .models-text-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quicktips-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .rail { display: flex; }

  .page {
    margin-left: var(--rail-w);
  }

  .bento {
    grid-template-columns: 1.4fr 1fr 0.8fr;
    grid-template-rows: 280px 220px;
  }

  .bento-main {
    grid-column: 1;
    grid-row: 1 / 3;
    min-height: 100%;
  }

  .bento-side {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .bento-tile:first-of-type { grid-column: 3; grid-row: 1; }
  .accent-tile { grid-column: 3; grid-row: 2; }

  .models-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .models-text-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quicktips-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-pill {
    text-align: center;
    margin-top: 0.5rem;
  }

  .burger { display: flex; }

  .hero-badge { left: 0.5rem; }
  .hero-sticker { right: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
  .animate { opacity: 1; transform: none; transition: none; }
}
