/* Muse showcase — standalone preview site. */

:root {
  --ink: #0a0a0a;
  --ink-raised: #121212;
  --ink-card: #1a1a1a;
  --ink-border: #2a2a2a;

  --stone-100: #f5f5f4;
  --stone-200: #e7e5e4;
  --stone-300: #d6d3d1;
  --stone-400: #a8a29e;
  --stone-500: #78716c;
  --stone-600: #57534e;

  --font-body: "Roboto", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: "Raleway", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --max: 72rem;
  --nav-h: 64px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--stone-100);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(168, 162, 158, 0.4);
  color: var(--stone-100);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section--raised {
  background: var(--ink-raised);
  border-top: 1px solid var(--ink-border);
  border-bottom: 1px solid var(--ink-border);
}

.section--divided {
  border-top: 1px solid var(--ink-border);
}

.section-head {
  max-width: 42rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
}

.section-head p {
  margin-top: 0.85rem;
  color: var(--stone-400);
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-500);
  margin-bottom: 0.75rem;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  padding: 0.7rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn--primary {
  background: #fff;
  color: var(--ink);
}

.btn--primary:hover {
  background: var(--stone-200);
}

.btn--secondary {
  background: var(--ink-card);
  border-color: var(--ink-border);
  color: var(--stone-200);
}

.btn--secondary:hover {
  border-color: var(--stone-500);
  background: var(--ink-raised);
  color: #fff;
}

.btn--block {
  width: 100%;
}

.btn:focus-visible {
  outline: 2px solid var(--stone-300);
  outline-offset: 2px;
}

/* ---------- nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__links a {
  font-size: 0.875rem;
  color: var(--stone-400);
  text-decoration: none;
  transition: color 0.15s ease;
}

.nav__links a:hover {
  color: #fff;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink-border);
  border-radius: 0.5rem;
  padding: 0.45rem 0.6rem;
  color: var(--stone-200);
  cursor: pointer;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 1.25rem 1.25rem;
  background: var(--ink-raised);
  border-bottom: 1px solid var(--ink-border);
}

.nav__mobile.is-open {
  display: flex;
}

.nav__mobile a:not(.btn) {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--stone-300);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-border);
}

.nav__mobile .btn {
  margin-top: 0.75rem;
}

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

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(85vh, 780px);
  overflow: hidden;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Zoomed past the frame so the edges crop evenly; .hero clips the overflow.
     Dropped on small screens, where cover already crops the photo hard. */
  transform: scale(1.2);
  filter: grayscale(1);
  z-index: -2;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.45), var(--ink));
}

.hero__inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 7rem 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 17vw, 10.5rem);
  font-weight: 900;
  line-height: 0.95;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.hero__tagline {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--stone-200);
}

.hero__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ---------- feature cards ---------- */

.feature-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--ink-border);
  background: var(--ink-card);
  border-radius: 0.75rem;
}

.feature-card {
  padding: 1.35rem;
}

.feature-card svg {
  width: 24px;
  height: 24px;
  color: var(--stone-300);
}

.feature-card h3 {
  margin-top: 0.85rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.feature-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--stone-400);
}

/* ---------- value panel ---------- */

.value {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  padding: 2.5rem;
  border: 1px solid var(--ink-border);
  background: var(--ink-card);
  border-radius: 0.75rem;
}

/* Own row so the button always follows the checklist, desktop and mobile. */
.value__cta {
  grid-column: 1 / -1;
  justify-self: start;
}

.value__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--ink-border);
  background: var(--ink-raised);
  color: var(--stone-200);
  margin-bottom: 1rem;
}

.value__icon svg {
  width: 24px;
  height: 24px;
}

.value h3 {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 600;
  color: #fff;
}

.value__body {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--stone-400);
}

.checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.9rem;
}

.checklist li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--stone-300);
}

.checklist span {
  color: var(--stone-100);
  flex-shrink: 0;
}

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

.stats__num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}

.stats__label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone-500);
}

.value__media {
  position: relative;
}

.value__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid var(--ink-border);
  filter: grayscale(1);
}

.value__badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: 85%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--ink-border);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
}

.value__badge-arrow {
  font-size: 1.1rem;
  color: var(--stone-200);
}

.value__badge-kicker {
  font-size: 0.72rem;
  color: var(--stone-400);
}

.value__badge-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}

/* ---------- about / founder ---------- */

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 3rem;
  align-items: start;
}

.about__quote {
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid var(--ink-border);
  background: var(--ink-card);
}

.about__mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--stone-600);
}

.about__quote p {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--stone-100);
}

.about__sig {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ink-border);
}

.about__sig-name {
  font-weight: 600;
  color: #fff;
}

.about__sig-role {
  font-size: 0.8rem;
  color: var(--stone-500);
}

.about__story h2 {
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #fff;
}

.about__story p {
  margin-top: 1.15rem;
  color: var(--stone-400);
}

.about__story strong {
  color: var(--stone-200);
  font-weight: 600;
}

/* ---------- both sides ---------- */

.twoway {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.twoway__card {
  padding: 2rem;
}

.twoway__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--ink-border);
  background: var(--ink-raised);
  color: var(--stone-200);
}

