:root {
	--rapidshop-navy: #071a3a;
	--rapidshop-blue: #0b57e3;
	--rapidshop-blue-dark: #0647bf;
	--rapidshop-soft: #f2f6fd;
	--rapidshop-soft-strong: #e7effc;
	--rapidshop-white: #fff;
	--rapidshop-muted: #5f6d83;
	--rapidshop-border: #d5deeb;
	--rapidshop-border-strong: #b9c8df;
	--rapidshop-shadow: 0 18px 45px rgb(7 26 58 / 10%);
	--rapidshop-radius: 16px;
	--rapidshop-content: 1280px;
}

html {
	scroll-behavior: smooth;
}

body.rapidshop-site {
	margin: 0;
	background: var(--rapidshop-white);
	color: var(--rapidshop-navy);
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}

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

.rapidshop-site a {
	color: inherit;
	text-decoration: none;
}

.rapidshop-site img {
	max-width: 100%;
	height: auto;
}

.rapidshop-site .site-header,
.rapidshop-site .site-footer,
.rapidshop-site .breadcrumb,
.rapidshop-site .page-header,
.rapidshop-site .vk-mobile-nav-menu-btn,
.rapidshop-site .footerMenu,
.rapidshop-site .footerSiteMap {
	display: none !important;
}

.rapidshop-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 9999;
	padding: 10px 16px;
	transform: translateY(-150%);
	border-radius: 8px;
	background: var(--rapidshop-navy);
	color: var(--rapidshop-white) !important;
	font-weight: 700;
}

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

.rapidshop-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid var(--rapidshop-border);
	background: rgb(255 255 255 / 96%);
	backdrop-filter: blur(16px);
}

.admin-bar .rapidshop-header {
	top: 32px;
}

.rapidshop-header__inner,
.rapidshop-footer__inner {
	width: min(calc(100% - 64px), var(--rapidshop-content));
	margin-inline: auto;
}

