@font-face {
  font-family: Mont;
  src: url(/fonts/Mont-Heavy.woff2) format('woff2');
  font-weight: 400;
}

html,
body {
  min-height: 100vh;
  padding: 0;
  margin: 0;
}

body {
  background: #141416;
  font-family: Mont;
  color: #FFF;
  text-align: center;
}

/* ============================================
   SPLASH (two-tone hero, ~62vh)
   The split sits at 50% of the splash container.
   Logo and name straddle that line using the
   same math as the original full-screen design.
   ============================================ */

.splash {
  position: relative;
  height: 62vh;
  background: #DA819A;
  overflow: hidden;
}

.splash::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  bottom: 0;
  background: #AD5E75;
}

.logo {
  width: 100%;
  height: calc(155px / 2);

  position: absolute;
  bottom: calc(50% + 10px);
  left: 0;
  right: 0;
  z-index: 1;
}

.name {
  font-size: 100px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 400;

  margin: 0;
  padding: 0;

  position: absolute;
  top: calc(50% + 10px);
  left: 0;
  right: 0;
  z-index: 1;
}

/* ============================================
   CONTENT (below splash)
   ============================================ */

.content {
  background: #141416;
  padding: 56px 40px 100px;
}

.columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.column {
  padding: 0 48px;
}

.column:first-child {
  padding-left: 0;
  border-right: 1px solid rgba(218, 129, 154, 0.2);
}

.column:last-child {
  padding-right: 0;
}

/* ============================================
   COLUMN HEADERS
   ============================================ */

.column-label {
  font-size: 40px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #FFF;
  margin-bottom: 40px;
  line-height: 1;
}

/* ============================================
   EXPERIMENTS COLUMN
   ============================================ */

.app-entry {
  margin-bottom: 40px;
}

.app-entry:last-child {
  margin-bottom: 0;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.app-icon {
  border-radius: 11px;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.app-name {
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  color: #FFF;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s;
}

.app-name:hover {
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.app-links {
  display: flex;
  gap: 12px;
  padding-left: 62px; /* align with name (icon 48px + gap 14px) */
}

.app-link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(218, 129, 154, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(218, 129, 154, 0.25);
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}

.app-link:hover {
  color: #DA819A;
  border-color: #DA819A;
}

/* ============================================
   THEORIES COLUMN (full block link)
   ============================================ */

.column.theories {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.column.theories:hover {
  opacity: 0.75;
}

.theories-description {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 40px;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  max-width: 280px;
}

.theories-arrow {
  font-size: 80px;
  line-height: 1;
  color: #DA819A;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  transition: transform 0.2s;
}

.column.theories:hover .theories-arrow {
  transform: translateX(8px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 700px) {
  .content {
    padding: 48px 24px 80px;
  }

  .columns {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .column {
    padding: 0;
  }

  .column:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(218, 129, 154, 0.2);
    padding-bottom: 60px;
  }
}
