/* ============================================
   TUAN VY — Global Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Montserrat:wght@300;400;600;700;800&display=swap');

/* --- Tokens --- */
:root {
  --black: #0a0a08;
  --white: #ffffff;
  --gold: #c9a84c;
  --gray: #9a9a92;
  --gray-mid: #c5c5be;
  --gray-light: rgba(255,255,255,0.88);
  --border: rgba(255,255,255,0.05);
  --border-mid: rgba(255,255,255,0.1);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; background-color: #0a0a08; }
body { background: var(--black); color: var(--white); font-family: var(--sans); font-weight: 300; font-size: 17px; line-height: 1.9; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font-family: inherit; border: none; outline: none; background: none; color: inherit; }

/* --- Nav --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
  background: rgba(10,10,8,0.96); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo svg { flex-shrink: 0; }
.nav-logo-text { font-family: var(--sans); font-weight: 700; font-size: 12px; letter-spacing: 0.28em; color: var(--white); }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-family: var(--sans); font-weight: 400; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.55); transition: color 0.3s;
  position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.4s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  font-family: var(--sans); font-weight: 700; font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold);
  padding: 10px 20px; transition: background 0.3s, color 0.3s; cursor: pointer;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; z-index: 1001; }
.nav-hamburger span { display: block; width: 22px; height: 1px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile overlay */
.nav-mobile-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 999;
  background: rgba(10,10,8,0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  opacity: 0; pointer-events: none; transition: opacity 0.35s;
}
.nav-mobile-overlay.open { opacity: 1; pointer-events: auto; }
.nav-mobile-overlay a {
  font-family: var(--sans); font-weight: 400; font-size: 14px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.85); transition: color 0.3s;
}
.nav-mobile-overlay a:hover, .nav-mobile-overlay a.active { color: var(--white); }