.rapidshop-header__inner {
	display: flex;
	min-height: 84px;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.rapidshop-brand {
	flex: none;
	color: var(--rapidshop-navy) !important;
	font-size: 2rem;
	font-weight: 850;
	letter-spacing: -0.055em;
	line-height: 1;
}

.rapidshop-nav {
	min-width: 0;
}

.rapidshop-nav-list {
	display: flex;
	margin: 0;
	padding: 0;
	align-items: center;
	gap: clamp(22px, 3vw, 44px);
	list-style: none;
}

.rapidshop-nav-list li {
	margin: 0;
}

.rapidshop-nav-list a {
	position: relative;
	display: inline-block;
	padding: 10px 0;
	color: var(--rapidshop-navy) !important;
	font-size: 0.95rem;
	font-weight: 700;
}

.rapidshop-nav-list a::after {
	position: absolute;
	right: 0;
	bottom: 4px;
	left: 0;
	height: 2px;
	transform: scaleX(0);
	background: var(--rapidshop-blue);
	content: "";
	transition: transform 180ms ease;
}

.rapidshop-nav-list a:hover::after,
.rapidshop-nav-list a:focus-visible::after {
	transform: scaleX(1);
}

.rapidshop-main {
	overflow: hidden;
}

.rapidshop-main > .wp-block-group {
	margin: 0;
}

.rapidshop-hero {
	min-height: 640px;
	border-bottom: 1px solid var(--rapidshop-border);
	background: var(--rapidshop-white);
}

.rapidshop-hero__inner {
	display: grid;
	width: min(calc(100% - 64px), var(--rapidshop-content));
	min-height: 640px;
	margin-inline: auto;
	align-items: center;
	grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
	gap: clamp(40px, 6vw, 92px);
}

.rapidshop-hero__copy {
	position: relative;
	z-index: 2;
	padding: 80px 0;
}

.rapidshop-hero h1 {
	max-width: 670px;
	margin: 0 0 30px;
	color: var(--rapidshop-navy);
	font-size: clamp(3.2rem, 5.25vw, 5rem);
	font-weight: 900;
	letter-spacing: -0.065em;
	line-height: 1.18;
}

.rapidshop-hero__copy > p {
	margin: 0;
	color: #263753;
	font-size: clamp(1.08rem, 1.45vw, 1.28rem);
	font-weight: 500;
	line-height: 1.8;
}

.rapidshop-hero--minimal {
	min-height: 660px;
}

.rapidshop-hero--minimal .rapidshop-hero__inner {
	min-height: 660px;
}

.rapidshop-hero--minimal h1 {
	margin-bottom: 44px;
	font-size: clamp(4rem, 6.5vw, 6.4rem);
	line-height: 1;
	white-space: nowrap;
}

.rapidshop-home-domains {
	display: grid;
	max-width: 520px;
	border-top: 1px solid var(--rapidshop-border);
}

.rapidshop-home-domains p {
	margin: 0;
	padding: 16px 2px;
	border-bottom: 1px solid var(--rapidshop-border);
	color: #263753;
	font-size: clamp(1rem, 1.45vw, 1.2rem);
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.5;
}

.rapidshop-contact-options {
	display: grid;
	margin: 38px 0 56px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.rapidshop-contact-option {
	display: flex;
	min-height: 230px;
	padding: 34px;
	align-items: flex-start;
	flex-direction: column;
	border: 1px solid var(--rapidshop-border);
	border-radius: 14px;
	background: var(--rapidshop-white);
	box-shadow: 0 18px 48px rgb(7 35 78 / 7%);
}

.rapidshop-contact-option h2 {
	margin: 0 0 14px;
	font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.rapidshop-contact-option p {
	margin: 0 0 24px;
	color: var(--rapidshop-muted);
}

.rapidshop-contact-option .rapidshop-text-link {
	margin-top: auto;
}

.rapidshop-form-slot {
	margin-top: 44px;
	border: 1px dashed #9bb9f5;
	border-left: 4px solid var(--rapidshop-blue);
	background: #f5f8ff;
}

.rapidshop-form-slot h2 {
	margin: 0 0 8px;
}

.rapidshop-form-slot p:last-child {
	margin-bottom: 0;
}

.rapidshop-actions {
	display: flex;
	margin-top: 34px;
	flex-wrap: wrap;
	gap: 16px;
}

.rapidshop-button {
	display: inline-flex;
	min-height: 58px;
	padding: 13px 28px;
	align-items: center;
	justify-content: center;
	border: 1px solid transparent;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.3;
	transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.rapidshop-button:hover,
.rapidshop-button:focus-visible {
	transform: translateY(-2px);
}

.rapidshop-button--primary {
	background: var(--rapidshop-blue);
	box-shadow: 0 12px 24px rgb(11 87 227 / 20%);
	color: var(--rapidshop-white) !important;
}

.rapidshop-button--primary:hover,
.rapidshop-button--primary:focus-visible {
	background: var(--rapidshop-blue-dark);
	box-shadow: 0 16px 30px rgb(11 87 227 / 26%);
}

.rapidshop-button--secondary {
	border-color: var(--rapidshop-blue);
	background: var(--rapidshop-white);
	color: var(--rapidshop-blue) !important;
}

.rapidshop-button--secondary:hover,
.rapidshop-button--secondary:focus-visible {
	background: var(--rapidshop-soft);
}

.rapidshop-button--disabled,
.rapidshop-disabled-button {
	cursor: default;
	border-color: #aab4c3;
	background: #aab4c3;
	color: var(--rapidshop-white) !important;
	pointer-events: none;
}

.rapidshop-hero__visual {
	position: relative;
	min-height: 490px;
}

.rapidshop-app-shell {
	position: absolute;
	top: 96px;
	right: 12px;
	display: grid;
	width: min(620px, 90%);
	height: 330px;
	overflow: hidden;
	border: 1px solid var(--rapidshop-border);
	border-radius: var(--rapidshop-radius);
	background: var(--rapidshop-white);
	box-shadow: var(--rapidshop-shadow);
	grid-template-columns: 92px 1fr;
}

.rapidshop-app-shell__rail {
	display: flex;
	padding: 24px 20px;
	flex-direction: column;
	align-items: center;
	gap: 18px;
	background: var(--rapidshop-navy);
}

.rapidshop-app-shell__rail span {
	display: grid;
	width: 42px;
	height: 42px;
	place-items: center;
	border: 1px solid rgb(255 255 255 / 28%);
	border-radius: 50%;
	color: var(--rapidshop-white);
	font-family: Georgia, serif;
	font-size: 1.5rem;
	font-weight: 700;
}

.rapidshop-app-shell__rail i {
	display: block;
	width: 32px;
	height: 4px;
	border-radius: 4px;
	background: rgb(255 255 255 / 30%);
}

.rapidshop-app-shell__canvas {
	padding: 28px;
	background: #fbfdff;
}

.rapidshop-app-shell__bar {
	width: 44%;
	height: 12px;
	margin-bottom: 26px;
	border-radius: 8px;
	background: var(--rapidshop-soft-strong);
}

.rapidshop-app-shell__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px;
}

.rapidshop-app-shell__grid > div {
	display: grid;
	height: 96px;
	padding: 18px;
	place-items: center;
	border: 1px solid var(--rapidshop-border);
	border-radius: 9px;
	background: var(--rapidshop-white);
}

.rapidshop-mini-chart {
	display: flex !important;
	align-items: flex-end !important;
	justify-content: center;
	gap: 8px;
}

.rapidshop-mini-chart i {
	display: block;
	width: 8px;
	border-radius: 4px 4px 0 0;
	background: var(--rapidshop-blue);
}

.rapidshop-mini-chart i:nth-child(1) { height: 22px; }
.rapidshop-mini-chart i:nth-child(2) { height: 38px; }
.rapidshop-mini-chart i:nth-child(3) { height: 30px; }
.rapidshop-mini-chart i:nth-child(4) { height: 54px; }

.rapidshop-mini-lines {
	position: relative;
}

.rapidshop-mini-lines::before,
.rapidshop-mini-lines::after {
	position: absolute;
	left: 18px;
	height: 8px;
	border-radius: 8px;
	background: var(--rapidshop-soft-strong);
	content: "";
}

.rapidshop-mini-lines::before {
	top: 30px;
	width: 70%;
}

.rapidshop-mini-lines::after {
	top: 51px;
	width: 45%;
}

.rapidshop-mini-code {
	color: #8ba4c7;
	font-family: Consolas, monospace;
	font-size: 2rem;
	font-weight: 700;
}

.rapidshop-code-card {
	position: absolute;
	top: 48px;
	right: -42px;
	z-index: 3;
	width: 330px;
	padding: 24px;
	border: 1px solid var(--rapidshop-border);
	border-radius: 10px;
	background: var(--rapidshop-white);
	box-shadow: var(--rapidshop-shadow);
	color: #37527a;
	font-size: 0.79rem;
	line-height: 1.8;
}

.rapidshop-code-card code {
	color: inherit;
}

.rapidshop-r-mark {
	position: absolute;
	right: 42px;
	bottom: 20px;
	z-index: 4;
	display: grid;
	width: 160px;
	height: 112px;
	place-items: center;
	border: 1px solid var(--rapidshop-border);
	border-radius: 10px;
	background: var(--rapidshop-white);
	box-shadow: var(--rapidshop-shadow);
	color: var(--rapidshop-blue);
	font-family: Georgia, serif;
	font-size: 4.4rem;
	font-weight: 700;
}

.rapidshop-connector {
	position: absolute;
	z-index: 1;
	border-color: var(--rapidshop-blue);
	border-style: solid;
	opacity: 0.9;
}

.rapidshop-connector::before,
.rapidshop-connector::after {
	position: absolute;
	width: 10px;
	height: 10px;
	border: 2px solid var(--rapidshop-blue);
	border-radius: 50%;
	background: var(--rapidshop-white);
	content: "";
}

.rapidshop-connector--one {
	top: 150px;
	left: 0;
	width: 76%;
	height: 190px;
	border-width: 2px 0 0 2px;
}

.rapidshop-connector--one::before {
	top: -6px;
	left: -6px;
}

.rapidshop-connector--one::after {
	right: -6px;
	bottom: -6px;
}

.rapidshop-connector--two {
	right: -26px;
	bottom: 104px;
	width: 45%;
	height: 112px;
	border-width: 0 2px 2px 0;
}

.rapidshop-connector--two::before {
	top: -6px;
	right: -6px;
}

.rapidshop-connector--two::after {
	bottom: -6px;
	left: -6px;
}

.rapidshop-section {
	padding: 104px max(32px, calc((100vw - var(--rapidshop-content)) / 2));
}

.rapidshop-section__heading {
	max-width: 840px;
	margin-bottom: 48px;
}

.rapidshop-section__heading--row {
	display: flex;
	max-width: none;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
}

.rapidshop-section__heading--center {
	margin-inline: auto;
	text-align: center;
}

.rapidshop-section__heading h2 {
	margin: 0;
	color: var(--rapidshop-navy);
	font-size: clamp(2.15rem, 3.4vw, 3.35rem);
	font-weight: 900;
	letter-spacing: -0.055em;
	line-height: 1.25;
}

.rapidshop-section__heading p {
	margin: 16px 0 0;
	color: var(--rapidshop-muted);
	font-size: 1.06rem;
}

.rapidshop-text-link {
	display: inline-flex;
	flex: none;
	align-items: center;
	gap: 14px;
	color: var(--rapidshop-blue) !important;
	font-weight: 800;
}

.rapidshop-text-link::after {
	width: 8px;
	height: 8px;
	transform: rotate(-45deg);
	border-right: 2px solid currentcolor;
	border-bottom: 2px solid currentcolor;
	content: "";
}

.rapidshop-featured {
	background: var(--rapidshop-soft);
}

.rapidshop-featured__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.rapidshop-product-card {
	display: grid;
	min-height: 190px;
	padding: 24px;
	align-items: center;
	border: 1px solid var(--rapidshop-border);
	border-radius: 12px;
	background: var(--rapidshop-white);
	grid-template-columns: 96px 1fr 18px;
	gap: 22px;
	transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.rapidshop-product-card:hover,
.rapidshop-product-card:focus-visible {
	transform: translateY(-4px);
	border-color: var(--rapidshop-blue);
	box-shadow: 0 18px 36px rgb(7 26 58 / 8%);
}

.rapidshop-product-card--muted {
	background: rgb(255 255 255 / 72%);
}

.rapidshop-product-card__body {
	display: flex;
	min-width: 0;
	flex-direction: column;
	align-items: flex-start;
	gap: 7px;
}

.rapidshop-product-card__body strong {
	font-size: 1.3rem;
	font-weight: 850;
}

.rapidshop-product-card__body small {
	color: var(--rapidshop-muted);
	font-size: 0.85rem;
	line-height: 1.55;
}

.rapidshop-product-card__body b {
	color: var(--rapidshop-blue);
	font-size: 0.95rem;
}

.rapidshop-arrow {
	display: inline-block;
	width: 11px;
	height: 11px;
	transform: rotate(-45deg);
	border-right: 2px solid var(--rapidshop-blue);
	border-bottom: 2px solid var(--rapidshop-blue);
}

.rapidshop-catalog {
	background: var(--rapidshop-white);
}

.rapidshop-catalog__feature {
	position: relative;
	display: grid;
	overflow: hidden;
	border: 1px solid var(--rapidshop-border);
	border-radius: var(--rapidshop-radius);
	background: var(--rapidshop-white);
	grid-template-columns: 1fr 1fr;
}

.rapidshop-catalog__free,
.rapidshop-catalog__pro {
	display: grid;
	min-height: 360px;
	padding: 40px;
	align-content: center;
	gap: 26px;
}

.rapidshop-catalog__free {
	grid-template-columns: 112px 1fr;
}

.rapidshop-catalog__pro {
	padding-left: 66px;
	border-left: 1px solid var(--rapidshop-blue);
	grid-template-columns: 96px 1fr;
}

.rapidshop-catalog h3,
.rapidshop-coming-row h3 {
	margin: 0 0 10px;
	font-size: 1.65rem;
	font-weight: 850;
	letter-spacing: -0.035em;
}

.rapidshop-catalog p,
.rapidshop-coming-row p {
	margin: 0;
	color: var(--rapidshop-muted);
}

.rapidshop-catalog__free .rapidshop-button {
	margin-top: 24px;
}

.rapidshop-catalog__bridge {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: grid;
	width: 58px;
	height: 58px;
	transform: translate(-50%, -50%);
	place-items: center;
	border: 2px solid var(--rapidshop-blue);
	border-radius: 50%;
	background: var(--rapidshop-white);
}

.rapidshop-catalog__bridge::after {
	width: 10px;
	height: 10px;
	transform: rotate(-45deg);
	border-right: 2px solid var(--rapidshop-blue);
	border-bottom: 2px solid var(--rapidshop-blue);
	content: "";
}

.rapidshop-plan-lines {
	display: grid;
	grid-column: 1 / -1;
	gap: 10px;
}

.rapidshop-plan-lines > div {
	display: grid;
	padding: 12px 16px;
	align-items: baseline;
	border: 1px solid var(--rapidshop-border);
	border-radius: 7px;
	grid-template-columns: 70px auto 1fr;
	gap: 12px;
}

.rapidshop-plan-lines strong {
	color: var(--rapidshop-navy);
	font-size: 1.35rem;
}

.rapidshop-plan-lines small {
	color: var(--rapidshop-blue);
	font-weight: 700;
}

.rapidshop-catalog__pro > .rapidshop-button {
	grid-column: 1 / -1;
}

.rapidshop-coming-row {
	display: grid;
	margin-top: 20px;
	padding: 28px 40px;
	align-items: center;
	border: 1px solid var(--rapidshop-border);
	border-radius: 12px;
	background: var(--rapidshop-soft);
	grid-template-columns: 96px 1fr auto;
	gap: 28px;
}

.rapidshop-coming-row > span:last-child {
	padding: 8px 16px;
	border: 1px solid var(--rapidshop-border-strong);
	border-radius: 7px;
	color: var(--rapidshop-muted);
	font-weight: 800;
}

.rapidshop-tools {
	position: relative;
	background: var(--rapidshop-white);
}

.rapidshop-tools__line {
	position: absolute;
	top: 96px;
	right: max(32px, calc((100vw - var(--rapidshop-content)) / 2));
	width: 42%;
	height: 120px;
	border-top: 2px solid var(--rapidshop-blue);
	border-right: 2px solid var(--rapidshop-blue);
}

.rapidshop-tools__line::before,
.rapidshop-tools__line::after {
	position: absolute;
	width: 10px;
	height: 10px;
	border: 2px solid var(--rapidshop-blue);
	border-radius: 50%;
	background: var(--rapidshop-white);
	content: "";
}

.rapidshop-tools__line::before {
	top: -6px;
	left: -6px;
}

.rapidshop-tools__line::after {
	right: -6px;
	bottom: -6px;
}

.rapidshop-tool-preview {
	display: grid;
	width: min(100%, 660px);
	min-height: 180px;
	padding: 34px;
	align-items: center;
	border: 1px solid var(--rapidshop-blue);
	border-radius: 12px;
	background: var(--rapidshop-white);
	grid-template-columns: 112px 1fr 20px;
	gap: 28px;
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.rapidshop-tool-preview:hover,
.rapidshop-tool-preview:focus-visible {
	transform: translateY(-4px);
	box-shadow: var(--rapidshop-shadow);
}

.rapidshop-tool-preview__icon {
	display: flex;
	width: 112px;
	height: 112px;
	padding: 22px;
	align-items: flex-end;
	justify-content: space-between;
	border-radius: 10px;
	background: var(--rapidshop-soft);
}

.rapidshop-tool-preview__icon i {
	display: block;
	width: 18px;
	border: 2px solid var(--rapidshop-blue);
	border-radius: 3px 3px 0 0;
}

.rapidshop-tool-preview__icon i:nth-child(1) { height: 46px; }
.rapidshop-tool-preview__icon i:nth-child(2) { height: 66px; }
.rapidshop-tool-preview__icon i:nth-child(3) { height: 54px; }

.rapidshop-tool-preview strong,
.rapidshop-tool-preview small {
	display: block;
}

.rapidshop-tool-preview strong {
	font-size: 1.45rem;
}

.rapidshop-tool-preview small {
	margin-top: 8px;
	color: var(--rapidshop-muted);
	font-size: 0.95rem;
}

.rapidshop-faq {
	border-top: 1px solid var(--rapidshop-border);
	background: var(--rapidshop-white);
}

.rapidshop-faq__list {
	border-top: 1px solid var(--rapidshop-border);
}

.rapidshop-faq details,
.rapidshop-document details {
	border-bottom: 1px solid var(--rapidshop-border);
}

.rapidshop-faq summary,
.rapidshop-document summary {
	position: relative;
	padding: 27px 56px 27px 0;
	cursor: pointer;
	color: var(--rapidshop-navy);
	font-size: 1.05rem;
	font-weight: 800;
	list-style: none;
}

.rapidshop-faq summary::-webkit-details-marker,
.rapidshop-document summary::-webkit-details-marker {
	display: none;
}

.rapidshop-faq summary::before,
.rapidshop-faq summary::after,
.rapidshop-document summary::before,
.rapidshop-document summary::after {
	position: absolute;
	top: 50%;
	right: 10px;
	width: 16px;
	height: 2px;
	background: var(--rapidshop-blue);
	content: "";
	transition: transform 180ms ease;
}

.rapidshop-faq summary::after,
.rapidshop-document summary::after {
	transform: rotate(90deg);
}

.rapidshop-faq details[open] summary::after,
.rapidshop-document details[open] summary::after {
	transform: rotate(0);
}

.rapidshop-faq details p,
.rapidshop-document details p {
	margin: -8px 0 26px;
	padding-right: 56px;
	color: var(--rapidshop-muted);
}

.rapidshop-prelaunch {
	display: flex;
	padding: 72px max(32px, calc((100vw - var(--rapidshop-content)) / 2));
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	background: var(--rapidshop-soft);
}

.rapidshop-prelaunch h2 {
	margin: 0;
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 900;
	letter-spacing: -0.05em;
}

.rapidshop-prelaunch p {
	margin: 10px 0 0;
	color: var(--rapidshop-muted);
}

.rapidshop-footer {
	padding: 58px 0 28px;
	background: var(--rapidshop-navy);
	color: var(--rapidshop-white);
}

.rapidshop-brand--footer {
	color: var(--rapidshop-white) !important;
}

.rapidshop-footer__top,
.rapidshop-footer__bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
}

.rapidshop-footer__top {
	padding-bottom: 38px;
	border-bottom: 1px solid rgb(255 255 255 / 18%);
}

.rapidshop-footer__bottom {
	padding-top: 26px;
}

.rapidshop-footer .rapidshop-nav-list {
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 16px 30px;
}

.rapidshop-footer .rapidshop-nav-list a {
	color: var(--rapidshop-white) !important;
	font-size: 0.82rem;
}

.rapidshop-copyright {
	margin: 0;
	color: rgb(255 255 255 / 58%);
	font-size: 0.78rem;
	white-space: nowrap;
}

.rapidshop-main--content {
	padding: 86px 32px 120px;
}

.rapidshop-document {
	width: min(100%, 980px);
	margin-inline: auto;
}

.rapidshop-document__header {
	margin-bottom: 48px;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--rapidshop-border);
}

.rapidshop-document__header h1 {
	margin: 0;
	font-size: clamp(2.4rem, 5vw, 4.4rem);
	font-weight: 900;
	letter-spacing: -0.055em;
	line-height: 1.2;
}

.rapidshop-document__content {
	color: #263753;
}

.rapidshop-document__content h2 {
	margin: 60px 0 18px;
	color: var(--rapidshop-navy);
	font-size: clamp(1.55rem, 3vw, 2.25rem);
	font-weight: 850;
	letter-spacing: -0.035em;
}

.rapidshop-document__content p,
.rapidshop-document__content li {
	font-size: 1rem;
	line-height: 1.9;
}

.rapidshop-lead {
	margin: 0 0 48px;
	color: var(--rapidshop-muted);
	font-size: 1.18rem !important;
}

.rapidshop-notice {
	margin: 44px 0;
	padding: 28px 32px;
	border-left: 4px solid var(--rapidshop-blue);
	background: var(--rapidshop-soft);
}

.rapidshop-notice h2 {
	margin-top: 0;
}

.rapidshop-notice--important {
	border: 1px solid #b9cffd;
	border-left: 4px solid var(--rapidshop-blue);
	background: #f5f8ff;
}

.rapidshop-notice--important p {
	margin: 0;
}

.rapidshop-board-proof {
	display: block;
	margin: 24px 0 28px;
	padding: 38px 40px;
	border: 1px solid var(--rapidshop-border);
	border-radius: 14px;
	background: var(--rapidshop-white);
	box-shadow: 0 18px 48px rgb(7 35 78 / 7%);
}

.rapidshop-board-proof__content h3 {
	margin: 0 0 12px;
	color: var(--rapidshop-navy);
	font-size: clamp(1.35rem, 2.5vw, 1.9rem);
	font-weight: 850;
	letter-spacing: -0.03em;
}

.rapidshop-board-proof__content p {
	margin: 0;
	color: var(--rapidshop-muted);
}

.rapidshop-board-proof__content ul {
	display: grid;
	margin: 22px 0 26px;
	padding-left: 1.25em;
	gap: 4px;
}

.rapidshop-board-proof__link {
	width: fit-content;
}

.rapidshop-catalog-list {
	display: grid;
	gap: 16px;
}

.rapidshop-catalog-row {
	display: grid;
	padding: 28px 32px;
	align-items: center;
	border: 1px solid var(--rapidshop-border);
	border-radius: 12px;
	grid-template-columns: 96px 1fr auto;
	gap: 28px;
}

.rapidshop-catalog-row--muted {
	background: var(--rapidshop-soft);
}

.rapidshop-catalog-row--text {
	grid-template-columns: minmax(0, 1fr) auto;
}

.rapidshop-catalog-row h2 {
	margin: 0 0 4px;
}

.rapidshop-catalog-row p {
	margin: 0;
	color: var(--rapidshop-muted);
}

.rapidshop-price-panel {
	width: min(100%, 680px);
	margin: 38px 0 56px;
	padding: 30px;
	border: 1px solid var(--rapidshop-border);
	border-radius: 14px;
	background: var(--rapidshop-soft);
}

.rapidshop-price-row {
	display: grid;
	margin-bottom: 10px;
	padding: 15px 18px;
	align-items: baseline;
	border: 1px solid var(--rapidshop-border);
	border-radius: 8px;
	background: var(--rapidshop-white);
	grid-template-columns: 1fr auto auto;
	gap: 12px;
}

.rapidshop-price-row--recommended {
	border-color: var(--rapidshop-blue);
}

.rapidshop-price-row strong {
	color: var(--rapidshop-navy);
	font-size: 1.4rem;
}

.rapidshop-price-row small {
	color: var(--rapidshop-blue);
	font-weight: 800;
}

.rapidshop-price-panel > p {
	color: var(--rapidshop-muted);
	text-align: center;
}

.rapidshop-disabled-button {
	display: flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-weight: 800;
}

.rapidshop-legal-table {
	overflow-x: auto;
}

.rapidshop-legal-table table {
	width: 100%;
	border-collapse: collapse;
}

.rapidshop-legal-table th,
.rapidshop-legal-table td {
	padding: 16px;
	border: 1px solid var(--rapidshop-border);
	text-align: left;
	vertical-align: top;
}

.rapidshop-legal-table th {
	width: 29%;
	background: var(--rapidshop-soft);
}

@media (max-width: 1100px) {
	.rapidshop-hero__inner {
		grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
		gap: 30px;
	}

	.rapidshop-code-card {
		right: 0;
		width: 290px;
	}

	.rapidshop-featured__list {
		grid-template-columns: 1fr;
	}

	.rapidshop-product-card {
		min-height: 140px;
	}

	.rapidshop-catalog__feature {
		grid-template-columns: 1fr;
	}

	.rapidshop-catalog__pro {
		border-top: 1px solid var(--rapidshop-blue);
		border-left: 0;
	}

	.rapidshop-catalog__bridge {
		top: 50%;
		left: 50%;
	}
}

@media (max-width: 820px) {
	.admin-bar .rapidshop-header {
		top: 46px;
	}

	.rapidshop-header__inner {
		width: min(calc(100% - 32px), var(--rapidshop-content));
		min-height: 74px;
		flex-wrap: wrap;
		gap: 6px 24px;
	}

	.rapidshop-brand {
		font-size: 1.65rem;
	}

	.rapidshop-nav {
		width: 100%;
		overflow-x: auto;
		order: 2;
	}

	.rapidshop-header__inner {
		padding: 13px 0 8px;
	}

	.rapidshop-nav-list {
		width: max-content;
		gap: 22px;
	}

	.rapidshop-nav-list a {
		font-size: 0.82rem;
	}

	.rapidshop-hero__inner {
		width: min(calc(100% - 40px), var(--rapidshop-content));
		padding: 54px 0 70px;
		grid-template-columns: 1fr;
	}

	.rapidshop-hero__copy {
		padding: 0;
	}

	.rapidshop-hero h1 {
		font-size: clamp(2.65rem, 11vw, 4.2rem);
	}

	.rapidshop-hero__visual {
		min-height: 400px;
	}

	.rapidshop-app-shell {
		top: 58px;
		right: 0;
		width: 92%;
		height: 290px;
	}

	.rapidshop-code-card {
		top: 8px;
		width: min(260px, 68%);
		padding: 16px;
		font-size: 0.66rem;
	}

	.rapidshop-r-mark {
		right: 12px;
		bottom: 0;
		width: 118px;
		height: 88px;
		font-size: 3.3rem;
	}

	.rapidshop-section {
		padding: 76px 24px;
	}

	.rapidshop-section__heading--row,
	.rapidshop-prelaunch,
	.rapidshop-footer__top,
	.rapidshop-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.rapidshop-product-card {
		grid-template-columns: 78px 1fr 14px;
	}

	.rapidshop-catalog__free,
	.rapidshop-catalog__pro {
		padding: 34px 26px;
		grid-template-columns: 78px 1fr;
	}

	.rapidshop-catalog__pro {
		padding-left: 26px;
	}

	.rapidshop-coming-row {
		padding: 24px;
		grid-template-columns: 78px 1fr;
	}

	.rapidshop-coming-row > span:last-child {
		grid-column: 2;
		justify-self: start;
	}

	.rapidshop-tools__line {
		display: none;
	}

	.rapidshop-tool-preview {
		grid-template-columns: 90px 1fr 16px;
	}

	.rapidshop-tool-preview__icon {
		width: 90px;
		height: 90px;
	}

	.rapidshop-prelaunch {
		padding: 64px 24px;
	}

	.rapidshop-footer__inner {
		width: min(calc(100% - 48px), var(--rapidshop-content));
	}

	.rapidshop-footer .rapidshop-nav-list {
		width: auto;
		justify-content: flex-start;
	}

	.rapidshop-main--content {
		padding: 62px 24px 90px;
	}

	.rapidshop-catalog-row {
		grid-template-columns: 78px 1fr;
	}

	.rapidshop-catalog-row .rapidshop-text-link {
		grid-column: 2;
	}

	.rapidshop-catalog-row--text {
		grid-template-columns: minmax(0, 1fr) auto;
	}

	.rapidshop-board-proof {
		padding: 30px;
	}

	.rapidshop-contact-options {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 520px) {
	.rapidshop-hero__inner {
		width: min(calc(100% - 32px), var(--rapidshop-content));
		padding-top: 44px;
	}

	.rapidshop-hero h1 {
		margin-bottom: 22px;
		font-size: 2.65rem;
	}

	.rapidshop-hero--minimal h1 {
		margin-bottom: 34px;
		font-size: clamp(2.75rem, 14.5vw, 4.6rem);
	}

	.rapidshop-home-domains p {
		padding-block: 14px;
		font-size: 0.96rem;
	}

	.rapidshop-hero__copy > p br {
		display: none;
	}

	.rapidshop-actions {
		display: grid;
	}

	.rapidshop-button {
		width: 100%;
	}

	.rapidshop-hero__visual {
		min-height: 330px;
	}

	.rapidshop-app-shell {
		top: 50px;
		width: 100%;
		height: 250px;
		grid-template-columns: 58px 1fr;
	}

	.rapidshop-app-shell__rail {
		padding: 18px 12px;
	}

	.rapidshop-app-shell__rail span {
		width: 34px;
		height: 34px;
		font-size: 1.15rem;
	}

	.rapidshop-app-shell__rail i {
		width: 24px;
		height: 3px;
	}

	.rapidshop-app-shell__canvas {
		padding: 20px 14px;
	}

	.rapidshop-app-shell__grid {
		gap: 8px;
	}

	.rapidshop-app-shell__grid > div {
		height: 72px;
		padding: 10px;
	}

	.rapidshop-code-card {
		width: 210px;
		font-size: 0.56rem;
	}

	.rapidshop-r-mark {
		width: 90px;
		height: 68px;
		font-size: 2.5rem;
	}

	.rapidshop-section__heading h2 {
		font-size: 2.05rem;
	}

	.rapidshop-product-card {
		padding: 18px;
		grid-template-columns: 66px 1fr 12px;
		gap: 15px;
	}

	.rapidshop-product-card__body strong {
		font-size: 1.1rem;
	}

	.rapidshop-product-card__body b {
		font-size: 0.8rem;
	}

	.rapidshop-catalog__free,
	.rapidshop-catalog__pro {
		display: block;
		min-height: 0;
	}

	.rapidshop-plan-lines {
		margin-top: 24px;
	}

	.rapidshop-plan-lines > div {
		grid-template-columns: 54px 1fr;
	}

	.rapidshop-plan-lines small {
		grid-column: 2;
	}

	.rapidshop-catalog__pro > .rapidshop-button {
		margin-top: 20px;
	}

	.rapidshop-catalog__bridge {
		display: none;
	}

	.rapidshop-coming-row,
	.rapidshop-catalog-row {
		grid-template-columns: 66px 1fr;
		gap: 18px;
	}

	.rapidshop-catalog-row--text {
		grid-template-columns: 1fr;
	}

	.rapidshop-catalog-row--text .rapidshop-text-link {
		grid-column: 1;
		justify-self: start;
	}

	.rapidshop-tool-preview {
		padding: 24px;
		grid-template-columns: 72px 1fr 12px;
		gap: 18px;
	}

	.rapidshop-tool-preview__icon {
		width: 72px;
		height: 72px;
		padding: 15px;
	}

	.rapidshop-faq summary {
		padding-right: 42px;
		font-size: 0.96rem;
	}

	.rapidshop-document__header h1 {
		font-size: 2.5rem;
	}

	.rapidshop-document__content h2 {
		font-size: 1.35rem;
		line-height: 1.45;
		word-break: keep-all;
	}

	.rapidshop-price-row {
		grid-template-columns: 1fr auto;
	}

	.rapidshop-price-row small {
		grid-column: 1 / -1;
	}

	.rapidshop-board-proof {
		padding: 26px 22px;
	}

	.rapidshop-board-proof__link {
		width: 100%;
		text-align: center;
	}

	.rapidshop-notice--important {
		padding: 22px;
	}

	.rapidshop-legal-table th,
	.rapidshop-legal-table td {
		min-width: 160px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.rapidshop-site *,
	.rapidshop-site *::before,
	.rapidshop-site *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
