/* Lift — Log it. Lift it. */

:root{
  --bg: #060607;
  --fg: #fafafa;
  --fg-dim: rgba(255,255,255,.55);
  --fg-faint: rgba(255,255,255,.4);
  --hair: rgba(255,255,255,.1);
  --accent: #D52A2A;
}

*{ box-sizing: border-box; }

html, body{
  margin: 0;
  height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a{ color: inherit; }

/* ---------- organic gradient background ---------- */

.bg{
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  mix-blend-mode: screen;
  will-change: transform;
}

.blob-a{
  left: -15%;
  top: -22%;
  width: 65vw;
  height: 65vw;
  max-width: 900px;
  max-height: 900px;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 62%);
  animation: drift-a 52s ease-in-out infinite;
}

.blob-b{
  right: -20%;
  top: 6%;
  width: 55vw;
  height: 55vw;
  max-width: 760px;
  max-height: 760px;
  background: radial-gradient(circle, rgba(170,170,170,.20), transparent 60%);
  animation: drift-b 68s ease-in-out infinite;
}

.blob-c{
  left: 18%;
  bottom: -28%;
  width: 58vw;
  height: 58vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(100,100,100,.24), transparent 60%);
  animation: drift-c 84s ease-in-out infinite;
}

@keyframes drift-a{
  0%{ transform: translate(0,0) scale(1); }
  25%{ transform: translate(8%,6%) scale(1.16); }
  50%{ transform: translate(-6%,11%) scale(1.04); }
  75%{ transform: translate(6%,-5%) scale(1.1); }
  100%{ transform: translate(0,0) scale(1); }
}

@keyframes drift-b{
  0%{ transform: translate(0,0) scale(1.05); }
  30%{ transform: translate(-10%,-7%) scale(1); }
  60%{ transform: translate(6%,-11%) scale(1.18); }
  100%{ transform: translate(0,0) scale(1.05); }
}

@keyframes drift-c{
  0%{ transform: translate(0,0) scale(1); }
  35%{ transform: translate(-9%,7%) scale(1.12); }
  65%{ transform: translate(9%,3%) scale(0.94); }
  100%{ transform: translate(0,0) scale(1); }
}

@media (prefers-reduced-motion: reduce){
  .blob{ animation: none; }
}

/* ---------- layout shell ---------- */

.page{
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 0 64px;
}

/* ---------- top bar ---------- */

.topbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 56px 0 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-mark{
  width: 24px;
  height: auto;
  opacity: .95;
}

.brand-name{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.02em;
}

.est,
.kind{
  display: none;
  font: 10px/1 ui-monospace, Menlo, monospace;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

/* ---------- hero ---------- */

.hero{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  padding: 48px 0;
}

.headline{
  margin: 0;
}

.wordmark{
  display: none;
}

.tagline{
  display: block;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.035em;
}

.accent{ color: var(--accent); }

.subtext{
  margin: 26px 0 0;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .02em;
  color: var(--fg-dim);
  max-width: 420px;
}

.download-btn{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  padding: 11px 19px;
  border: 1px solid var(--fg);
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  text-decoration: none;
  transition: opacity .15s ease, background-color .15s ease;
}

.download-btn:hover{ opacity: .8; }
.download-btn:active{ background-color: #d6d6d6; }

.download-btn svg{
  width: 18px;
  height: 18px;
  flex: none;
}

.download-btn span{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.01em;
}

/* ---------- content pages (contact / legal) ---------- */

.content-main{
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  padding: 48px 0;
}

.eyebrow{
  margin: 0 0 18px;
  font: 11px/1 ui-monospace, Menlo, monospace;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--fg-faint);
}

.email-row{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.email-text{
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 600;
  letter-spacing: -.02em;
}

.copy-btn{
  appearance: none;
  border: 1px solid var(--hair);
  background: transparent;
  color: var(--fg-dim);
  font: 12px/1 ui-monospace, Menlo, monospace;
  letter-spacing: .04em;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: color .15s ease, border-color .15s ease;
}

.copy-btn:hover{ color: var(--fg); border-color: rgba(255,255,255,.28); }
.copy-btn[data-copied="true"]{ color: var(--fg); border-color: rgba(255,255,255,.4); }

/* legal page typography (privacy / terms) */

.legal-main{
  flex: 1;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 0 96px;
}

.legal-content{
  color: var(--fg-dim);
  font-size: 15px;
  line-height: 1.7;
}

.legal-content h1{
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--fg);
  margin: 0 0 8px;
}

.legal-content .updated{
  display: block;
  font: 11px/1 ui-monospace, Menlo, monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin: 0 0 40px;
}

.legal-content h2{
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin: 40px 0 12px;
  letter-spacing: -.01em;
}

.legal-content p{ margin: 0 0 16px; }
.legal-content ul{ margin: 0 0 16px; padding-left: 20px; }
.legal-content li{ margin: 0 0 8px; }
.legal-content a{ color: var(--fg); text-decoration: underline; text-underline-offset: 2px; }

.back-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  font: 11px/1 ui-monospace, Menlo, monospace;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--fg-faint);
  text-decoration: none;
}

.back-link:hover{ color: var(--fg); }

/* ---------- footer ---------- */

.site-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 26px 0;
  border-top: 1px solid var(--hair);
  font: 12px/1 ui-monospace, Menlo, monospace;
  color: rgba(255,255,255,.34);
}

.footer-brand{ color: var(--fg-dim); text-decoration: none; }
.footer-brand:hover{ color: var(--fg); }

.footer-nav{
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  justify-content: flex-end;
}

.footer-nav a{
  text-decoration: none;
}

.footer-nav a:hover{ color: var(--fg); }

/* ---------- mobile ---------- */

@media (max-width: 640px){
  .page{
    padding: 0 28px;
  }

  .topbar{
    padding-top: 40px;
    justify-content: flex-start;
    gap: 14px;
    flex-wrap: wrap;
    row-gap: 16px;
  }

  .est,
  .kind{
    display: block;
  }

  .kind{
    margin-left: auto;
  }

  .hero{
    max-width: none;
    padding: 40px 0 32px;
    justify-content: space-between;
  }

  .hero-bottom{
    padding-bottom: 12px;
  }

  .wordmark{
    display: block;
    margin-left: -6px;
    font-size: clamp(70px, 22vw, 94px);
    line-height: .82;
    font-weight: 800;
    letter-spacing: -.06em;
  }

  .tagline{
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid var(--hair);
    font-size: clamp(30px, 9vw, 34px);
    line-height: 1.06;
    font-weight: 700;
    letter-spacing: -.025em;
  }

  .subtext{
    display: none;
  }

  .download-btn{
    padding: 9px 16px;
  }

  .download-btn svg{
    width: 15px;
    height: 15px;
  }

  .download-btn span{
    font-size: 14px;
  }

  .footer-brand{
    display: none;
  }

  .site-footer{
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-nav{
    justify-content: flex-start;
    gap: 12px 18px;
    font-size: 10px;
    letter-spacing: .04em;
  }

  .content-main{
    max-width: none;
    padding: 40px 0;
  }

  .legal-main{
    padding: 40px 0 64px;
  }

  .email-row{
    gap: 14px;
  }
}