/* --- Page hero (inner pages) --- */
.page-hero {
  padding: 130px 40px 32px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.page-hero .eyebrow {
  font-family: var(--sans); font-weight: 700; font-size: 11px;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px;
}
.page-hero .hero-logo { margin-bottom: 20px; }
.page-hero .hero-headline {
  font-family: var(--sans); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: clamp(36px, 6vw, 64px); margin-bottom: 20px;
}
.page-hero .hero-tagline {
  font-family: var(--sans); font-weight: 300; font-size: 16px;
  color: var(--gray-light); max-width: 520px; line-height: 1.7;
}

/* --- Product name treatment --- */
.product-name { display: inline-flex; align-items: flex-start; line-height: 0.9; }
.product-name .the {
  font-family: var(--sans); font-weight: 700; font-size: 0.22em;
  letter-spacing: 0.08em; text-transform: uppercase; margin-right: 0.06em;
  margin-top: 0.38em;
}
.product-name .main {
  font-family: var(--sans); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product-name .dot {
  display: inline-block; background: var(--white); width: 0.12em; height: 0.12em;
  margin-left: 0.06em; align-self: flex-end; margin-bottom: 0.15em;
}

/* --- Buttons --- */
.btn-primary {
  display: inline-block; font-family: var(--sans); font-weight: 700; font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 16px 36px; background: #ffffff; color: #000000;
  transition: background 0.3s, transform 0.3s; cursor: pointer; text-decoration: none;
}
.btn-primary:hover { background: var(--gold); color: var(--black); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block; font-family: var(--sans); font-weight: 700; font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  padding: 16px 36px; border: 1px solid rgba(255,255,255,0.6); color: var(--white);
  transition: border-color 0.3s, transform 0.3s; cursor: pointer; text-decoration: none;
}
.btn-ghost:hover { border-color: var(--gold); transform: translateY(-1px); }

/* --- Optin form --- */
.optin-wrap {
  max-width: 480px; width: 100%; margin: 0 auto;
  padding: 20px 24px; background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-mid);
  position: relative; transition: border-color 0.3s;
}
.optin-wrap:hover { border-color: rgba(201,168,76,0.3); }
.optin-wrap::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.optin-wrap:hover::after { width: 100%; }
.optin-wrap .optin-label {
  display: block; text-align: center; font-family: var(--sans); font-weight: 700;
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.optin-wrap input {
  display: block; width: 100%; padding: 14px 0; margin-bottom: 16px;
  font-family: var(--sans); font-weight: 300; font-size: 12px;
  letter-spacing: 0.12em; text-transform: none; color: var(--white);
  border: none; border-bottom: 1px solid var(--border-mid);
  background: transparent; transition: border-color 0.3s;
}
.optin-wrap input::placeholder { color: var(--gray); }
.optin-wrap input:focus { border-bottom-color: var(--gold); }
.optin-wrap button {
  display: block; width: 100%; margin-top: 24px; padding: 16px;
  font-family: var(--sans); font-weight: 700; font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase;
  background: #ffffff; color: #000000; cursor: pointer;
  transition: background 0.3s;
}
.optin-wrap button:hover { background: var(--gold); color: var(--black); }
.optin-note {
  text-align: center; font-family: var(--sans); font-weight: 300;
  font-size: 11px; color: var(--gray); margin-top: 16px;
}

/* --- Sections --- */
.section { padding: 100px 40px; }
.section-centered { text-align: center; display: flex; flex-direction: column; align-items: center; }

/* --- Stats grid --- */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 60px 40px; text-align: center;
  min-height: 200px; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.stat-number {
  font-family: var(--serif); font-weight: 300; font-size: 120px;
  color: var(--white); line-height: 1;
}
.stat-label {
  font-family: var(--sans); font-weight: 700; font-size: 9px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray);
  margin-top: 20px;
}

/* --- Venture cards --- */
.venture-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: transparent;
}
.venture-card {
  padding: 56px 48px; text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative; transition: transform 0.4s var(--ease), border-color 0.3s;
  display: flex; flex-direction: column; align-items: center;
  min-height: 420px;
}
.venture-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1px;
  background: var(--gold); transition: width 0.5s var(--ease);
}
.venture-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.3); }
.venture-card:hover::after { width: 100%; }
.venture-name-area {
  height: 80px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.venture-name-area img { display: block; }
.venture-tier {
  font-family: var(--sans); font-weight: 700; font-size: 9px;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 24px; text-align: center; display: block;
}
.venture-desc {
  font-family: var(--sans); font-weight: 300; font-size: 14px;
  color: var(--gray-mid); line-height: 1.7; margin-bottom: 24px;
  max-width: 280px; text-align: center; margin-left: auto; margin-right: auto;
}
.venture-price {
  font-family: var(--sans); font-weight: 700; font-size: 9px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray);
  margin-bottom: 24px; text-align: center; display: block;
}
.venture-cta {
  font-family: var(--sans); font-weight: 700; font-size: 10px;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--white);
  transition: color 0.3s; margin-top: auto; text-align: center; display: block;
}
.venture-cta:hover { color: var(--gold); }

/* --- Divider --- */
.divider {
  display: flex; align-items: center; gap: 20px;
  max-width: 200px; margin: 32px auto;
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border-mid);
}
.divider-diamond {
  width: 6px; height: 6px; background: var(--gold);
  transform: rotate(45deg); flex-shrink: 0;
}

/* --- Full bleed image --- */
.full-bleed {
  width: 100%; height: 520px; overflow: hidden;
}
.full-bleed img {
  width: 100%; height: 100%; object-fit: cover;
}

/* --- Quote section --- */
.quote-section {
  min-height: unset; height: auto; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 60px 40px; position: relative;
}
.quote-mark {
  font-family: var(--serif); font-size: 80px; color: var(--gold);
  opacity: 0.6; line-height: 1; margin-bottom: 16px;
}
.quote-text {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(32px,4.5vw,56px); line-height: 1.3;
  max-width: 800px; color: rgba(255,255,255,0.92);
}
.quote-text em { font-style: italic; color: var(--gold); }
.quote-attr {
  font-family: var(--sans); font-weight: 400; font-size: 13px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray-mid);
  margin-top: 32px;
}

