/**
 * Satei (無料査定ウィザード) — Dark premium theme
 * Prefix: st-
 */

/* ---- Page background ---- */
body { background: #111; }

/* ---- Loader dark ---- */
#sqLoader{background:#0a0a0f}

/* ======== HERO ======== */
.st-hero {
	background: linear-gradient(135deg, #0d1117 0%, #1a2332 50%, #0f1923 100%);
	padding-top: 140px;
	padding-bottom: 80px;
	position: relative;
	overflow: hidden;
}
.st-hero-overlay {
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at 30% 20%, rgba(196,154,42,0.06) 0%, transparent 60%);
	pointer-events: none;
}
.st-hero-inner {
	position: relative;
	z-index: 2;
}
.st-hero .cp-breadcrumb { margin-bottom: 40px; }
.st-hero .cp-breadcrumb,
.st-hero .cp-breadcrumb a,
.st-hero .cp-breadcrumb-sep { color: rgba(255,255,255,0.5); }
.st-hero .cp-breadcrumb a:hover { color: #fff; }

.st-hero-title { margin-bottom: 20px; }
.st-hero-en {
	display: block;
	font-family: var(--font-display);
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 600;
	color: #fff;
	letter-spacing: 6px;
	line-height: 1.1;
	margin-bottom: 12px;
}
.st-hero-accent {
	display: block;
	width: 60px;
	height: 3px;
	background: var(--color-accent);
	margin-bottom: 16px;
}
.st-hero-ja {
	font-family: var(--font-serif);
	font-size: clamp(18px, 2.5vw, 24px);
	font-weight: 700;
	color: rgba(255,255,255,0.85);
	margin: 0;
}
.st-hero-sub {
	font-size: 15px;
	color: rgba(255,255,255,0.55);
	line-height: 1.8;
	max-width: 600px;
	margin: 0;
}

/* ======== FORM SECTION ======== */
.st-form-section {
	background: #111;
	padding: 80px 0 120px;
}

/* ── Trust badges ── */
.st-badges {
	display: flex;
	justify-content: center;
	gap: 32px;
	margin-bottom: 48px;
}
.st-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	color: rgba(255,255,255,0.6);
	font-size: 14px;
	font-weight: 500;
}
.st-badge svg {
	color: var(--color-accent);
	flex-shrink: 0;
}

/* ── Card ── */
.st-card {
	max-width: 720px;
	margin: 0 auto;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
}
.st-card-header {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 32px;
	background: rgba(196,154,42,0.12);
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.st-card-header-icon {
	color: var(--color-accent);
	display: flex;
}
.st-card-header-text {
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 1px;
}

/* ======== PROGRESS BAR ======== */
.st-progress {
	padding: 28px 32px 0;
	position: relative;
}
.st-progress-track {
	display: flex;
	justify-content: space-between;
	position: relative;
	padding-bottom: 12px;
}
.st-progress-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	z-index: 2;
	flex: 0 0 auto;
}
.st-progress-dot {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: rgba(255,255,255,0.08);
	border: 2px solid rgba(255,255,255,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 600;
	color: rgba(255,255,255,0.3);
	transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.st-progress-label {
	font-size: 11px;
	color: rgba(255,255,255,0.3);
	letter-spacing: 0.5px;
	white-space: nowrap;
	transition: color 0.3s;
}
.st-progress-step--active .st-progress-dot {
	background: var(--color-accent);
	border-color: var(--color-accent);
	color: #fff;
	box-shadow: 0 0 16px rgba(196,154,42,0.4);
}
.st-progress-step--active .st-progress-label {
	color: var(--color-accent);
}
.st-progress-step--done .st-progress-dot {
	background: rgba(90,173,112,0.2);
	border-color: #5aad70;
	color: #5aad70;
}
.st-progress-step--done .st-progress-label {
	color: rgba(255,255,255,0.5);
}

/* Line behind dots */
.st-progress-line {
	position: absolute;
	top: 16px;
	left: 16px;
	right: 16px;
	height: 2px;
	background: rgba(255,255,255,0.08);
	z-index: 1;
}
.st-progress-line-fill {
	height: 100%;
	background: var(--color-accent);
	width: 0;
	transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}

/* ======== STEP CONTAINER ======== */
.st-step {
	display: none;
	padding: 32px 32px 24px;
	animation: stSlideIn 0.35s cubic-bezier(0.4,0,0.2,1);
}
.st-step--active {
	display: block;
}
.st-step--exit {
	animation: stSlideOut 0.25s cubic-bezier(0.4,0,0.2,1);
}
@keyframes stSlideIn {
	from { opacity: 0; transform: translateX(30px); }
	to   { opacity: 1; transform: translateX(0); }
}
@keyframes stSlideOut {
	from { opacity: 1; transform: translateX(0); }
	to   { opacity: 0; transform: translateX(-30px); }
}

.st-step-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.st-step-num {
	font-family: var(--font-display);
	font-size: 20px;
	font-weight: 600;
	color: var(--color-accent);
	letter-spacing: 2px;
}
.st-step-title {
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 1px;
}
.st-step-note {
	font-size: 13px;
	color: rgba(255,255,255,0.45);
	margin: -12px 0 24px;
	line-height: 1.6;
}

/* ── Field groups ── */
.st-field-group {
	margin-bottom: 24px;
}
.st-field-group:last-child {
	margin-bottom: 0;
}

/* ── Rows & inputs ── */
.st-form-row {
	margin-bottom: 24px;
}
.st-form-row:last-child {
	margin-bottom: 0;
}
.st-form-row--half {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.st-label {
	display: block;
	font-size: 13px;
	color: rgba(255,255,255,0.6);
	margin-bottom: 8px;
	letter-spacing: 0.5px;
	font-weight: 500;
}
.st-req {
	color: var(--color-accent);
	font-size: 12px;
}
.st-input {
	width: 100%;
	padding: 12px 16px;
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.12);
	color: #fff;
	font-size: 15px;
	font-family: var(--font-sans);
	transition: border-color 0.3s, background 0.3s;
	box-sizing: border-box;
	border-radius: 0;
	-webkit-appearance: none;
}
.st-input::placeholder { color: rgba(255,255,255,0.25); }
.st-input:focus {
	outline: none;
	border-color: var(--color-accent);
	background: rgba(255,255,255,0.09);
}
.st-input--compact {
	width: 100px;
	text-align: right;
	padding: 8px 12px;
}
select.st-input {
	cursor: pointer;
	background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 40px;
}
select.st-input option {
	background: #1a1a1a;
	color: #fff;
}
.st-textarea {
	resize: vertical;
	min-height: 80px;
}

/* ======== MAKER GRID ======== */
.st-maker-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
	gap: 10px;
	margin-bottom: 12px;
}
.st-maker-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 14px 8px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.1);
	color: rgba(255,255,255,0.7);
	font-size: 13px;
	font-family: var(--font-sans);
	font-weight: 500;
	cursor: pointer;
	transition: all 0.25s;
	text-align: center;
}
.st-maker-btn:hover {
	background: rgba(255,255,255,0.08);
	border-color: rgba(255,255,255,0.2);
	color: #fff;
}
.st-maker-btn--selected {
	background: rgba(196,154,42,0.15);
	border-color: var(--color-accent);
	color: var(--color-accent);
	box-shadow: 0 0 12px rgba(196,154,42,0.2);
}
.st-maker-btn--other {
	border-style: dashed;
	color: rgba(255,255,255,0.4);
}
.st-make-input {
	margin-top: 12px;
}

