:root {
  --reset-bg: #061126;
  --reset-text: #f6f8ff;
  --reset-muted: #91a0bb;
  --reset-line: rgba(132, 157, 207, .16);
  --reset-blue: #4b82f3;
  --reset-cyan: #42d6c3;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--reset-bg) !important;
}

body {
  color: var(--reset-text);
  font-family: "Aptos", "Segoe UI", sans-serif;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(6, 17, 38, .88) !important;
  border-bottom: 1px solid rgba(132, 157, 207, .12) !important;
  box-shadow: none !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.site-header .brand { color: #fff !important; }
.site-header .brand span { color: #84a8e8 !important; }

.reset-shell {
  position: relative;
  min-height: calc(100svh - var(--site-header-height, 76px));
  padding: clamp(24px, 4vw, 58px) 0 clamp(38px, 5vw, 72px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 8%, rgba(65, 105, 225, .2), transparent 28rem),
    radial-gradient(circle at 5% 84%, rgba(0, 190, 170, .1), transparent 32rem),
    linear-gradient(145deg, #07142c 0%, #050d1e 56%, #07142a 100%);
}

.reset-shell::before,
.reset-shell::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.reset-shell::before {
  width: 460px;
  height: 460px;
  top: -310px;
  right: 7%;
  background: rgba(74, 99, 255, .27);
  filter: blur(30px);
}

.reset-shell::after {
  width: 390px;
  height: 390px;
  left: -240px;
  bottom: -220px;
  background: rgba(17, 197, 169, .12);
  filter: blur(34px);
}

.reset-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, .78fr);
  align-items: center;
  gap: clamp(36px, 6vw, 92px);
  width: min(1240px, calc(100% - 40px));
  max-width: none;
  min-height: min(700px, calc(100svh - 150px));
  margin: 0 auto;
  padding: 0;
}

.reset-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 22px 0;
  color: var(--reset-text);
}

.reset-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 22px;
  padding: 8px 13px;
  color: #8fbcff;
  background: rgba(64, 117, 239, .11);
  border: 1px solid rgba(92, 145, 255, .23);
  border-radius: 999px;
  box-shadow: none;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reset-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--reset-cyan);
  box-shadow: 0 0 0 5px rgba(66, 214, 195, .1);
}

.reset-hero h1 {
  max-width: 730px;
  margin: 0;
  color: #f8faff;
  font-size: clamp(46px, 5.2vw, 74px);
  line-height: .95;
  letter-spacing: -.055em;
  font-weight: 950;
  text-wrap: balance;
}

.reset-hero h1 span {
  color: #79a8ff;
  background: linear-gradient(110deg, #8bb6ff, #5b8df5 55%, #54dbc5);
  -webkit-background-clip: text;
  background-clip: text;
}

.reset-hero p {
  max-width: 670px;
  margin: 23px 0 0;
  color: #9eacc5;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
}

.reset-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
  max-width: 690px;
  margin-top: 28px;
}

.reset-point {
  position: relative;
  min-height: 112px;
  padding: 18px 18px 17px 58px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .025));
  border: 1px solid rgba(139, 163, 210, .14);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.reset-point::before {
  position: absolute;
  top: 18px;
  left: 17px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #8eb8ff;
  background: rgba(63, 116, 233, .13);
  border: 1px solid rgba(90, 142, 255, .2);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 900;
}

.reset-point:nth-child(1)::before { content: "01"; }
.reset-point:nth-child(2)::before { content: "02"; }
.reset-point:nth-child(3)::before { content: "03"; }
.reset-point:nth-child(4)::before { content: "04"; }
.reset-point:last-child:nth-child(odd) { grid-column: 1 / -1; min-height: 96px; }

.reset-point strong {
  display: block;
  margin: 0 0 5px;
  color: #f1f5ff;
  font-size: 14px;
  font-weight: 850;
}

.reset-point span {
  display: block;
  color: #8291ad;
  font-size: 12px;
  line-height: 1.5;
}

.reset-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 17px;
}

.reset-mini span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 11px;
  color: #9facc2;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(137, 160, 204, .12);
  border-radius: 11px;
  font-size: 11px;
  font-weight: 750;
}

.reset-mini svg {
  width: 15px;
  height: 15px;
  color: #75a6ff;
}

.reset-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 0;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  color: var(--reset-text);
  background:
    radial-gradient(circle at 100% 0, rgba(72, 99, 224, .19), transparent 44%),
    linear-gradient(150deg, rgba(17, 33, 65, .94), rgba(7, 17, 37, .96));
  border: 1px solid rgba(140, 164, 211, .18);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .36), inset 0 1px 0 rgba(255, 255, 255, .035);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transition: none;
}

.reset-card:hover {
  transform: none;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .36), inset 0 1px 0 rgba(255, 255, 255, .035);
}

.reset-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #4b82f3, #6664ed, #42d6c3, transparent 92%);
}