/* --- Three-cell grid --- */
.three-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border-mid); border-bottom: 1px solid var(--border-mid);
}
.three-cell {
  padding: 48px 32px; border-right: 1px solid var(--border);
}
.three-cell:last-child { border-right: none; }
.cell-number {
  font-family: var(--serif); font-weight: 300; font-size: 64px;
  color: var(--gold); opacity: 0.35; line-height: 1; margin-bottom: 16px;
}
.cell-title {
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--white);
  margin-bottom: 12px;
}
.cell-desc {
  font-family: var(--sans); font-weight: 300; font-size: 14px;
  color: var(--gray-mid); line-height: 1.7;
}

/* --- Two-col grid (about) --- */
.two-col {
  display: grid; grid-template-columns: 5fr 7fr; gap: 64px;
  padding: 0 40px; max-width: 1200px; margin: 0 auto;
}
.two-col-photo { align-self: start; }
.two-col-photo img { width: 100%; height: auto; }
.two-col-content { padding: 40px 0; }
.two-col-content p {
  font-family: var(--sans); font-weight: 300; font-size: 16px;
  color: var(--gray-light); line-height: 1.8; margin-bottom: 28px;
}
.two-col-content p strong { font-weight: 600; color: var(--white); }

/* --- Pull quote --- */
.pull-quote {
  border-left: 2px solid var(--gold); padding-left: 24px; margin: 40px 0;
}
.pull-quote p {
  font-family: var(--serif); font-weight: 300; font-size: 24px;
  color: var(--white); line-height: 1.5; font-style: italic;
}

/* --- Photo grid (2x2) --- */
.photo-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3px;
  margin-top: 80px;
}
.photo-grid img { width: 100%; height: 280px; object-fit: cover; }

/* --- Sample post (Signal page) --- */
.sample-post {
  max-width: 660px; margin: 0 auto; padding: 48px;
  border: 1px solid var(--border-mid); position: relative;
}
.sample-post .post-tag {
  font-family: var(--sans); font-weight: 700; font-size: 9px;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.sample-post .post-title {
  font-family: var(--serif); font-weight: 300; font-size: 36px;
  color: var(--white); margin-bottom: 20px;
}
.sample-post .post-body {
  font-family: var(--sans); font-weight: 300; font-size: 15px;
  color: var(--gray-light); line-height: 1.8;
}
.sample-post .post-fade {
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--border-mid);
  display: flex; justify-content: center;
}

/* --- 2x2 feature grid --- */
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--border-mid); max-width: 800px; margin: 0 auto;
  border: 1px solid var(--border-mid);
}
.feature-cell {
  padding: 40px; background: var(--black);
}
.feature-cell-title {
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  color: var(--white); margin-bottom: 8px;
}
.feature-cell-desc {
  font-family: var(--sans); font-weight: 300; font-size: 14px;
  color: var(--gray-mid); line-height: 1.7;
}

/* --- Pricing block --- */
.pricing-block { text-align: center; padding: 40px 40px; }
.pricing-number {
  font-family: var(--serif); font-weight: 300; font-size: 96px;
  color: var(--white); line-height: 1;
}
.pricing-per {
  font-family: var(--sans); font-weight: 700; font-size: 9px;
  letter-spacing: 0.4em; text-transform: uppercase; color: var(--gray);
  margin-top: 8px; margin-bottom: 32px;
}
.pricing-features {
  list-style: none; margin-bottom: 40px;
}
.pricing-features li {
  font-family: var(--sans); font-weight: 300; font-size: 14px;
  color: var(--gray-light); padding: 6px 0;
}

/* --- Masonry gallery --- */
.masonry-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3px; margin: 60px 0;
}
.masonry-gallery .g-img {
  overflow: hidden; position: relative;
}
.masonry-gallery .g-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.6s;
}
.masonry-gallery .g-img:hover img { transform: scale(1.04); filter: brightness(1.15); }
.masonry-gallery .g-tall { grid-row: span 2; }
.masonry-gallery .g-wide { grid-column: span 2; }

