:root {
  --text-dark: #ebf5ff;
  --text-mid: #a6bad0;
  --bg-soft: #071425;
  --line: #1f3e5e;
  --brand-green: #31e3cb;
  --brand-blue: #70b9ff;
  --brand-accent: #4ec2ff;
  --brand-button: linear-gradient(90deg, #2ad7d0 0%, #4c8dff 100%);
  --gap-below-site-header: 1.75rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text-dark);
  background: radial-gradient(circle at 20% 0, #0c2a4a, #071425 50%, #050d19);
}

a {
  color: #87c6ff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgb(6 19 35 / 86%);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #193452;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #f4fbff;
  text-decoration: none;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 800;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-logo-hit {
  display: flex;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.brand-logo-hit:focus-visible {
  outline: 2px solid rgb(78 194 255 / 55%);
  outline-offset: 4px;
  border-radius: 8px;
}

.brand-lockup-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  line-height: 1.15;
}

.brand-title-hit {
  color: inherit;
  text-decoration: none;
}

.brand-title-hit:hover .brand-text {
  color: #fff;
}

.brand-byline {
  font-size: clamp(0.68rem, 1.5vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: none;
  color: #8aa4bd;
}

.brand-byline-link {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #7dc8ff;
  text-decoration: none;
}

.brand-byline-link:hover {
  color: #a8dcff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.brand-logo {
  width: clamp(34px, 4vw, 48px);
  height: auto;
  object-fit: contain;
}

.brand-text {
  line-height: 1;
}

.brand-accent {
  color: var(--brand-accent);
}

.top-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-nav-login {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35ch;
  font-size: 0.95rem;
  line-height: 1.3;
}

.top-nav-login-label {
  color: #a6bad0;
  font-weight: 400;
}

.top-nav-login-link {
  text-decoration: none;
  color: #4c9f70;
  font-weight: 700;
}

.top-nav-login-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.top-nav-login-link:focus-visible {
  outline: 2px solid rgb(76 159 112 / 55%);
  outline-offset: 3px;
  border-radius: 4px;
}

.section {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 3rem 0;
}

.hero {
  text-align: center;
  margin-top: var(--gap-below-site-header);
  padding-top: 5rem;
  padding-bottom: 4rem;
  border: 1px solid #153453;
  border-radius: 1.2rem;
  background: linear-gradient(145deg, rgb(11 33 58 / 86%), rgb(3 14 28 / 86%));
  box-shadow: inset 0 0 0 1px rgb(52 138 224 / 16%);
}

.hero-logo-wrap {
  margin: 0 auto;
  line-height: 0;
}

.hero-logo {
  width: clamp(72px, 14vw, 96px);
  height: auto;
  object-fit: contain;
}

.eyebrow {
  margin: 1rem 0 0;
  color: var(--brand-blue);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-title {
  margin: 0.8rem auto 0;
  max-width: 760px;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
}

.hero-title-line {
  display: block;
}

.hero-title-line + .hero-title-line {
  margin-top: 0.4rem;
}

.hero-title .hero-title-line span {
  color: var(--brand-green);
}

.hero-copy {
  margin: 1rem auto 0;
  max-width: 680px;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero .btn-primary {
  gap: 0.5rem;
}

.hero .btn-primary img {
  flex-shrink: 0;
}

.btn {
  margin-top: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary {
  min-height: 3rem;
  padding: 0.8rem 1.8rem;
  color: #fff;
  background: var(--brand-button);
  box-shadow: 0 8px 20px rgb(35 145 255 / 24%);
}

.section-alt {
  border: 1px solid #163b5f;
  border-radius: 1.4rem;
  padding: 2rem 1.2rem;
  background: linear-gradient(180deg, rgb(10 29 49 / 90%), rgb(6 21 37 / 90%));
}

.section-head {
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.3vw, 2.2rem);
}

.section-head p {
  margin: 0.8rem auto 0;
  max-width: 740px;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Course picker (two-track selection) */
.course-picker {
  margin-top: 0.25rem;
}

.section.section-alt.course-picker {
  border: none;
  background: #0c223a;
  box-shadow: none;
}

.course-picker > h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.3vw, 2.2rem);
  text-align: center;
  line-height: 1.25;
  color: #f0f7ff;
}

.course-picker-sub {
  margin: 0.75rem auto 0;
  max-width: 640px;
  text-align: center;
  color: var(--text-mid);
  font-size: 0.98rem;
  line-height: 1.55;
}

.course-picker-grid {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.course-picker-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1.1rem;
  border: 2px solid #1b4368;
  background: rgb(8 24 42 / 55%);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.course-picker-card:hover {
  border-color: #2a5a8a;
  background: rgb(12 32 54 / 70%);
}

.course-picker-card:focus-visible {
  outline: 2px solid rgb(78 194 255 / 55%);
  outline-offset: 3px;
}

.course-picker-card.is-selected {
  border-color: var(--brand-green);
  box-shadow: 0 0 0 1px rgb(49 227 203 / 35%);
  background: rgb(10 40 48 / 55%);
}

.course-picker-card__label {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 800;
  color: #f0f7ff;
  line-height: 1.25;
}

.course-picker-card__summary {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-mid);
}

.course-picker-card__price {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #dce9f7;
}

.course-picker-card__tax {
  margin: 0;
  font-size: 0.82rem;
  color: #8aa4bd;
}

@media (max-width: 720px) {
  .course-picker-grid {
    grid-template-columns: 1fr;
  }
}

/* Toggle visibility by selected course */
body[data-course="ai"] .reason-variant--fs,
body[data-course="fs"] .reason-variant--ai {
  display: none;
}

body[data-course="ai"] .highlights-title.when-fs,
body[data-course="fs"] .highlights-title.when-ai {
  display: none;
}

body[data-course="fs"] .course-highlights {
  display: none;
}

.highlights-title.when-ai,
.highlights-title.when-fs {
  display: inline-flex;
}

/* Course outline (project-based, bytebyteai-style) */
.course-outline {
  margin-top: 0.5rem;
}

.course-outline > h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.3vw, 2.2rem);
  text-align: center;
  line-height: 1.25;
}

.course-outline > h2 span {
  display: inline-block;
  margin-left: 0.25rem;
  color: var(--brand-blue);
  font-weight: 600;
  font-size: 0.92em;
}

/* Course outline block: no outer frame; same surface as project cards */
.section.section-alt.course-outline {
  border: none;
  background: #0c223a;
  box-shadow: none;
}

.outline-wrap {
  position: relative;
  margin-top: 1.75rem;
}

.outline-list {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.outline-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 400px);
  gap: 1.75rem 2rem;
  align-items: start;
  padding: 1.5rem 1.35rem;
  background: #0c223a;
  border: 1px solid #1b4368;
  border-radius: 1.1rem;
  box-shadow: 0 12px 32px rgb(0 0 0 / 18%);
}

.outline-info .tag {
  margin: 0;
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: var(--brand-green);
  color: #042a24;
  font-size: 0.84rem;
  font-weight: 700;
}

.outline-info h3 {
  margin: 0.75rem 0 0;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.35;
  color: #f0f7ff;
}

.outline-body {
  margin-top: 0.85rem;
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.6;
}

.outline-body > .outline-lead {
  margin: 0 0 0.65rem;
  color: #c8d9ec;
  font-weight: 600;
}

.outline-body > .outline-lead.outline-lead-gap {
  margin-top: 1rem;
}

.outline-body > .outline-lead.outline-lead-gap-sm {
  margin-top: 0.75rem;
}

.outline-body > .outline-lead.outline-lead-gap-tight {
  margin-top: 0.5rem;
}

.outline-label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 1.1rem 0 0.45rem;
  font-weight: 700;
  color: #dce9f7;
  font-size: 0.92rem;
}

