@font-face {
  font-family: "RocaOne-Bold Regular";
  src: url("https://framerusercontent.com/assets/qt4z1jVXwW1WsJV527GwkvP8m4.woff2")
    format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --bg: #fffff5;
  --surface: #ffffff;
  --text: #111111;
  --muted: rgba(17, 17, 17, 0.68);
  --line: rgba(17, 17, 17, 0.12);
  --primary: #0048ff;
  --primary-strong: #000dff;
  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow: 0 20px 40px rgba(13, 17, 26, 0.08);
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text);
  background: radial-gradient(
      circle at 100% 0%,
      rgba(0, 72, 255, 0.08),
      rgba(0, 72, 255, 0) 40%
    ),
    var(--bg);
  line-height: 1.5;
}

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin-inline: auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--bg) 92%, white);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-family: "RocaOne-Bold Regular", serif;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}

.logo small {
  margin-left: 0.35rem;
  color: var(--muted);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

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

.nav-link {
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav-link.active,
.nav-link:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  opacity: 0.7;
  cursor: default;
  transform: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 72, 255, 0.25);
  padding: 0.85rem 1.4rem;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  padding: 0.85rem 1.2rem;
}

.hero {
  padding: 4.25rem 0 3.2rem;
  min-height: calc(100svh - 74px);
}

.hero-section-wrapper {
  position: relative;
  overflow: hidden;
}

.logo-wall-wrapper {
  position: relative;
  overflow: visible;
}

.hero-section-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 62px;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(140% 34px at 50% -8px, rgba(10, 10, 10, 0.18) 0%, rgba(10, 10, 10, 0.08) 55%, rgba(10, 10, 10, 0) 100%) 0 0 / 100% 30px no-repeat,
    linear-gradient(to bottom, rgba(20, 20, 20, 0.08) 0%, rgba(247, 243, 234, 0.86) 58%, #f7f3ea 100%);
}

.hero-content-element {
  position: relative;
  z-index: 10;
}

.intro-asset {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  width: clamp(118px, 11vw, 170px) !important;
  height: auto;
  opacity: 0.7 !important;
  animation: none !important;
  mix-blend-mode: normal;
  filter: saturate(1.35) contrast(1.14);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(0, 72, 255, 0.1);
  color: #0037c4;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-grid {
  margin-top: 1.2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.35fr 1fr;
  align-items: start;
  position: relative;
  z-index: 2;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-family: "RocaOne-Bold Regular", "Inter", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin: 0 0 0.8rem;
}

.lead {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.stats {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.stat-pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.78);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.subscribe-card {
  padding: 1.4rem;
}

.card-title {
  margin: 0 0 0.35rem;
  font-size: 1.5rem;
}

.card-subtitle {
  margin: 0 0 1rem;
  color: var(--muted);
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
}

input[type="email"] {
  width: 100%;
  border: 1px solid #dfe2e5;
  border-radius: 999px;
  padding: 0.86rem 1rem;
  font: inherit;
  color: var(--text);
  background: rgba(187, 187, 187, 0.15);
}

input[type="email"]:focus {
  outline: 2px solid rgba(0, 72, 255, 0.35);
  outline-offset: 2px;
}

.form-note {
  margin-top: 0.55rem;
  font-size: 0.82rem;
  color: rgba(17, 17, 17, 0.58);
}

.message {
  margin-top: 0.85rem;
  font-size: 0.95rem;
  min-height: 1.25rem;
}

.message.success {
  color: #126bc5;
}

.message.error {
  color: #9f1d1d;
}

.section {
  padding: 2.3rem 0;
}

.valuation-section {
  position: relative;
  background: #f7f3ea;
  border-top: 1px solid #ddd4c4;
  border-bottom: 1px solid #ddd4c4;
  margin-top: 0;
}

.valuation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cg fill='%23111111' fill-opacity='0.25'%3E%3Ccircle cx='6' cy='8' r='0.7'/%3E%3Ccircle cx='58' cy='18' r='0.7'/%3E%3Ccircle cx='116' cy='12' r='0.6'/%3E%3Ccircle cx='34' cy='54' r='0.7'/%3E%3Ccircle cx='92' cy='62' r='0.6'/%3E%3Ccircle cx='18' cy='108' r='0.7'/%3E%3Ccircle cx='70' cy='118' r='0.6'/%3E%3Ccircle cx='126' cy='94' r='0.7'/%3E%3C/g%3E%3C/svg%3E");
}

