:root{
  --bg:#0a0a0a;
  --bg-soft:#111111;
  --card:rgba(255,255,255,0.08);
  --card-border:rgba(255,255,255,0.12);
  --text:#f5f5f7;
  --muted:rgba(255,255,255,0.68);
  --line:rgba(255,255,255,0.10);
  --accent:#ffffff;
  --accent-dark:#000000;
  --shadow:0 30px 80px rgba(0,0,0,0.45);
  --radius:28px;
}

*{
  box-sizing:border-box;
}

html,body{
  margin:0;
  padding:0;
  min-height:100%;
}

body{
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 28%),
    linear-gradient(135deg, #050505 0%, #0b0b0b 42%, #141414 100%);
  letter-spacing:-0.02em;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    linear-gradient(rgba(0,0,0,0.38), rgba(0,0,0,0.62)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1800&q=80") center center / cover no-repeat;
  opacity:0.28;
  z-index:-2;
  transform:scale(1.02);
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.55)),
    repeating-linear-gradient(
      to bottom,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 3px
    );
  z-index:-1;
  pointer-events:none;
}

.page{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 20px;
}

.shell{
  width:100%;
  max-width:1180px;
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:28px;
  align-items:stretch;
}

.hero{
  position:relative;
  padding:56px 48px;
  border:1px solid var(--card-border);
  border-radius:36px;
  background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  backdrop-filter:blur(22px) saturate(140%);
  -webkit-backdrop-filter:blur(22px) saturate(140%);
  box-shadow:var(--shadow);
  overflow:hidden;
  min-height:720px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.hero::before{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  border-radius:50%;
  top:-120px;
  right:-120px;
  background:radial-gradient(circle, rgba(255,255,255,0.14), transparent 65%);
  pointer-events:none;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand-mark{
  width:48px;
  height:48px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,0.18);
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,0.06);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.08);
  overflow:hidden;
  flex-shrink:0;
  padding:7px;
  animation:logoIn 0.9s ease-out both;
}

.brand-mark img{
  width:100%;
  height:100%;
  object-fit:contain;
  display:block;
}

.brand-name{
  font-size:14px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:0.18em;
  animation:fadeUp 1.1s ease-out both;
}

.hero-copy{
  max-width:540px;
  padding:40px 0;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.04);
  color:rgba(255,255,255,0.82);
  font-size:12px;
  letter-spacing:0.12em;
  text-transform:uppercase;
  margin-bottom:22px;
}

.kicker-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 0 18px rgba(255,255,255,0.8);
}

h1{
  margin:0;
  font-size:clamp(42px,6vw,78px);
  line-height:0.96;
  letter-spacing:-0.05em;
  font-weight:700;
}

.subtitle{
  margin-top:22px;
  font-size:18px;
  line-height:1.65;
  color:var(--muted);
  max-width:520px;
}

.hero-meta{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:30px;
}

.meta-pill{
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.10);
  background:rgba(255,255,255,0.04);
  color:rgba(255,255,255,0.85);
  font-size:13px;
}

.hero-footer{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:20px;
  padding-top:34px;
  border-top:1px solid var(--line);
}

.hero-note{
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
  max-width:420px;
}

.side{
  display:flex;
  align-items:center;
}

.card{
  width:100%;
  padding:34px 30px 28px;
  border-radius:32px;
  border:1px solid var(--card-border);
  background:linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06));
  backdrop-filter:blur(26px) saturate(160%);
  -webkit-backdrop-filter:blur(26px) saturate(160%);
  box-shadow:var(--shadow);
}

.card-top{
  margin-bottom:26px;
}

.eyebrow{
  font-size:12px;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.58);
  margin-bottom:10px;
}

.card h2{
  margin:0;
  font-size:32px;
  line-height:1.05;
  letter-spacing:-0.04em;
}

.card p{
  color:var(--muted);
  line-height:1.7;
  font-size:15px;
}

.form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.input-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}

label{
  font-size:13px;
  color:rgba(255,255,255,0.72);
}

input, textarea{
  width:100%;
  border:none;
  outline:none;
  background:rgba(255,255,255,0.08);
  color:var(--text);
  padding:16px 18px;
  border-radius:18px;
  font-size:15px;
  border:1px solid rgba(255,255,255,0.09);
  transition:all 0.2s ease;
}

textarea{
  min-height:120px;
  resize:vertical;
}

input::placeholder,
textarea::placeholder{
  color:rgba(255,255,255,0.34);
}

input:focus,
textarea:focus{
  background:rgba(255,255,255,0.11);
  border-color:rgba(255,255,255,0.26);
  box-shadow:0 0 0 4px rgba(255,255,255,0.04);
}

.button{
  appearance:none;
  border:none;
  cursor:pointer;
  width:100%;
  padding:16px 18px;
  border-radius:18px;
  font-size:15px;
  font-weight:600;
  letter-spacing:-0.01em;
  transition:transform 0.18s ease, opacity 0.18s ease, box-shadow 0.18s ease;
}

.button:hover{
  transform:translateY(-1px);
}

.button:active{
  transform:translateY(0);
}

.button-primary{
  background:linear-gradient(180deg, #ffffff 0%, #eaeaea 100%);
  color:#090909;
  box-shadow:0 12px 30px rgba(255,255,255,0.12);
}

.button-secondary{
  background:rgba(255,255,255,0.06);
  color:var(--text);
  border:1px solid rgba(255,255,255,0.08);
}

.actions{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin-top:6px;
}

.links{
  margin-top:22px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.links a{
  color:rgba(255,255,255,0.88);
  text-decoration:none;
  font-size:14px;
}

.links a:hover{
  opacity:0.75;
}

.footer{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid var(--line);
  color:rgba(255,255,255,0.60);
  font-size:13px;
  line-height:1.7;
}

.footer a{
  color:#fff;
  text-decoration:none;
}

.success{
  padding:16px 18px;
  border-radius:18px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.1);
  color:rgba(255,255,255,0.88);
  font-size:14px;
  line-height:1.7;
  margin-bottom:18px;
}

.back-link{
  display:inline-block;
  margin-top:18px;
  color:#fff;
  text-decoration:none;
  font-size:14px;
}

.back-link:hover{
  opacity:0.75;
}

@keyframes logoIn{
  from{
    opacity:0;
    transform:translateY(8px) scale(0.9);
    filter:blur(4px);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
    filter:blur(0);
  }
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(8px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@media (max-width: 980px){
  .shell{
    grid-template-columns:1fr;
  }

  .hero{
    min-height:auto;
    padding:34px 28px;
  }

  .card{
    padding:28px 22px 24px;
  }

  h1{
    font-size:46px;
  }
}

@media (max-width: 640px){
  .page{
    padding:14px;
  }

  .hero,
  .card{
    border-radius:26px;
  }

  .hero-copy{
    padding:24px 0;
  }

  h1{
    font-size:38px;
  }

  .subtitle{
    font-size:16px;
  }

  .brand-mark{
    width:44px;
    height:44px;
    padding:6px;
  }
}