/* ======== MILEAGE SLIDER ======== */
.st-mileage-wrap {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.st-range {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	background: rgba(255,255,255,0.1);
	outline: none;
	border-radius: 3px;
}
.st-range::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--color-accent);
	cursor: pointer;
	box-shadow: 0 0 8px rgba(196,154,42,0.3);
}
.st-range::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--color-accent);
	cursor: pointer;
	border: none;
}
.st-mileage-display {
	display: flex;
	align-items: center;
	gap: 6px;
}
.st-mileage-unit {
	font-size: 14px;
	color: rgba(255,255,255,0.5);
}

/* ======== BUTTON-OPTION GROUPS ======== */
.st-btn-group {
	display: flex;
	gap: 8px;
}
.st-btn-group--wide {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}
.st-btn-opt {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.1);
	color: rgba(255,255,255,0.6);
	font-size: 13px;
	font-family: var(--font-sans);
	font-weight: 500;
	cursor: pointer;
	transition: all 0.25s;
	flex: 1;
}
.st-btn-opt:hover {
	background: rgba(255,255,255,0.08);
	color: #fff;
}
.st-btn-opt--active {
	background: rgba(196,154,42,0.15);
	border-color: var(--color-accent);
	color: var(--color-accent);
}
.st-btn-opt-icon {
	display: flex;
	color: inherit;
}