.twoway__icon svg {
  width: 22px;
  height: 22px;
}

.twoway__card h3 {
  margin-top: 1.1rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.twoway__lede {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--stone-300);
}

.twoway__list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.twoway__list li {
  display: flex;
  gap: 0.65rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--stone-400);
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--ink-border);
}

.twoway__list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.twoway__list li > span:first-child {
  flex-shrink: 0;
  color: var(--stone-100);
}

.twoway__list strong {
  color: var(--stone-200);
  font-weight: 600;
}

/* ---------- screens ---------- */

.preview-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--ink-border);
  background: var(--ink-card);
  font-size: 0.75rem;
  color: var(--stone-400);
}

.preview-note::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--stone-400);
}

.screens {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.shot {
  border: 1px solid var(--ink-border);
  background: var(--ink-card);
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.shot__chrome {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--ink-border);
  background: var(--ink-raised);
}

.shot__dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--ink-border);
}

.shot__url {
  margin-left: 0.5rem;
  font-size: 0.7rem;
  color: var(--stone-500);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.shot__frame {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: var(--ink);
  cursor: zoom-in;
  overflow: hidden;
  height: 330px;
}

.shot__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.35s ease;
}

.shot__frame:hover img {
  transform: scale(1.015);
}

.shot__zoom {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--ink-border);
  background: rgba(10, 10, 10, 0.85);
  font-size: 0.7rem;
  color: var(--stone-300);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.shot__frame:hover .shot__zoom,
.shot__frame:focus-visible .shot__zoom {
  opacity: 1;
}

.shot__meta {
  padding: 1.15rem 1.25rem 1.35rem;
  border-top: 1px solid var(--ink-border);
}

.shot__meta h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}

.shot__meta p {
  margin-top: 0.4rem;
  font-size: 0.875rem;
  color: var(--stone-400);
}

/* ---------- lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem 4.5rem;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(6px);
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: min(1100px, 100%);
  max-height: 100%;
  overflow-y: auto;
  border-radius: 0.6rem;
  border: 1px solid var(--ink-border);
  scrollbar-width: thin;
}

.lightbox__img img {
  width: 100%;
}

.lightbox__bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(10, 10, 10, 0.95);
  border-top: 1px solid var(--ink-border);
}

.lightbox__caption {
  font-size: 0.85rem;
  color: var(--stone-300);
  text-align: center;
}

.lightbox__btn {
  border: 1px solid var(--ink-border);
  background: var(--ink-card);
  color: var(--stone-200);
  border-radius: 0.5rem;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.lightbox__btn:hover {
  color: #fff;
  border-color: var(--stone-500);
}

.lightbox__close {
  position: fixed;
  top: 1rem;
  right: 1.25rem;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.25rem 0.7rem;
}

/* ---------- pricing ---------- */

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

.plan {
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.plan__name {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone-500);
}

.plan__blurb {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--stone-400);
}

.plan__price {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.plan__currency {
  font-size: 1.4rem;
  vertical-align: top;
  color: var(--stone-400);
}

.plan__per {
  font-size: 1rem;
  font-weight: 400;
  color: var(--stone-500);
}

.plan__features {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  flex: 1;
  display: grid;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.plan__features li {
  display: flex;
  gap: 0.5rem;
  color: var(--stone-300);
}

.plan__features li.is-off {
  color: var(--stone-600);
  text-decoration: line-through;
}

.plan .btn {
  margin-top: 2rem;
}

/* ---------- waitlist ---------- */

.waitlist {
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
}

.waitlist__form {
  margin-top: 2rem;
  display: grid;
  gap: 0.75rem;
  text-align: left;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--stone-300);
}

.field input,
.field select {
  display: block;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--ink-border);
  background: var(--ink-raised);
  padding: 0.65rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--stone-100);
}

.field input::placeholder {
  color: var(--stone-500);
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--stone-400);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  font-size: 0.75rem;
  color: var(--stone-500);
  text-align: center;
}

.form-status {
  min-height: 1.25rem;
  font-size: 0.875rem;
  text-align: center;
  color: var(--stone-300);
}

.form-status.is-error {
  color: #f87171;
}

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

.footer {
  border-top: 1px solid var(--ink-border);
  background: var(--ink-raised);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 2rem 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--stone-500);
}

.footer strong {
  color: var(--stone-300);
  font-weight: 600;
}

.footer a {
  color: inherit;
  text-decoration: underline;
}

.footer a:hover {
  color: var(--stone-300);
}

/* ---------- responsive ---------- */

@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value {
    grid-template-columns: minmax(0, 1fr);
    padding: 1.75rem;
  }

  .about {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

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

  .plans {
    grid-template-columns: minmax(0, 1fr);
    max-width: 30rem;
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  .nav__links,
  .nav__cta {
    display: none;
  }

  .nav__toggle {
    display: block;
  }

  .hero__bg {
    transform: none;
  }

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

  .section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 560px) {
  .feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .checklist,
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .shot__frame {
    height: 240px;
  }

  .hero__inner {
    padding: 5rem 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