.reset-card .brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 52px;
  padding: 7px 13px 7px 7px;
  color: #f4f7ff;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(139, 163, 210, .14);
  border-radius: 15px;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -.015em;
}

.reset-card .brand-badge img {
  width: 38px;
  height: 38px;
  padding: 3px;
  object-fit: cover;
  background: #eef4ff;
  border-radius: 11px;
}

.reset-card h2 {
  margin: 22px 0 8px;
  color: #fff;
  font-size: clamp(27px, 3vw, 35px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 920;
}

.reset-card .sub {
  margin: 0 0 21px;
  color: #8796b1;
  font-size: 13px;
  line-height: 1.58;
  text-align: left;
}

.reset-card .form-panel {
  padding: 16px;
  background: rgba(3, 11, 27, .48);
  border: 1px solid rgba(129, 153, 201, .13);
  border-radius: 17px;
  box-shadow: none;
}

.reset-card .form-rail {
  margin-bottom: 14px;
}

.reset-card .form-rail .dot {
  width: 9px;
  height: 9px;
  background: var(--reset-cyan);
  box-shadow: 0 0 0 5px rgba(66, 214, 195, .09);
}

.reset-card .form-rail .text {
  color: #aebbd1;
  font-size: 11px;
  font-weight: 850;
}

.reset-form .form-group {
  margin-bottom: 14px;
}

.reset-form label {
  display: block;
  margin-bottom: 7px;
  color: #b2bfd4;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.reset-field {
  position: relative;
}

.reset-field__icon {
  position: absolute;
  top: 50%;
  left: 14px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  color: #64789d;
  transform: translateY(-50%);
  pointer-events: none;
}

.reset-field__icon svg {
  width: 18px;
  height: 18px;
}

.reset-form input {
  width: 100%;
  min-height: 51px;
  padding: 13px 14px 13px 44px;
  color: #f5f8ff;
  background: rgba(3, 11, 27, .72);
  border: 1px solid rgba(129, 153, 201, .17);
  border-radius: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .015);
  font-family: inherit;
  font-size: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.reset-form input::placeholder { color: #52617d; }

.reset-form input:focus {
  color: #fff;
  background: rgba(4, 14, 33, .93);
  border-color: #5289f5;
  box-shadow: 0 0 0 4px rgba(82, 137, 245, .11);
  outline: none;
}

.reset-field:focus-within .reset-field__icon { color: #7eabff; }

.reset-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 51px;
  margin-top: 3px;
  padding: 13px 16px;
  color: #fff;
  background: linear-gradient(135deg, #3975ed, #6258ed);
  border: 1px solid rgba(119, 151, 255, .22);
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(42, 76, 191, .25);
  font-family: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

.reset-submit svg {
  width: 18px;
  height: 18px;
}

.reset-submit:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.reset-alert {
  margin-bottom: 17px;
  padding: 13px 14px;
  color: #ffc1c9;
  background: rgba(199, 48, 72, .13);
  border: 1px solid rgba(255, 98, 122, .22);
  border-radius: 13px;
  font-size: 12px;
  line-height: 1.55;
}

.reset-alert.success {
  color: #91ebcd;
  background: rgba(20, 184, 128, .12);
  border-color: rgba(37, 215, 154, .2);
}

.reset-card .foot {
  margin-top: 13px;
  color: #7f8da7;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}

.reset-card .foot + .foot {
  margin-top: 7px;
}

.reset-card .foot a {
  color: #91baff;
  font-weight: 850;
  text-decoration: none;
}

.reset-card .foot a:hover { color: #bed5ff; }

.site-footer {
  border-top: 1px solid rgba(132, 157, 207, .11);
}

@media (max-width: 980px) {
  .reset-grid {
    grid-template-columns: 1fr;
    width: min(720px, calc(100% - 32px));
    min-height: 0;
    gap: 24px;
  }

  .reset-card { order: 1; }
  .reset-hero { order: 2; padding: 12px 0 0; }
  .reset-hero h1 { font-size: clamp(40px, 8vw, 62px); }
}

@media (max-width: 640px) {
  .reset-shell {
    min-height: calc(100svh - var(--site-header-height, 64px));
    padding: 12px 0 28px;
  }

  .reset-grid {
    display: flex;
    width: calc(100% - 20px);
    gap: 20px;
    padding: 0;
  }

  .reset-card {
    width: 100%;
    padding: 20px 15px 17px;
    border-radius: 22px;
  }

  .reset-card h2 {
    margin-top: 18px;
    font-size: 27px;
  }

  .reset-form input {
    font-size: 16px;
  }

  .reset-hero {
    padding: 13px 5px 0;
  }

  .reset-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
    line-height: .98;
  }

  .reset-hero p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.62;
  }

  .reset-points { display: none; }
  .reset-mini { display: flex; margin-top: 16px; }
}

@media (max-width: 380px) {
  .reset-grid { width: calc(100% - 14px); }
  .reset-card { padding-inline: 12px; }
  .reset-mini { display: grid; grid-template-columns: 1fr; }
}