/* ======== EQUIPMENT GRID ======== */
.st-equip-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 8px;
}
.st-equip-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 12px;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	cursor: pointer;
	transition: all 0.2s;
}
.st-equip-item:hover {
	background: rgba(255,255,255,0.06);
}
.st-equip-item input[type="checkbox"] {
	display: none;
}
.st-equip-item input:checked ~ .st-equip-icon {
	color: var(--color-accent);
}
.st-equip-item input:checked ~ .st-equip-name {
	color: #fff;
}
.st-equip-icon {
	color: rgba(255,255,255,0.3);
	transition: color 0.2s;
	display: flex;
	flex-shrink: 0;
}
.st-equip-name {
	font-size: 12px;
	color: rgba(255,255,255,0.5);
	transition: color 0.2s;
}

/* ======== CONDITION SELF-CHECK ======== */
.st-condition-grid {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.st-condition-row {
	display: flex;
	align-items: center;
	gap: 12px;
}
.st-condition-label {
	width: 60px;
	font-size: 12px;
	color: rgba(255,255,255,0.5);
	flex-shrink: 0;
}
.st-condition-opts {
	display: flex;
	gap: 6px;
	flex: 1;
}
.st-cond-btn {
	flex: 1;
	padding: 8px 4px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	color: rgba(255,255,255,0.4);
	font-size: 11px;
	font-family: var(--font-sans);
	cursor: pointer;
	transition: all 0.2s;
}
.st-cond-btn:hover {
	background: rgba(255,255,255,0.08);
	color: rgba(255,255,255,0.7);
}
.st-cond-btn--active {
	background: rgba(196,154,42,0.15);
	border-color: var(--color-accent);
	color: var(--color-accent);
}

/* ======== PHOTO UPLOAD ======== */
.st-photo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin-bottom: 24px;
}
.st-photo-slot {
	position: relative;
	aspect-ratio: 4/3;
}
.st-photo-upload {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	cursor: pointer;
	position: relative;
}
.st-photo-upload input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}
.st-photo-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,0.03);
	border: 2px dashed rgba(255,255,255,0.12);
	transition: all 0.2s;
}
.st-photo-slot:hover .st-photo-placeholder {
	border-color: var(--color-accent);
	background: rgba(196,154,42,0.05);
}
.st-photo-placeholder svg {
	color: rgba(255,255,255,0.2);
}
.st-photo-label {
	font-size: 11px;
	color: rgba(255,255,255,0.35);
	text-align: center;
}
.st-photo-preview {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.st-photo-remove {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(0,0,0,0.7);
	color: #fff;
	border: none;
	font-size: 16px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 5;
}
.st-photo-add-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: rgba(255,255,255,0.04);
	border: 1px dashed rgba(255,255,255,0.15);
	color: rgba(255,255,255,0.5);
	font-size: 13px;
	cursor: pointer;
	transition: all 0.2s;
}
.st-photo-add-btn:hover {
	border-color: var(--color-accent);
	color: var(--color-accent);
}
.st-photo-add-btn input[type="file"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}
.st-damage-previews {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 12px;
}
.st-damage-thumb {
	position: relative;
	width: 80px;
	height: 60px;
}
.st-damage-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.st-damage-remove {
	position: absolute;
	top: 2px;
	right: 2px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(0,0,0,0.7);
	color: #fff;
	border: none;
	font-size: 13px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ======== METHOD CARDS ======== */
.st-method-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}
.st-method-card {
	cursor: pointer;
}
.st-method-card input[type="radio"] {
	display: none;
}
.st-method-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 24px 12px;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.08);
	text-align: center;
	transition: all 0.3s;
}
.st-method-card:hover .st-method-inner {
	background: rgba(255,255,255,0.06);
}
.st-method-card--active .st-method-inner {
	background: rgba(196,154,42,0.1);
	border-color: var(--color-accent);
	box-shadow: 0 0 16px rgba(196,154,42,0.15);
}
.st-method-inner svg {
	color: rgba(255,255,255,0.3);
	transition: color 0.3s;
}
.st-method-card--active .st-method-inner svg {
	color: var(--color-accent);
}
.st-method-label {
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.5px;
}
.st-method-desc {
	font-size: 11px;
	color: rgba(255,255,255,0.4);
	line-height: 1.5;
}

