/* AI-WIN custom front page for Service Lux child theme */

.aiwin-home {
	--aiwin-bg-light: #f5f5f5;
	--aiwin-bg-dark: #111111;
	--aiwin-red: #cc292b;
	--aiwin-text-dark: #111;
	--aiwin-text-light: #fff;
	--aiwin-tape: rgba(226, 219, 185, 0.9);
	--aiwin-paper: #f7f2e8;

	background:
		radial-gradient(#d4d4d4 1px, transparent 1px),
		var(--aiwin-bg-light);
	background-size: 20px 20px;
	color: var(--aiwin-text-dark);
	overflow: hidden;
	font-family: "Helvetica Neue", Arial, sans-serif;
}

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

.aiwin-home a {
	text-decoration: none;
}

.aiwin-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 24px;
	position: relative;
}

.aiwin-btn {
	display: inline-block;
	padding: 0.9rem 1.6rem;
	text-decoration: none;
	font-weight: 900;
	text-transform: uppercase;
	text-align: center;
	border: 3px solid #000;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 5px 5px 0 #000;
	position: relative;
	background: #fff;
	color: #111;
	line-height: 1.2;
}

.aiwin-btn:hover {
	transform: translate(-3px, -3px);
	box-shadow: 8px 8px 0 #000;
}

.aiwin-btn--red {
	background-color: var(--aiwin-red);
	color: var(--aiwin-text-light);
	border-color: var(--aiwin-text-light);
	box-shadow: 5px 5px 0 rgba(255,255,255,0.28);
}

.aiwin-btn--red:hover {
	background-color: var(--aiwin-text-light);
	color: var(--aiwin-red);
}

.aiwin-btn--dark {
	background-color: var(--aiwin-bg-dark);
	color: var(--aiwin-text-light);
	border-color: #000;
	box-shadow: 5px 5px 0 var(--aiwin-red);
}

.aiwin-btn--white {
	background: #fff;
	color: #111;
}

.aiwin-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	align-items: center;
	margin-top: 2rem;
}

.aiwin-actions--center {
	justify-content: center;
}

.aiwin-scribble {
	color: var(--aiwin-red);
	font-family: "Segoe Print", cursive;
	font-style: italic;
	font-weight: 700;
	font-size: 1.2rem;
	transform: rotate(-4deg);
	display: inline-block;
	margin-bottom: 0.7rem;
}

.aiwin-scribble--light {
	color: #000000;
	font-family: "Segoe Print", cursive;
	font-style: italic;
	font-weight: 700;
	font-size: 1.2rem;
	transform: rotate(-4deg);
	display: inline-block;
	margin-bottom: 0.7rem;
}

.aiwin-tape {
	position: absolute;
	width: 92px;
	height: 30px;
	background-color: var(--aiwin-tape);
	box-shadow: 0 2px 4px rgba(0,0,0,0.16);
	z-index: 10;
	clip-path: polygon(2% 0, 98% 2%, 100% 98%, 0 100%);
	pointer-events: none;
}

.aiwin-tape--top {
	top: -15px;
	left: 50%;
	transform: translateX(-50%) rotate(-4deg);
}

.aiwin-tape--corner {
	top: -14px;
	left: -22px;
	transform: rotate(-42deg);
}

.aiwin-tape--right {
	top: -14px;
	right: -22px;
	transform: rotate(42deg);
}

.aiwin-brutal {
	background-color: #fff;
	border: 4px solid #111;
	box-shadow: 8px 8px 0 #111;
	position: relative;
	transition: all 0.25s ease;
}

.aiwin-brutal:hover {
	transform: translate(-4px, -4px) !important;
	box-shadow: 12px 12px 0 var(--aiwin-red);
}

/* Hover-анимации для всех основных блоков */
.aiwin-photo,
.aiwin-note-card,
.aiwin-black-card,
.aiwin-form-card,
.aiwin-poster,
.aiwin-step,
.aiwin-route-card,
.aiwin-author__photo,
.aiwin-idea {
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	will-change: transform;
}

.aiwin-photo:hover {
	transform: translate(-4px, -4px) rotate(2.2deg);
	box-shadow: 14px 14px 0 var(--aiwin-red);
}