.outline-label .material-symbols-outlined {
  font-size: 1.15rem;
  color: var(--brand-green);
  line-height: 1;
}

.outline-body ul {
  margin: 0 0 0.85rem;
  padding-left: 1.35rem;
}

.outline-body li {
  margin: 0.35rem 0;
  padding-left: 0.15rem;
}

.outline-body li::marker {
  color: var(--brand-blue);
}

.outline-img {
  align-self: stretch;
  padding: 0.85rem;
  border-radius: 0.85rem;
  background: #0c223a;
  border: none;
}

.outline-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

.outline-enroll-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.outline-enroll {
  gap: 0.5rem;
}

.outline-enroll img {
  flex-shrink: 0;
}

/* Is this course for you? (bytebyteai-style) */
.course-reason {
  margin-top: 2rem;
}

.section.section-alt.course-reason {
  border: none;
  background: #0c223a;
  box-shadow: none;
}

.reason-wrap {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 2rem 2.5rem;
  align-items: start;
}

.reason-sticker h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  color: #f0f7ff;
}

.sticker-wrap {
  line-height: 0;
}

.sticker-wrap img {
  width: min(360px, 100%);
  height: auto;
  display: block;
}

.reason-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reason-item {
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid #1b4368;
  background: rgb(8 24 42 / 55%);
}