/* ======== CONSENT ======== */
.st-form-consent {
	margin-top: 24px;
	padding: 20px 24px;
	background: rgba(255,255,255,0.03);
	border: 1px solid rgba(255,255,255,0.06);
	text-align: center;
}
.st-form-consent label {
	display: inline-flex;
	align-items: flex-start;
	gap: 10px;
	cursor: pointer;
	font-size: 13px;
	color: rgba(255,255,255,0.6);
	line-height: 1.6;
}
.st-form-consent input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	flex-shrink: 0;
	accent-color: var(--color-accent);
	cursor: pointer;
}
.st-form-consent a {
	color: var(--color-accent);
	text-decoration: underline;
}
.st-form-consent a:hover {
	color: #fff;
}

/* ======== WIZARD NAV ======== */
.st-wizard-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 32px 28px;
	border-top: 1px solid rgba(255,255,255,0.06);
}
.st-wizard-back,
.st-wizard-next {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border: none;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--font-sans);
	cursor: pointer;
	transition: all 0.25s;
	letter-spacing: 0.5px;
}
.st-wizard-back {
	background: transparent;
	color: rgba(255,255,255,0.5);
}
.st-wizard-back:hover {
	color: #fff;
}
.st-wizard-next {
	background: var(--color-accent);
	color: #fff;
}
.st-wizard-next:hover {
	background: var(--color-accent-dark);
	transform: translateY(-1px);
}
.st-wizard-next:disabled {
	opacity: 0.6;
	cursor: wait;
	transform: none;
}
.st-wizard-next--submit {
	background: #5aad70;
	padding: 14px 32px;
}
.st-wizard-next--submit:hover {
	background: #4a9d60;
}
.st-wizard-step-label {
	font-size: 12px;
	color: rgba(255,255,255,0.3);
	letter-spacing: 2px;
	font-family: var(--font-display);
}

/* ======== ERROR / SUCCESS ======== */
.st-form-error {
	margin-bottom: 16px;
	padding: 14px 20px;
	background: rgba(239,68,68,0.1);
	border: 1px solid rgba(239,68,68,0.3);
	color: #fca5a5;
	font-size: 14px;
	line-height: 1.5;
}
.st-success {
	text-align: center;
	padding: 60px 32px;
}
.st-success svg {
	margin-bottom: 20px;
}
.st-success h3 {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	line-height: 1.6;
	margin: 0 0 12px;
}
.st-success p {
	font-size: 14px;
	color: rgba(255,255,255,0.6);
	line-height: 1.7;
	margin: 0 0 8px;
}
.st-success-num {
	font-size: 16px !important;
	color: rgba(255,255,255,0.8) !important;
}
.st-success-num strong {
	color: var(--color-accent);
	font-family: var(--font-display);
	letter-spacing: 2px;
}