.aiwin-note-card:hover {
	transform: translate(-4px, -4px) rotate(-3deg);
	box-shadow: 12px 12px 0 var(--aiwin-red);
}

.aiwin-black-card:hover {
	transform: translate(-4px, -4px) rotate(1deg);
	box-shadow: 12px 12px 0 var(--aiwin-red);
}

.aiwin-form-card:hover {
	transform: translate(-4px, -4px) rotate(-1deg);
	box-shadow: 14px 14px 0 var(--aiwin-red);
}

.aiwin-poster:hover {
	transform: translate(-4px, -4px) rotate(-2deg);
	box-shadow: 14px 14px 0 #111;
}

.aiwin-step.aiwin-rotate-pos:hover {
	transform: translate(-4px, -4px) rotate(1deg);
	box-shadow: 10px 10px 0 rgba(0,0,0,0.55);
}

.aiwin-step.aiwin-rotate-neg:hover {
	transform: translate(-4px, -4px) rotate(-1deg);
	box-shadow: 10px 10px 0 rgba(0,0,0,0.55);
}

.aiwin-route-card.aiwin-rotate-pos:hover {
	transform: translate(-4px, -4px) rotate(1deg);
	box-shadow: 11px 11px 0 var(--aiwin-red);
}

.aiwin-route-card.aiwin-rotate-neg:hover {
	transform: translate(-4px, -4px) rotate(-1deg);
	box-shadow: 11px 11px 0 var(--aiwin-red);
}

.aiwin-author__photo:hover {
	transform: translate(-4px, -4px) rotate(-2deg);
	box-shadow: 14px 14px 0 var(--aiwin-red);
}


.aiwin-rotate-pos {
	transform: rotate(1deg);
}

.aiwin-rotate-neg {
	transform: rotate(-1deg);
}

/* HERO */

.aiwin-hero {
	background-color: var(--aiwin-red);
	color: var(--aiwin-text-light);
	border-bottom: 10px solid var(--aiwin-bg-dark);
	position: relative;
	overflow: hidden;
	padding: 4.5rem 0 4.8rem;
}

.aiwin-hero::before {
	content: "AI-WIN AI-WIN AI-WIN";
	position: absolute;
	left: -20px;
	top: 24px;
	font-size: clamp(5rem, 12vw, 12rem);
	line-height: 0.76;
	font-weight: 950;
	letter-spacing: -0.08em;
	color: rgba(255,255,255,0.08);
	white-space: nowrap;
	pointer-events: none;
}

.aiwin-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.82fr);
	gap: 3rem;
	align-items: center;
}

.aiwin-hero__title {
    font-size: clamp(3.8rem, 9vw, 6.5rem);
    /* text-transform: uppercase; */
    line-height: 0.82;
    letter-spacing: 0.0em;
    margin: 0 0 1.2rem;
    color: #fff;
    font-weight: 950;
}

.aiwin-hero__title span {
	display: inline-block;
	background: #fff;
	color: #111;
	padding: 0.02em 0.12em 0.08em;
	transform: rotate(-1deg);
	border: 3px solid #111;
	box-shadow: 7px 7px 0 #111;
	margin-top: 0.12em;
}

.aiwin-hero__lead {
	max-width: 640px;
	font-size: 1.25rem;
	line-height: 1.42;
	font-weight: 750;
	color: rgba(255,255,255,0.92);
	margin: 0 0 2rem;
}

.aiwin-hero__notes {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	max-width: 760px;
}

.aiwin-hero__notes div {
	background: rgba(0,0,0,0.12);
	border: 3px solid rgba(255,255,255,0.65);
	padding: 1rem;
	font-weight: 800;
	font-size: 0.93rem;
	line-height: 1.25;
}

.aiwin-hero__visual {
	position: relative;
	min-height: 520px;
}

.aiwin-photo {
	background: #fff;
	border: 4px solid #111;
	padding: 12px;
	box-shadow: 10px 10px 0 #111;
	position: relative;
}

.aiwin-photo--hero {
	position: absolute;
	right: 0;
	top: 12px;
	width: min(360px, 100%);
	transform: rotate(2.2deg);
}

