:root {
  --cloud: #f6f5f0;
  --cloud-2: #fbfaf6;
  --pale-mint: #eef8f4;
  --mist-mint: #ddeee6;
  --forest: #27332e;
  --forest-deep: #183c34;
  --muted: #6f8f82;
  --mint: #a8d6c2;
  --line: rgba(39, 51, 46, 0.12);
  --line-soft: rgba(39, 51, 46, 0.08);
  --display: "Satoshi", "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --body: "Manrope", ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: var(--body);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.6;
  color: var(--forest);
  background: var(--cloud);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

.bg-image {
  position: absolute;
  inset: -10px;
  background-image: url("assets/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(2px);
}

.bg-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
to top right,
rgba(255, 255, 255, 0.45) 0%,
rgba(255, 255, 255, 0.2) 45%,
rgba(255, 255, 255, 0.08) 100%
  );
}

.frame {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2.5vw, 36px) clamp(28px, 4vw, 64px);
}

.top,
.content,
.foot {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-wordmark {
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--forest);
}

.content {
  flex: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(40px, 6vh, 80px) 0;
}

.left {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--line-soft);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.eyebrow svg,
.card-lock svg,
.feature-icon svg,
.toggle svg {
  width: 18px;
  height: 18px;
}

h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.06em;
  margin: 36px 0 32px;
  color: var(--forest);
}

h1 .accent-dot {
  color: var(--mint);
}

.lede {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  max-width: 52ch;
  color: rgba(39, 51, 46, 0.72);
  font-weight: 400;
  margin: 0 0 56px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
  max-width: 640px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.feature-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--mist-mint);
  display: grid;
  place-items: center;
  color: var(--forest-deep);
}

.feature-title {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(39, 51, 46, 0.65);
  margin: 0;
}

.right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.card-lock {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  color: var(--forest);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  box-shadow: 0 20px 40px rgba(39, 51, 46, 0.06);
}

.card {
  position: relative;
  padding: 56px 44px 36px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.22);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 30px 80px rgba(39, 51, 46, 0.06);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
}

.card-title {
  text-align: center;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 0 0 12px;
}

.card-sub {
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(39, 51, 46, 0.65);
  margin: 0 auto 28px;
  max-width: 36ch;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-size: 13px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: -0.005em;
}

.field {
  position: relative;
}

input[type="password"],
input[type="text"] {
  width: 100%;
  padding: 16px 50px 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--forest);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.2;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input::placeholder {
  color: rgba(39, 51, 46, 0.4);
}

input:focus {
  border-color: var(--muted);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(168, 214, 194, 0.22);
}

.toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: var(--muted);
  border-radius: 999px;
  display: inline-flex;
}

.toggle:hover {
  color: var(--forest);
}

.submit {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 22px;
  border-radius: 14px;
  border: 1px solid rgba(39, 51, 46, 0.1);
  background: var(--forest-deep);
  color: var(--cloud);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(24, 60, 52, 0.18);
  transition: background 0.2s ease, transform 0.2s ease;
}

.submit:hover {
  background: var(--forest);
  transform: translateY(-1px);
}

.submit svg {
  width: 16px;
  height: 12px;
}

.card-divider {
  margin: 24px 0 20px;
  height: 1px;
  background: var(--line);
}

.card-claim {
  display: flex;
  justify-content: center;
}

.card-claim-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(39, 51, 46, 0.045);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--forest);
  font-weight: 500;
}

.card-claim-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--mint);
}

.gate-error {
  display: none;
  margin: 10px 0 0;
  font-size: 13px;
  color: #a3524e;
  text-align: center;
}

.form-wrap.is-error .gate-error {
  display: block;
}

.form-wrap.is-error input {
  border-color: #b56666;
  animation: nudge 0.28s ease;
}

@keyframes nudge {
  0%, 100% { transform: translateX(0); }
  30% { transform: translateX(-5px); }
  70% { transform: translateX(5px); }
}

.foot {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.foot-copy {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.bp-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--forest);
}

.bp-kicker {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.bp-wordmark {
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 600;
}

.bp-wordmark .dot {
  color: var(--mint);
}

@media (max-width: 980px) {
  .content {
grid-template-columns: 1fr;
gap: 56px;
padding: 32px 0 64px;
  }

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

  h1 {
font-size: clamp(36px, 9vw, 56px);
  }
}

@media (max-width: 560px) {
  .frame {
padding: 20px;
  }

  .card {
padding: 46px 24px 28px;
border-radius: 22px;
  }

  .card-title {
font-size: 22px;
  }

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