.reason-item p {
  margin: 0;
  color: var(--text-mid);
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.55;
}

.reason-em {
  color: #e2edf8;
  font-weight: 600;
}

.reason-item .underline-content {
  text-decoration: underline;
  text-decoration-color: var(--brand-green);
  text-underline-offset: 3px;
}

.reason-item footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--brand-green);
}

.reason-check-img {
  flex-shrink: 0;
  display: block;
}

.course-reason-enroll-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.course-reason-enroll {
  margin-top: 0;
}

.course-reason-enroll img {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .reason-wrap {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .reason-sticker {
    text-align: center;
  }

  .reason-sticker h2 {
    text-align: center;
  }

  .sticker-wrap {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .outline-item {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.35rem 1.1rem;
  }

  .outline-img {
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Course highlights (bytebyteai-style) */
.course-highlights {
  margin-top: 2rem;
  width: min(920px, calc(100% - clamp(2rem, 6vw, 4rem)));
  margin-left: auto;
  margin-right: auto;
}

.section.section-alt.course-highlights {
  border: none;
  background: #0c223a;
  box-shadow: none;
}

.course-highlights > h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.3vw, 2.2rem);
  text-align: center;
  line-height: 1.25;
  color: #f0f7ff;
}

.highlights-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.highlights-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.35rem 1.2rem;
  border-radius: 1.1rem;
  border: 1px solid #1b4368;
  background: rgb(8 24 42 / 55%);
  box-shadow: 0 12px 28px rgb(0 0 0 / 16%);
}

.highlights-item h3 {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem 0.85rem;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-weight: 800;
  line-height: 1.3;
  color: #f0f7ff;
}

.number-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: clamp(28px, 5vw, 48px);
  aspect-ratio: 24 / 27;
}

.number-badge img {
  display: block;
  width: 100%;
  height: auto;
}

.number-badge__num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 800;
  font-size: clamp(0.72rem, 1.6vw, 0.95rem);
  color: #fff;
  text-shadow: 0 1px 2px rgb(0 0 0 / 35%);
  padding-bottom: 0.08em;
}

.highlights-title {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.45rem;
  min-width: 0;
}

.highlights-mui {
  flex-shrink: 0;
  margin-top: 0.12em;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--brand-green);
}

.highlights-figure {
  border-radius: 0.65rem;
  overflow: hidden;
  background: #071a2e;
  line-height: 0;
}

.highlights-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.course-highlights-enroll-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.course-highlights-enroll {
  margin-top: 0;
  gap: 0.5rem;
}

.course-highlights-enroll img {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .highlights-item h3 {
    flex-wrap: wrap;
  }

  .highlights-title {
    flex: 1 1 200px;
  }
}

/* FAQs */
.faqs {
  margin-top: 2rem;
  width: min(920px, calc(100% - clamp(2rem, 6vw, 4rem)));
  margin-left: auto;
  margin-right: auto;
}

.section.section-alt.faqs {
  border: none;
  background: #0c223a;
  box-shadow: none;
}

.faqs > h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.3vw, 2.2rem);
  text-align: center;
  line-height: 1.25;
  color: #f0f7ff;
}

.faq-list {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  padding: 1.15rem 1.2rem;
  border-radius: 1rem;
  border: 1px solid #1b4368;
  background: rgb(8 24 42 / 55%);
}

.faq-item h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 700;
  line-height: 1.4;
  color: #f0f7ff;
}

.faq-item p {
  margin: 0;
  color: var(--text-mid);
  font-size: 0.96rem;
  line-height: 1.6;
}

.faq-item a {
  color: #7dc8ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-item a:hover {
  color: #a8dcff;
}

.faq-price {
  font-weight: 700;
  color: #e2edf8;
  white-space: nowrap;
}