.aiwin-photo__inner,
.aiwin-poster__img,
.aiwin-author__img {
	background:
		linear-gradient(180deg, rgba(255,255,255,0.05), rgba(0,0,0,0.25)),
		var(--aiwin-img, none),
		#d8d8d8;
	background-position: center;
	background-size: cover;
	filter: grayscale(1);
	border: 2px solid #111;
	position: relative;
}

.aiwin-photo__inner {
	height: 430px;
}

.aiwin-photo__inner::after,
.aiwin-poster__img::after,
.aiwin-author__img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0,0,0,0.055) 5px, rgba(0,0,0,0.055) 10px);
}

.aiwin-note-card {
	position: absolute;
	left: 0;
	bottom: 15px;
	width: 300px;
	background: #fff;
	color: #111;
	border: 4px solid #111;
	box-shadow: 8px 8px 0 #111;
	padding: 1.4rem;
	transform: rotate(-3deg);
	z-index: 4;
}

.aiwin-note-card h3 {
	font-size: 1.4rem;
	line-height: 1.05;
	text-transform: uppercase;
	margin: 0 0 0.8rem;
	font-weight: 950;
}

.aiwin-note-card p {
	font-size: 0.95rem;
	font-weight: 700;
	color: #333;
	margin: 0;
}

.aiwin-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin-top: 1rem;
}

.aiwin-tags span {
	display: inline-block;
	background: #111;
	color: #fff;
	padding: 0.3rem 0.5rem;
	font-size: 0.74rem;
	font-weight: 900;
	text-transform: uppercase;
}

.aiwin-stamp,
.aiwin-mini-stamp {
	position: absolute;
	color: var(--aiwin-red);
	border: 4px solid var(--aiwin-red);
	padding: 4px 12px;
	font-weight: 900;
	text-transform: uppercase;
	transform: rotate(-14deg);
	pointer-events: none;
	opacity: 0.88;
	line-height: 1;
	background: rgba(255,255,255,0.1);
}

.aiwin-stamp {
	right: -18px;
	bottom: 80px;
	font-size: 1.8rem;
	background: #fff;
}

/* MANIFEST */

.aiwin-manifest {
	padding: 5.5rem 0;
	border-bottom: 10px solid var(--aiwin-bg-dark);
	background-color: var(--aiwin-bg-light);
}

.aiwin-manifest__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.62fr);
	gap: 2.5rem;
	align-items: start;
}

.aiwin-manifest h2,
.aiwin-generator h2,
.aiwin-vibe h2,
.aiwin-ideas h2,
.aiwin-route h2,
.aiwin-author h2,
.aiwin-final h2 {
    font-size: clamp(2.5rem, 6vw, 4.3rem);
    /* text-transform: uppercase; */
    line-height: 0.92;
    font-weight: 950;
    letter-spacing: -0.0em;
    margin: 0;
}

.aiwin-brutal--paper {
	padding: 2.4rem;
}

.aiwin-brutal--paper p {
	font-size: 1.25rem;
	font-weight: 750;
	margin: 1.4rem 0 0;
	max-width: 720px;
}

.aiwin-black-card {
	padding: 2rem;
	background: #111;
	color: #fff;
	border: 4px solid #111;
	box-shadow: 8px 8px 0 var(--aiwin-red);
}

.aiwin-black-card h3 {
	text-transform: uppercase;
	font-size: 1.5rem;
	line-height: 1.1;
	margin: 0 0 1.2rem;
	color: #fff;
}

.aiwin-black-card ul {
	list-style: none;
	display: grid;
	gap: 1rem;
	margin: 0;
	padding: 0;
}

.aiwin-black-card li {
	position: relative;
	padding-left: 1.55rem;
	font-weight: 800;
}

.aiwin-black-card li::before {
	content: "■";
	position: absolute;
	left: 0;
	color: var(--aiwin-red);
}

/* GENERATOR */

.aiwin-generator {
	background: var(--aiwin-bg-dark);
	color: #fff;
	padding: 5.5rem 0;
	border-bottom: 10px solid #000;
	position: relative;
	overflow: hidden;
}

.aiwin-generator::before {
	content: "GENERATOR";
	position: absolute;
	left: -20px;
	top: 28px;
	font-size: clamp(4rem, 12vw, 10rem);
	line-height: 0.8;
	font-weight: 950;
	color: rgba(255,255,255,0.055);
	letter-spacing: -0.08em;
}

