/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
}
body {
  background: #000;
  color: #737373;
  font-family: "Geist Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  letter-spacing: -0.02em; /* kerning */
  line-height: 23px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Topbar: left/right margins 115px, top margin 44px */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 44px 115px 0 115px; /* top 44, left/right 115 */
  gap: 16px;
}
.time {
  font-size: 14px;
  color: #737373;
}
.socials {
  display: flex;
  gap: 22px;
}

.social-link {
  font-size: 12px;
  color: #737373;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.social-link:hover {
  color: #fff;
  opacity: 1;
}

/* Main layout: exact left 602px, right 360px, top/bottom 44px margins */
.main-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 44px 115px 44px 115px; /* top/right/bottom/left */
  height: calc(100vh - 88px); /* ensure it fits viewport (top+bottom = 88px) */
  gap: 40px;
}

/* LEFT column */
.col-left {
  width: 602px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* left aligned */
}

/* NoForm logo left-aligned, 22px height, gap 110px to content */
.noform-logo {
  height: 22px;
  width: auto;
  align-self: flex-start;
  margin-bottom: 50px;
  display: block;
}

/* Content: paragraphs preserved verbatim, reduced spacing slightly */
.content {
  width: 100%;
}
.para {
  font-size: 14px; /* reduced body */
  color: #737373;
  margin-bottom: 14px; /* slightly reduced padding */
  cursor: pointer; /* pointer per request */
  overflow-wrap: break-word;
}

/* Emphasised line: medium weight and white */
.emph {
  color: #fff;
}
.medium {
  font-weight: 500;
}

/* signature: svg image, pointer */
.signature {
  width: auto;
  height: auto;
  margin-top: 12px;
  cursor: pointer;
  display: block;
}

/* principal label */
.principal {
  font-size: 12px;
  color: #737373;
  opacity: 0.85;
  margin-top: 10px;
  margin-bottom: 20px;
}

/* CTA row: spacing above = 50px between previous and CTA */
.cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
.price {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
.initiate {
  width: 131px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 0;
  border: 0;
}

/* RESPONSIVE behavior remains same EXCEPT ensure collab stays bottom */
@media (max-width: 980px) {
  .col-right {
    width: 100%;
    height: auto;
    padding-bottom: 0;
    position: relative;
  }

  .collab-row {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 28px;
    justify-content: flex-start;
  }
}

/* MOBILE — reduce left/right padding by 80% + add bottom padding */
@media (max-width: 640px) {
  .top-bar {
    padding: 44px 23px 0 23px;
  }

  .main-wrap {
    padding: 44px 23px 60px 23px; /* bottom padding added */
  }

  .col-left {
    width: 100%;
  }
}