/* ── Spinner ── */
.st-spinner {
	display: inline-block;
	width: 20px;
	height: 20px;
	border: 2px solid rgba(255,255,255,0.3);
	border-top-color: #fff;
	border-radius: 50%;
	animation: st-spin 0.6s linear infinite;
}
@keyframes st-spin { to { transform: rotate(360deg); } }

/* ── Fullscreen submit overlay ── */
.st-submit-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	background: rgba(10, 10, 15, 0.85);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}
.st-submit-overlay--active {
	opacity: 1;
	visibility: visible;
}
.st-submit-overlay-inner {
	width: min(500px, 80vw);
	text-align: center;
}
.st-submit-progress-track {
	width: 100%;
	height: 4px;
	background: rgba(255,255,255,0.1);
	border-radius: 2px;
	overflow: hidden;
}
.st-submit-progress-fill {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, var(--color-accent, #c49a2a), #e8c55a);
	border-radius: 2px;
	transition: width 0.2s linear;
}
.st-submit-msg {
	margin-top: 20px;
	color: rgba(255,255,255,0.6);
	font-size: 14px;
	letter-spacing: 1px;
}

/* ── Phone row ── */
.st-phone-row {
	text-align: center;
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid rgba(255,255,255,0.06);
	max-width: 720px;
	margin-left: auto;
	margin-right: auto;
}
.st-phone-label {
	font-size: 13px;
	color: rgba(255,255,255,0.5);
	margin: 0 0 12px;
	letter-spacing: 1px;
}
.st-phone-num-row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-bottom: 8px;
}
.st-phone-num-row svg {
	color: var(--color-accent);
}
.st-phone-num {
	font-family: var(--font-display);
	font-size: 32px;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	letter-spacing: 2px;
}
.st-phone-num:hover {
	color: var(--color-accent);
}
.st-phone-hours {
	font-size: 12px;
	color: rgba(255,255,255,0.4);
	margin: 0;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
	.st-hero {
		padding-top: 110px;
		padding-bottom: 48px;
	}
	.st-hero-en {
		font-size: 32px;
		letter-spacing: 3px;
	}
	.st-badges {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}
	.st-card-header {
		padding: 16px 20px;
	}
	.st-progress {
		padding: 20px 20px 0;
	}
	.st-progress-label {
		display: none;
	}
	.st-step {
		padding: 24px 20px 20px;
	}
	.st-form-row--half {
		grid-template-columns: 1fr;
	}
	.st-maker-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.st-photo-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.st-method-cards {
		grid-template-columns: 1fr;
	}
	.st-btn-group--wide {
		grid-template-columns: 1fr 1fr;
	}
	.st-wizard-nav {
		padding: 16px 20px 24px;
	}
	.st-form-consent {
		padding: 16px;
	}
	.st-phone-num {
		font-size: 24px;
	}
	.st-form-section {
		padding: 48px 0 80px;
	}
	.st-equip-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.st-condition-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 6px;
	}
	.st-condition-label {
		width: auto;
	}
}

@media (max-width: 480px) {
	.st-hero {
		padding-top: 100px;
		padding-bottom: 36px;
	}
	.st-hero-en {
		font-size: 26px;
		letter-spacing: 2px;
	}
	.st-hero-sub {
		font-size: 13px;
	}
	.st-maker-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.st-btn-group {
		flex-direction: column;
	}
	.st-btn-group--wide {
		grid-template-columns: 1fr;
	}
}