.aiwin-generator__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
	gap: 3rem;
	align-items: center;
}

.aiwin-section-lead {
	max-width: 720px;
	margin: 1.2rem 0 0;
	font-size: 1.15rem;
	color: #333;
	font-weight: 700;
	line-height: 1.6;
}

.aiwin-generator .aiwin-section-lead,
.aiwin-route .aiwin-section-lead {
	color: rgba(255,255,255,0.82);
}

.aiwin-points {
	margin-top: 2rem;
	display: grid;
	gap: 1rem;
}

.aiwin-points div {
	border: 3px solid rgba(255,255,255,0.4);
	padding: 1rem;
	font-weight: 800;
	background: rgba(255,255,255,0.06);
}

.aiwin-form-card {
	background: #fff;
	color: #111;
	border: 4px solid #111;
	box-shadow: 10px 10px 0 var(--aiwin-red);
	padding: 1.6rem;
	transform: rotate(-1deg);
	position: relative;
}

.aiwin-form-card h3 {
	font-size: 1.4rem;
	font-weight: 950;
	text-transform: uppercase;
	line-height: 1;
	margin: 0 0 1.2rem;
	border-bottom: 3px solid #111;
	padding-bottom: 0.7rem;
}

.aiwin-field {
	margin-bottom: 1rem;
}

.aiwin-field label {
	display: block;
	font-weight: 900;
	text-transform: uppercase;
	font-size: 0.78rem;
	margin-bottom: 0.35rem;
}

.aiwin-field div {
	background: #f1f1f1;
	border: 3px solid #111;
	padding: 0.8rem;
	min-height: 48px;
	font-weight: 700;
	color: #333;
}

.aiwin-field .aiwin-field--big {
	min-height: 95px;
}

.aiwin-result {
	margin-top: 1.2rem;
	background: #111;
	color: #fff;
	border: 3px solid #111;
	padding: 1rem;
	font-size: 0.95rem;
	font-weight: 700;
}

.aiwin-result strong {
	color: var(--aiwin-red);
	text-transform: uppercase;
}

/* VIBE */

.aiwin-vibe {
	padding: 5.5rem 0;
	background: var(--aiwin-red);
	color: #fff;
	border-bottom: 10px solid var(--aiwin-bg-dark);
}

.aiwin-vibe__grid {
	display: grid;
	grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
	gap: 3rem;
	align-items: center;
}

.aiwin-poster {
	background: #fff;
	border: 4px solid #111;
	box-shadow: 10px 10px 0 #111;
	padding: 12px;
	transform: rotate(-2deg);
	position: relative;
}

.aiwin-poster__img {
	height: 480px;
}

.aiwin-vibe__sticker {
	position: absolute;
	right: -18px;
	top: 38px;
	width: 130px;
	height: 130px;
	border-radius: 50%;
	background: #fff;
	color: #111;
	border: 4px solid #111;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 950;
	text-transform: uppercase;
	line-height: 1.05;
	transform: rotate(12deg);
	box-shadow: 6px 6px 0 #111;
	z-index: 6;
}

.aiwin-vibe .aiwin-section-lead {
	color: rgba(255,255,255,0.92);
}

.aiwin-steps {
	display: grid;
	gap: 1rem;
	margin-top: 2rem;
}

.aiwin-step {
	background: #fff;
	color: #111;
	border: 4px solid #111;
	box-shadow: 6px 6px 0 rgba(0,0,0,0.45);
	padding: 1.35rem;
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 1rem;
	align-items: start;
	position: relative;
}

.aiwin-step__num {
	color: transparent;
	-webkit-text-stroke: 2px #111;
	font-size: 3.2rem;
	font-weight: 950;
	line-height: 0.85;
}

.aiwin-step h3 {
	font-size: 1.35rem;
	text-transform: uppercase;
	line-height: 1.05;
	margin: 0 0 0.4rem;
	font-weight: 950;
}

.aiwin-step p {
	color: #333;
	font-weight: 700;
	font-size: 0.98rem;
	margin: 0;
}

/* IDEAS */

.aiwin-ideas {
	padding: 5.5rem 0;
	background: var(--aiwin-bg-light);
	border-bottom: 10px solid var(--aiwin-bg-dark);
}

.aiwin-section-head {
	text-align: center;
	margin-bottom: 3rem;
}