.valuation-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 62px;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(140% 34px at 50% calc(100% + 8px), rgba(10, 10, 10, 0.18) 0%, rgba(10, 10, 10, 0.08) 55%, rgba(10, 10, 10, 0) 100%) 0 32px / 100% 30px no-repeat,
    linear-gradient(to bottom, rgba(247, 243, 234, 0.04) 0%, rgba(247, 243, 234, 0.8) 42%, var(--bg) 100%);
}

.valuation-section h2 {
  margin-bottom: 1.1rem;
  color: #111111;
  text-align: center;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  line-height: 1.18;
}

.valuation-grid {
  margin-top: 1rem;
  background: transparent;
  border-radius: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
  border-bottom: 1px solid rgba(17, 17, 17, 0.14);
  padding: 1.35rem 0;
  display: grid;
  grid-template-columns: 1.25fr 0.82fr 1.25fr;
  gap: 2rem;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.valuation-section .container {
  width: min(1480px, calc(100% - 2rem));
  position: relative;
  z-index: 1;
}

.logo-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-left: 1px solid rgba(17, 17, 17, 0.16);
  border-right: 1px solid rgba(17, 17, 17, 0.16);
}

.valuation-center {
  border-left: 1px solid rgba(17, 17, 17, 0.12);
  border-right: 1px solid rgba(17, 17, 17, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  text-align: center;
  padding: 0.6rem 0.5rem;
}

.valuation-total {
  margin: 0;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(1.65rem, 2.95vw, 2.9rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: #111;
}

.valuation-sub {
  margin: 0.45rem 0 0;
  color: rgba(17, 17, 17, 0.75);
  font-size: clamp(0.82rem, 1vw, 1.08rem);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-family: "Inter", sans-serif;
  font-weight: 600;
}

.logo-tile {
  height: clamp(68px, 5.8vw, 94px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.4rem;
  background: transparent;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.logo-tile:nth-child(-n + 2) {
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.logo-img {
  width: clamp(102px, 8.8vw, 186px);
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: normal;
  filter: saturate(0.74) contrast(1.04);
  opacity: 0.9;
}

.logo-img--jp {
  width: clamp(112px, 9.6vw, 190px);
}

.logo-img--pantera {
  width: clamp(106px, 8.9vw, 182px);
}

.logo-img--okx {
  width: clamp(104px, 8.9vw, 182px);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  align-items: start;
}

.value-item {
  padding: 1.15rem;
  align-self: start;
}

.reason-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.8rem;
  border: 1px solid var(--line);
  background: #f4f4ef;
}

.reason-toggle {
  all: unset;
  display: block;
  cursor: pointer;
}

.reason-toggle h3 {
  margin: 0;
  font-size: 1.1rem;
}

.reason-hint {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(17, 17, 17, 0.5);
}

.reason-copy {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease;
}

.value-item.is-open .reason-copy {
  max-height: 420px;
  opacity: 1;
  transform: translateY(0);
}

.reason-copy p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.archive-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.archive-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.post {
  overflow: hidden;
}

.post img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
}

.post-body {
  padding: 1rem;
}

.post-meta {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(17, 17, 17, 0.58);
  margin-bottom: 0.45rem;
}

.post-title {
  margin: 0 0 0.35rem;
  font-size: 1.04rem;
}

.post-preview {
  margin: 0 0 0.65rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.archive-actions {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}

.empty-state {
  padding: 1.4rem;
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  color: var(--muted);
}

.footer {
  margin-top: 3rem;
  background: var(--primary);
  color: #fff;
  padding: 2.3rem 0;
}

.footer p {
  margin: 0;
  opacity: 0.9;
  text-align: center;
  font-size: 0.94rem;
}

.page-header {
  padding: 2.2rem 0 1rem;
}

.page-header p {
  margin: 0;
  max-width: 72ch;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .valuation-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 1.4rem 1.1rem;
  }

  .valuation-center {
    order: -1;
  }

  .logo-column {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .logo-tile {
    height: clamp(56px, 9.5vw, 102px);
  }

  .logo-tile:nth-child(-n + 2) {
    border-top: 0;
  }

  .logo-tile:nth-child(-n + 4) {
    border-top: 1px solid rgba(17, 17, 17, 0.1);
  }

  .logo-img {
    width: clamp(78px, 12vw, 180px);
  }

}

@media (max-width: 720px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0.75rem 0;
  }

  .nav {
    width: 100%;
    overflow: auto;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

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

  .logo-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
  }

  .logo-tile {
    height: clamp(50px, 14vw, 96px);
  }

  .logo-img {
    width: clamp(50px, 14vw, 120px);
  }

  .logo-tile:nth-child(-n + 4) {
    border-top: 0;
  }

  .logo-tile:nth-child(-n + 3) {
    border-top: 1px solid rgba(17, 17, 17, 0.1);
  }

}
