:root {
  --bg: #07070a;
  --surface: rgba(16, 16, 20, 0.72);
  --surface-2: rgba(10, 10, 14, 0.9);
  --text: #f7f7fb;
  --muted: rgba(247, 247, 251, 0.72);
  --border: rgba(255, 255, 255, 0.10);
  --orange: #ff5a1f;
  --orange-2: #ff8a1f;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  --radius: 16px;
  --radius-sm: 12px;
  --max: 1160px;
  --font-display: "Martian Mono", "Space Grotesk", Inter, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 80% 10%, rgba(255, 90, 31, 0.25), transparent 60%),
    radial-gradient(900px 650px at 10% 30%, rgba(255, 138, 31, 0.12), transparent 55%),
    linear-gradient(180deg, #050507 0%, #07070a 40%, #050507 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.18;
  mix-blend-mode: overlay;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform 180ms ease;
  z-index: 40;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  background: linear-gradient(90deg, rgba(255, 90, 31, 0.95), rgba(160, 40, 10, 0.95));
  border-bottom: 1px solid rgba(0, 0, 0, 0.35);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
}

.topbar__left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.badge {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
}

.topbar__text {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar__link {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.topbar__link:hover {
  text-decoration: underline;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.brand--small {
  font-size: 12px;
}

.brand__word {
  opacity: 0.92;
}

.brand__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 90, 31, 0.18);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav__link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
  font-size: 13px;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 160ms ease, color 160ms ease;
}

.nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}

.hero {
  padding: 64px 0 42px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.rating__stars {
  display: inline-flex;
  gap: 4px;
}

.star {
  width: 16px;
  height: 16px;
  fill: rgba(255, 255, 255, 0.88);
}

.rating__text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.hero__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

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

.hero__lead {
  margin: 0 0 22px;
  max-width: 52ch;
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, background 140ms ease, border-color 140ms ease,
    color 140ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: linear-gradient(180deg, var(--orange) 0%, rgba(255, 90, 31, 0.86) 100%);
  color: #0a0a0b;
  box-shadow: 0 16px 42px rgba(255, 90, 31, 0.22);
}

.btn--primary:hover {
  box-shadow: 0 18px 60px rgba(255, 90, 31, 0.32);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.07);
}

.btn--full {
  width: 100%;
}

.btn__spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.22);
  border-top-color: rgba(0, 0, 0, 0.72);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 160ms ease;
}

.btn.is-loading .btn__spinner {
  opacity: 1;
  animation: spin 700ms linear infinite;
}

.btn.is-loading .btn__label {
  opacity: 0.88;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero__fineprint {
  display: grid;
  gap: 10px;
  padding: 14px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.35);
}

.fineprint-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.check {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 90, 31, 0.14);
  color: rgba(255, 90, 31, 0.95);
}

.check__icon {
  width: 16px;
  height: 16px;
}

.panel {
  position: relative;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel__glow {
  position: absolute;
  inset: -60px -120px auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 90, 31, 0.35), transparent 65%);
  transform: rotate(15deg);
  opacity: 0.9;
}

.panel__content {
  position: relative;
  padding: 22px;
}

.patch {
  border-radius: 18px;
  padding: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.32);
  display: grid;
  gap: 8px;
  justify-items: center;
  text-align: center;
}

.patch__badge {
  width: min(180px, 100%);
}

.patch__svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.55));
}

.patch__top {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  opacity: 0.72;
}

