.trial-page {
  background: #fff;
}

.trial-page .site-header {
  position: absolute;
}

.trial-page .site-header.scrolled {
  background: transparent;
  box-shadow: none;
}

.trial-page main {
  position: relative;
}

.signup-shell {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  padding: 150px 0 105px;
}

.signup-shell::before,
.signup-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(35px);
  pointer-events: none;
  animation: glow-drift 10s ease-in-out infinite alternate;
}

.signup-shell::before {
  width: 420px;
  height: 420px;
  left: -280px;
  top: 170px;
  background: rgba(46, 201, 141, .2);
}

.signup-shell::after {
  width: 330px;
  height: 330px;
  right: -220px;
  top: 80px;
  background: rgba(184, 243, 72, .2);
  animation-delay: -5s;
}

.trial-intro {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.trial-intro h1 {
  margin: 22px 0 10px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.04;
  letter-spacing: -3.5px;
}

.trial-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.signup-card {
  border-color: #dce9e4;
  border-radius: 30px;
  box-shadow: 0 40px 100px rgba(16, 35, 28, .14);
}

.signup-summary {
  background: linear-gradient(145deg, #09281d 0%, #0d4934 70%, #116347 100%);
}

.signup-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.selected-plan {
  transition: transform .35s cubic-bezier(.2,.8,.2,1), background .35s ease, border-color .35s ease;
}

.selected-plan:hover {
  transform: translateY(-5px);
  border-color: rgba(132, 229, 189, .48);
  background: rgba(255,255,255,.12);
}

.signup-form-panel {
  background: rgba(255,255,255,.96);
}

.field input,
.field select {
  background: #fbfdfc;
  border-color: #dce7e2;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease, background .25s ease;
}

.field input:hover,
.field select:hover {
  border-color: #b8d8cb;
  background: #fff;
}

.field input:focus,
.field select:focus {
  transform: translateY(-1px);
  background: #fff;
}

.submit-button {
  position: relative;
  overflow: hidden;
  height: 54px;
  border-radius: 13px;
  box-shadow: 0 14px 30px rgba(46, 201, 141, .25);
}

.submit-button::after {
  content: "";
  position: absolute;
  inset: -50% auto -50% -70%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  transition: left .7s ease;
}

.submit-button:hover::after {
  left: 135%;
}

.back-link,
.login-link a {
  transition: color .25s ease, transform .25s ease;
}

.back-link:hover {
  color: #fff;
  transform: translateX(-4px);
}

@media (max-width: 850px) {
  .signup-shell { padding-top: 125px; }
  .trial-intro { margin-bottom: 30px; }
}

@media (max-width: 640px) {
  .signup-shell { width: min(100% - 26px, 1180px); padding: 110px 0 70px; }
  .trial-intro { text-align: left; }
  .trial-intro h1 { font-size: 40px; letter-spacing: -2.4px; }
  .trial-intro p { font-size: 14px; line-height: 1.6; }
}