.aiwin-section-head .aiwin-section-lead {
	margin-left: auto;
	margin-right: auto;
}

.aiwin-ideas__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.6rem;
}

.aiwin-idea {
	min-height: 240px;
	padding: 1.7rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.aiwin-idea h3 {
	font-size: 1.6rem;
	line-height: 1.03;
	text-transform: uppercase;
	margin: 0 0 0.7rem;
	font-weight: 950;
}

.aiwin-idea p {
	color: #333;
	font-weight: 700;
	margin: 0;
}

.aiwin-idea__icon {
	font-size: 2rem;
	margin-bottom: 1.4rem;
}

.aiwin-mini-stamp {
	bottom: 12px;
	right: 12px;
	font-size: 1rem;
}

/* ROUTE */

.aiwin-route {
	background: #111;
	color: #fff;
	padding: 5.5rem 0;
	border-bottom: 10px solid #000;
}

.aiwin-route__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.4rem;
	margin-top: 3rem;
}

.aiwin-route-card {
	background: #fff;
	color: #111;
	border: 4px solid #111;
	box-shadow: 7px 7px 0 var(--aiwin-red);
	padding: 1.5rem;
	min-height: 250px;
	position: relative;
}

.aiwin-route-card__num {
	font-size: 4rem;
	font-weight: 950;
	color: transparent;
	-webkit-text-stroke: 2px var(--aiwin-red);
	line-height: 0.8;
	margin-bottom: 2rem;
}

.aiwin-route-card h3 {
	font-size: 1.45rem;
	text-transform: uppercase;
	line-height: 1.05;
	margin: 0 0 0.65rem;
	font-weight: 950;
}

.aiwin-route-card p {
	color: #333;
	font-weight: 700;
	font-size: 0.95rem;
	margin: 0;
}

/* AUTHOR */

.aiwin-author {
	padding: 5.5rem 0;
	background: var(--aiwin-paper);
	border-bottom: 10px solid var(--aiwin-bg-dark);
}

.aiwin-author__grid {
	display: grid;
	grid-template-columns: minmax(360px, 0.48fr) minmax(0, 1fr);
	gap: 3rem;
	align-items: center;
}

.aiwin-author__photo {
	background: #fff;
	border: 4px solid #111;
	box-shadow: 10px 10px 0 #111;
	padding: 12px;
	transform: rotate(-2deg);
	position: relative;
}

.aiwin-author__img {
	height: 500px;
}

.aiwin-author__text {
	padding: 2.3rem;
}

.aiwin-quote {
	margin-top: 1.8rem;
	background: #111;
	color: #fff;
	border: 4px solid #111;
	box-shadow: 8px 8px 0 var(--aiwin-red);
	padding: 1.4rem;
	font-size: 1.1rem;
	font-weight: 800;
	transform: rotate(1deg);
}

/* FINAL */

.aiwin-final {
	background: var(--aiwin-red);
	color: #fff;
	padding: 5.5rem 0;
	position: relative;
	overflow: hidden;
}

.aiwin-final::before {
	content: "START";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) rotate(-5deg);
	font-size: clamp(7rem, 18vw, 16rem);
	line-height: 0.8;
	color: rgba(255,255,255,0.08);
	font-weight: 950;
	letter-spacing: -0.08em;
	pointer-events: none;
}

.aiwin-final__grid {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.55fr);
	gap: 3rem;
	align-items: center;
}

.aiwin-final__content {
	max-width: 760px;
}

.aiwin-final h2 {
	max-width: 760px;
	margin: 0;
	text-align: left;
}

.aiwin-final p {
	max-width: 680px;
	margin: 1.4rem 0 0;
	font-size: 1.2rem;
	font-weight: 750;
	color: rgba(255,255,255,0.93);
}

.aiwin-final .aiwin-actions {
	justify-content: flex-start;
}

.aiwin-final__card {
	position: relative;
	background: #fff;
	color: #111;
	border: 4px solid #111;
	box-shadow: 10px 10px 0 #111;
	padding: 2rem;
	transform: rotate(1.5deg);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.aiwin-final__card:hover {
	transform: translate(-4px, -4px) rotate(1.5deg);
	box-shadow: 14px 14px 0 #111;
}

.aiwin-final__card h3 {
	margin: 0 0 1.2rem;
	font-size: 1.7rem;
	line-height: 1;
	font-weight: 950;
	text-transform: uppercase;
}

.aiwin-final__card ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.8rem;
}