.patch__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.patch__sub {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.panel__stats {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.stat {
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.stat__label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0.72;
}

.stat__value {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
}

.panel__note {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.section {
  padding: 64px 0;
}

.section--tight {
  padding-top: 42px;
}

.section__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.section__lead {
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 70ch;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.step {
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.step__day {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  opacity: 0.8;
}

.step__title {
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}

.step__list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.card {
  border-radius: 22px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card--split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.card__left,
.card__right {
  padding: 22px;
}

.card__right {
  background: rgba(0, 0, 0, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.card__subtitle {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.form {
  display: grid;
  gap: 14px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 8px;
}

.field__label {
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
}

.field__help {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.file-input--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.recorder {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.22);
  padding: 14px 16px;
  display: grid;
  gap: 12px;
}

.recorder__title {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.recorder__subtitle {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.70);
}

.recorder__preview {
  width: min(360px, 100%);
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.35);
  overflow: hidden;
  margin: 0 auto;
}

.recorder__preview video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

.recorder__preview video.is-playback {
  transform: none;
}

.recorder__timing {
  display: grid;
  gap: 10px;
}

.recorder__timingRow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.recorder__timer {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.recorder__minimum {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.recorder__minProgress {
  display: grid;
  gap: 8px;
}

.recorder__minTrack {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  overflow: hidden;
}

.recorder__minBar {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  transition: width 140ms ease, background 140ms ease;
}

.recorder__minProgress.is-met .recorder__minBar {
  background: linear-gradient(90deg, rgba(64, 220, 170, 1), rgba(64, 220, 170, 0.65));
}

.recorder__minText {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.recorder__controls {
  display: grid;
  gap: 10px;
}

.recorder__meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.45;
}

input {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.38);
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.36);
}

input:focus {
  border-color: rgba(255, 90, 31, 0.55);
  box-shadow: 0 0 0 5px rgba(255, 90, 31, 0.14);
}

.form__hint {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.status {
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.20);
}

.status__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
}

.status__body {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.status__meta {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.status--success {
  border-color: rgba(64, 220, 170, 0.35);
  background: linear-gradient(180deg, rgba(64, 220, 170, 0.10), rgba(0, 0, 0, 0.12));
}

.status--warn {
  border-color: rgba(255, 179, 31, 0.35);
  background: linear-gradient(180deg, rgba(255, 179, 31, 0.10), rgba(0, 0, 0, 0.12));
}

.status--error {
  border-color: rgba(255, 70, 90, 0.35);
  background: linear-gradient(180deg, rgba(255, 70, 90, 0.10), rgba(0, 0, 0, 0.12));
}

.status--info {
  border-color: rgba(82, 160, 255, 0.35);
  background: linear-gradient(180deg, rgba(82, 160, 255, 0.10), rgba(0, 0, 0, 0.12));
}

.mini-faq {
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.mini-faq__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
}

.mini-faq__item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.18);
  margin-bottom: 10px;
}

.mini-faq__item summary {
  cursor: pointer;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.mini-faq__item p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.55;
}

.testimonial {
  margin-top: 18px;
}

.testimonial__card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: var(--surface-2);
  box-shadow: var(--shadow);
  padding: 22px;
}

.requirements {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.26);
  padding: 14px 16px;
}

.requirements__title {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.requirements__list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.requirements__list li {
  margin: 6px 0;
}

.help {
  margin-top: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.18);
  padding: 12px 14px;
}

.help summary {
  cursor: pointer;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.86);
}

.help__body {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.help__body p {
  margin: 0;
}

.help__body ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.help__body li {
  margin: 6px 0;
}

.help__tip {
  margin-top: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.60);
}

.section--community {
  padding-top: 42px;
}

.community {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.community__card {
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.community__title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
}

.community__body {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.upload__meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.45;
}

.photo-preview {
  width: min(260px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  object-fit: cover;
  background: rgba(0, 0, 0, 0.20);
}

.captcha {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.20);
  padding: 14px 16px;
}

.captcha__title {
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
}

.captcha #turnstileWidget {
  min-height: 65px;
}

.progress {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.20);
  padding: 14px 16px;
  display: grid;
  gap: 10px;
}

.progress__track {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  overflow: hidden;
}

.progress__bar {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  transition: width 140ms ease;
}

.progress__text {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.upload__hint {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.55);
}

.embed {
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.26);
  padding: 14px;
}

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

.embed__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 90, 31, 0.14);
  color: rgba(255, 90, 31, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.embed__icon svg {
  width: 20px;
  height: 20px;
}

.embed__title {
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 13px;
}

.embed__sub {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  font-size: 14px;
}

.embed__hint {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.10);
  padding: 1px 6px;
  border-radius: 10px;
}

.footer {
  padding: 36px 0 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
}

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

.footer__copy {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
}

.footer__links {
  display: flex;
  gap: 14px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.footer__links a:hover {
  text-decoration: underline;
}

.noscript {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, calc(100% - 32px));
  background: rgba(0, 0, 0, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 16px;
  text-align: center;
  z-index: 50;
}

.hidden {
  display: none;
}

@media (max-width: 940px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 46px;
  }

  .panel__stats {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .community {
    grid-template-columns: 1fr;
  }

  .card--split {
    grid-template-columns: 1fr;
  }

  .card__right {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .nav__actions {
    gap: 6px;
  }

  .nav__link {
    padding: 8px 8px;
  }

  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