/* --- Apply block --- */
.apply-block {
  max-width: 560px; margin: 0 auto; padding: 48px;
  border: 1px solid var(--border-mid); text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.apply-block:hover {
  border-color: rgba(201, 168, 76, 0.5);
  transform: translateY(-3px);
}
.apply-block .apply-logo { margin: 0 auto 16px; }
.apply-block p {
  font-family: var(--sans); font-weight: 300; font-size: 14px;
  color: var(--gray-mid); line-height: 1.7; margin-bottom: 28px;
}

/* --- Pricing gold box (Signal page) --- */
.pricing-gold-box {
  border: 1px solid rgba(201,168,76,0.3);
  padding: 28px 36px;
  max-width: 500px;
  margin: 0 auto;
  transition: border-color 0.3s;
}
.pricing-gold-box:hover { border-color: rgba(201,168,76,0.6); }

/* --- Not-for statement --- */
.not-for {
  font-family: var(--serif); font-weight: 300; font-style: italic;
  font-size: 22px; color: var(--gray-mid); text-align: center;
  max-width: 640px; margin: 60px auto; line-height: 1.6;
}

/* --- Operator page --- */
.operator-full {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; position: relative;
  overflow: hidden;
}
.operator-bg {
  position: absolute; font-family: var(--serif); font-weight: 300;
  font-size: 15vw; text-transform: uppercase; color: var(--white);
  opacity: 0.022; white-space: nowrap; pointer-events: none;
  user-select: none;
}
.operator-vline {
  width: 1px; height: 60px; background: var(--border-mid);
  margin: 20px 0;
}

/* --- Footer --- */
.footer {
  padding: 60px 40px 40px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 40px; max-width: 1100px; margin: 0 auto;
  align-items: flex-start;
}
.footer-grid-right {
  display: flex; gap: 20px; justify-content: flex-end;
}
.footer-copy {
  font-family: var(--sans); font-weight: 300; font-size: 11px;
  color: rgba(255,255,255,0.75); letter-spacing: 0.08em; text-align: center;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 24px; }
  .footer-col-left { align-items: center !important; }
  .footer-col-left img { margin-left: auto; margin-right: auto; }
  .footer-grid-right { justify-content: center; }
}

/* --- Foundation hero logo mobile --- */
@media (max-width: 768px) {
  .hero-logo-foundation { margin-top: -60px !important; margin-bottom: -40px !important; }
}

/* --- Rooms grid (foundation.html) --- */
.rooms-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; max-width: 1100px; margin: 0 auto;
}
@media (max-width: 768px) {
  .rooms-grid { grid-template-columns: 1fr; }
}

/* --- Animations --- */
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-h1-anim {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: 0.1s;
}

.reveal-line { overflow: hidden; }
.reveal-inner {
  display: block; transform: translateY(100%);
  transition: transform 0.9s var(--ease);
}
.reveal-inner.visible { transform: translateY(0); }