.aiwin-final__card li {
	position: relative;
	padding-left: 1.4rem;
	color: #333;
	font-weight: 800;
}

.aiwin-final__card li::before {
	content: "■";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--aiwin-red);
}

.aiwin-final__stamp {
	position: absolute;
	right: 16px;
	bottom: 14px;
	color: var(--aiwin-red);
	border: 4px solid var(--aiwin-red);
	padding: 4px 12px;
	font-weight: 900;
	text-transform: uppercase;
	transform: rotate(-12deg);
	opacity: 0.88;
	background: rgba(255,255,255,0.1);
}

@media (max-width: 980px) {
	.aiwin-final__grid {
		grid-template-columns: 1fr;
	}

	.aiwin-final__content {
		max-width: none;
	}

	.aiwin-final h2,
	.aiwin-final p {
		max-width: none;
	}
}

@media (max-width: 620px) {
	.aiwin-final {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.aiwin-final h2 {
		font-size: 2.15rem;
		line-height: 0.98;
	}

	.aiwin-final p {
		font-size: 1.05rem;
	}

	.aiwin-final__card {
		padding: 1.4rem;
		transform: none;
	}

	.aiwin-final__card:hover {
		transform: none;
	}

	.aiwin-final__stamp {
		display: none;
	}
}

/* ADAPTIVE */

@media (max-width: 980px) {
	.aiwin-hero__grid,
	.aiwin-manifest__grid,
	.aiwin-generator__grid,
	.aiwin-vibe__grid,
	.aiwin-author__grid {
		grid-template-columns: 1fr;
	}

	.aiwin-hero__visual {
		min-height: 560px;
	}

	.aiwin-photo--hero {
		right: 0;
		width: min(360px, 88%);
	}

	.aiwin-note-card {
		left: 0;
		bottom: 0;
	}

	.aiwin-hero__notes {
		grid-template-columns: 1fr;
	}

	.aiwin-ideas__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.aiwin-route__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.aiwin-container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.aiwin-hero {
		padding-top: 3rem;
	}

	.aiwin-hero__title {
		font-size: 3.15rem;
		line-height: 0.88;
	}

	.aiwin-hero__visual {
		min-height: 520px;
	}

	.aiwin-photo--hero {
		width: 86%;
	}

	.aiwin-photo__inner {
		height: 385px;
	}

	.aiwin-note-card {
		width: calc(100% - 20px);
		left: 10px;
	}

	.aiwin-stamp {
		display: none;
	}

	.aiwin-manifest h2,
	.aiwin-generator h2,
	.aiwin-vibe h2,
	.aiwin-ideas h2,
	.aiwin-route h2,
	.aiwin-author h2,
	.aiwin-final h2 {
		font-size: 2.15rem;
		line-height: 0.98;
	}

	.aiwin-manifest,
	.aiwin-generator,
	.aiwin-vibe,
	.aiwin-ideas,
	.aiwin-route,
	.aiwin-author,
	.aiwin-final {
		padding-top: 4rem;
		padding-bottom: 4rem;
	}

	.aiwin-ideas__grid,
	.aiwin-route__grid {
		grid-template-columns: 1fr;
	}

	.aiwin-step {
		grid-template-columns: 1fr;
	}

	.aiwin-author__img {
		height: 380px;
	}

	.aiwin-btn {
		width: 100%;
	}

	.aiwin-vibe__sticker {
		width: 100px;
		height: 100px;
		font-size: 0.82rem;
	}
}


@media (hover: none) {
	.aiwin-photo:hover,
	.aiwin-note-card:hover,
	.aiwin-black-card:hover,
	.aiwin-form-card:hover,
	.aiwin-poster:hover,
	.aiwin-step:hover,
	.aiwin-route-card:hover,
	.aiwin-author__photo:hover,
	.aiwin-brutal:hover {
		transform: none !important;
	}
}

body.home .aiwin-main-nav,
body.page-template-home-page .aiwin-main-nav,
body.page-template-home-page-php .aiwin-main-nav {
	margin-bottom: 0;
}