.faqs-enroll-wrap {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.faqs-enroll {
  margin-top: 0;
  gap: 0.5rem;
}

.faqs-enroll img {
  flex-shrink: 0;
}

.trust-strip h2 {
  margin: 0;
  text-align: center;
}

.trust-logos {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0.9;
}

.trust-logos img {
  height: 40px;
  width: auto;
}

.site-footer {
  padding: 1.8rem;
  text-align: center;
  color: #b5c9df;
  border-top: 1px solid #173453;
}

.form-page {
  padding-top: max(
    2.5rem,
    calc(var(--gap-below-site-header) + env(safe-area-inset-top, 0px))
  );
  padding-bottom: max(
    clamp(2.5rem, 6vw, 4rem),
    env(safe-area-inset-bottom, 0px)
  );
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  background: radial-gradient(circle at 10% 0, #0a2948, #061528 58%, #050d19);
  min-height: calc(100vh - 80px);
}

.form-page > .section {
  width: min(920px, calc(100% - clamp(2rem, 6vw, 4rem)));
}

.form-shell {
  padding: 3.5rem clamp(1.25rem, 4vw, 2.25rem) 4rem;
  border: 1px solid #163b5f;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgb(10 29 49 / 92%), rgb(6 21 37 / 92%));
}

.form-shell h1 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.section-intro {
  margin: 0.8rem 0 0;
  color: var(--text-mid);
}

form {
  margin-top: 1.5rem;
}

.hidden-honeypot {
  display: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select {
  width: 100%;
  min-height: 2.8rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  padding: 0.65rem 0.75rem;
  font: inherit;
  color: #e8f2fc;
  background: #0b2036;
}

input:focus,
select:focus {
  outline: 2px solid rgb(105 183 255 / 40%);
  border-color: #7abfff;
}

.full-width {
  grid-column: 1 / -1;
}

.checkbox-line {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  color: #bfd3e8;
}

.checkbox-line input {
  min-height: 1rem;
  width: 1rem;
}

.form-submit {
  margin-top: 1rem;
}

.note {
  margin: 0.6rem 0 0;
  color: var(--text-mid);
  font-size: 0.92rem;
}

.form-disclaimer {
  margin: 1.25rem 0 0;
  padding: 0.9rem 1rem;
  border-radius: 0.6rem;
  border: 1px solid rgb(105 183 255 / 22%);
  background: rgb(8 32 58 / 55%);
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.55;
}

.login-body {
  background: radial-gradient(circle at 20% 0, #0a2948, #051222 58%, #040a14);
}

.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 1rem 6rem;
}

.login-card {
  width: min(560px, 100%);
  text-align: left;
  padding: 1.4rem;
  border: 1px solid #204462;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgb(9 27 46 / 92%), rgb(6 20 35 / 92%));
}

.login-brand {
  display: inline-flex;
}

.center-lockup {
  justify-content: center;
  width: 100%;
}

.center-lockup .brand-lockup-text {
  align-items: center;
}

.login-card h1 {
  margin: 0.9rem 0 1.4rem;
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

#login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#login-form input {
  border: 1px solid #2c4f72;
  border-radius: 0.75rem;
  background: #0b2036;
}

.error-message {
  margin: 0;
  display: none;
  color: #c4302b;
  font-size: 0.9rem;
}

.error-message.visible {
  display: block;
}

.full-width {
  width: 100%;
}

.login-links {
  margin-top: 1.2rem;
  text-align: center;
  color: #b7ccdf;
}

.login-links p {
  margin: 0.2rem 0;
}

.login-links a {
  text-decoration: none;
  color: #7dc3ff;
}

.access-note {
  margin-top: 0.9rem;
  text-align: center;
  color: #b7ccdf;
}

.login-toast {
  position: fixed;
  left: 50%;
  bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: min(660px, calc(100% - 2rem));
  padding: 0.85rem 1.2rem;
  background: #21242f;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 16px 28px rgb(0 0 0 / 22%);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 1.25rem);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.login-toast .material-symbols-outlined {
  font-size: 1.1rem;
}

.login-toast p {
  margin: 0;
  font-weight: 500;
}

.login-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

@media (prefers-reduced-motion: reduce) {
  .login-toast {
    transform: translate(-50%, 0);
    transition: opacity 0.25s ease;
  }
}

.simple-center {
  min-height: calc(100vh - 5.5rem);
  display: grid;
  place-content: center;
  gap: 0.6rem;
  text-align: center;
  padding: var(--gap-below-site-header) 2rem 2rem;
}

.center-wordmark {
  justify-content: center;
  margin-bottom: 0.8rem;
}

.center-wordmark .brand-lockup-text {
  align-items: center;
}

.powered-line {
  margin: 1rem 0 0;
  color: #c4d6e9;
}

.powered-line a {
  font-weight: 700;
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.8rem 1rem;
  }

  .top-nav {
    gap: 0.7rem;
  }

  .top-nav-login {
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .login-wrap {
    padding-bottom: 7.5rem;
  }

  .login-toast {
    border-radius: 0.9rem;
    align-items: flex-start;
  }
}