.fu {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.fu.visible { opacity: 1; transform: translateY(0); }

.stagger-cells .fu { transition-delay: 0s; }
.stagger-cells .fu:nth-child(2) { transition-delay: 0.1s; }
.stagger-cells .fu:nth-child(3) { transition-delay: 0.18s; }
.stagger-cells .fu:nth-child(4) { transition-delay: 0.26s; }
.stagger-cells .fu:nth-child(5) { transition-delay: 0.34s; }
.stagger-cells .fu:nth-child(6) { transition-delay: 0.42s; }
.stagger-cells .fu:nth-child(7) { transition-delay: 0.50s; }
.stagger-cells .fu:nth-child(8) { transition-delay: 0.58s; }

/* --- Responsive --- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 0 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .venture-grid { grid-template-columns: 1fr; }
  .venture-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.025); text-align: center; }
  .three-grid { grid-template-columns: 1fr; }
  .three-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .three-cell:last-child { border-bottom: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col-photo { position: static; }
  .feature-grid { grid-template-columns: 1fr; }
  .masonry-gallery { grid-template-columns: 1fr 1fr; }
  .masonry-gallery .g-tall { grid-row: span 1; }
  .masonry-gallery .g-wide { grid-column: span 2; }
  .section { padding: 60px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .photo-grid img { height: 200px; }
  .pricing-number { font-size: 64px; }
}

/* Hero logo negative margin scales with image (image = 65vw below 677px viewport) */
@media (max-width: 768px) {
  .page-hero .hero-logo {
    margin-top: calc(-14px - 24.7vw) !important;
    margin-bottom: calc(-12px - 23vw) !important;
  }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-number { font-size: 48px; }
  .photo-grid { grid-template-columns: 1fr; }
  .masonry-gallery { grid-template-columns: 1fr; }
  .masonry-gallery .g-wide { grid-column: span 1; }
  .full-bleed { height: 320px; }
  .optin-wrap { padding: 28px 20px; }
}

@media (max-width: 768px) {
  .fu[style*="repeat(3,1fr)"] {
    grid-template-columns: repeat(2,1fr) !important;
  }
}

/* ── SIGNAL FEED MOCKUP ─────────────────────────── */
.signal-feed-section {
  padding: 80px 0 100px;
}

.signal-feed-wrapper {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
}

.signal-feed-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.signal-feed-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #c9a84c;
}

.signal-feed-count {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.3);
}

.signal-feed-container {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.signal-post {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 36px 40px 48px;
  overflow: hidden;
}

.signal-post--latest {
  border-color: rgba(201,168,76,0.2);
  background: rgba(201,168,76,0.03);
}

.signal-post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.signal-post-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: #c9a84c;
}

.signal-post-date {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
}

.signal-post-latest-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #0a0a08;
  background: #c9a84c;
  padding: 3px 8px;
  margin-bottom: 14px;
}

.signal-post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 20px;
  line-height: 1.15;
}

.signal-post-body {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.signal-post-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #0a0a08);
  pointer-events: none;
}

.signal-waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-top: 24px;
  height: 24px;
}

.signal-waveform span {
  display: block;
  width: 3px;
  background: #c9a84c;
  border-radius: 2px;
  opacity: 0.7;
  animation: wave 1.2s ease-in-out infinite;
}

.signal-waveform span:nth-child(1) { height: 8px; animation-delay: 0s; }
.signal-waveform span:nth-child(2) { height: 16px; animation-delay: 0.1s; }
.signal-waveform span:nth-child(3) { height: 22px; animation-delay: 0.2s; }
.signal-waveform span:nth-child(4) { height: 14px; animation-delay: 0.3s; }
.signal-waveform span:nth-child(5) { height: 20px; animation-delay: 0.4s; }
.signal-waveform span:nth-child(6) { height: 10px; animation-delay: 0.5s; }
.signal-waveform span:nth-child(7) { height: 18px; animation-delay: 0.6s; }
.signal-waveform span:nth-child(8) { height: 24px; animation-delay: 0.7s; }
.signal-waveform span:nth-child(9) { height: 12px; animation-delay: 0.8s; }
.signal-waveform span:nth-child(10) { height: 6px; animation-delay: 0.9s; }

@keyframes wave {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50% { transform: scaleY(0.4); opacity: 0.3; }
}

.signal-pdf-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.signal-pdf-icon {
  font-size: 14px;
  color: #c9a84c;
}

.signal-pdf-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.3);
}

.signal-scrollbar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  padding: 0 4px;
}

.signal-scrollbar-track {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  position: relative;
}

.signal-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 18%;
  height: 100%;
  background: #c9a84c;
  border-radius: 2px;
  opacity: 0.6;
}

.signal-scrollbar-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
}

.signal-feed-cta {
  text-align: center;
  margin-top: 56px;
}
