:root {
	--bg1:#fbf7f0;
	--bg2:#f3efe6;
	--card:#ffffff;
	--text:#102027;
	--muted:#5b6b73;
	--stroke:#e9e3d9;
	--shadow:0 10px 30px rgba(16,32,39,.08);
	--radius:26px;
}
* {
	box-sizing:border-box
}
html, body { 
	width:100%; 
}
@font-face{
	font-family: "Roboto";
	src: url("/fonts/roboto-regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face{
	font-family: "Roboto";
	src: url("/fonts/roboto-medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face{
	font-family: "Roboto";
	src: url("/fonts/roboto-bold.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
body {
	margin:0;
	font-family: Roboto, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
	color:var(--text);
	background: radial-gradient(1200px 800px at 50% -100px, #fff 0%, var(--bg1) 45%, var(--bg2) 100%);
	min-height:100vh;
	display:flex;
	justify-content:center;
	overflow-x:hidden;
}
.wrap {
	width:min(920px, 100%);
	padding: 28px 12px 44px;
	margin: 0 auto;
	overflow-x:hidden;
}
.title {
	text-align:center;
	margin: 18px 0 10px;
	font-size: clamp(44px, 6vw, 84px);
	letter-spacing:-0.02em;
	font-weight:900;
}
.subtitle {
	text-align:center;
	margin: 0 auto 32px;
	max-width: 640px;
	font-size: clamp(17px, 2.2vw, 30px);
	color: #20323a;
	line-height:1.5;
	letter-spacing:-0.01em;
}
.grid {
	display:grid;
	gap:24px;
	grid-template-columns: 1fr;
}
.card {
	background:var(--card);
	border:1px solid var(--stroke);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	overflow:hidden;
}
.pad { 
	padding: 18px 18px; 
}
.divider { 
	height:1px; 
	background: var(--stroke); 
	margin: 14px 0; 
}
.row {
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px;
	min-width:0;
}
.stack { 
	display:flex; 
	flex-direction:column; 
	gap:10px; 
	min-width:0; 
}
.label {
	font-weight:900;
	font-size: 24px;
	letter-spacing:-0.02em;
	display:flex;
	align-items:center;
	gap:10px;
}
.muted { 
	color: var(--muted); 
}
.small { 
	font-size: 14px; 
	margin:0px 4px;
}
.btn {
	appearance:none;
	border:1px solid var(--stroke);
	background:#fff;
	padding: 10px 12px;
	border-radius: 14px;
	font-weight:600; 
	cursor:pointer;
	transition: transform .05s ease, box-shadow .2s ease;
	flex:0 0 auto;
	white-space:nowrap;
	display:inline-flex;
	align-items:center;
	gap:8px;
}
.btn:hover { 
	box-shadow: 0 8px 18px rgba(16,32,39,.08); 
}
.btn:active { 
	transform: translateY(1px); 
}
.btn.primary {
	background:#102027;
	color:#fff;
	border-color:#102027;
}
.btn.primary .ico path,
.btn.primary .ico circle,
.btn.primary .ico line,
.btn.primary .ico polyline {
	stroke:#fff !important;
}
.input {
	width:100%;
	padding: 12px 14px;
	border-radius: 14px;
	border:1px solid var(--stroke);
	background:#fff;
	font-size: 16px;
	outline:none;
	min-width:0;
}
.input:focus { 
	border-color:#cfc7bb; 
}
.roomLayout{
	display:grid;
	grid-template-columns: 1fr;
	gap: 12px;
	align-items:start;
	margin-top: 12px;
}
.rangeRow { 
	display:flex; 
	align-items:center; 
	justify-content:space-between; 
	gap:12px; 
}
input[type="range"] { 
	width:100%; 
}
.tempLabel {
	display:flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	width:100%;
	padding:10px 14px;
	border-radius:16px;
	background:#2674CA;
	border:1px solid #a3d4fd;
	font-weight:600;
	font-size:15px;
	text-align:center;
	color:#ffffff;
}
.tempLabel .ico path,
.tempLabel .ico circle,
.tempLabel .ico line,
.tempLabel .ico polyline {
	stroke:#fff !important;
}
.resultInner {
	display:grid;
	grid-template-columns: 1fr;
	gap: 18px;
	padding: 22px;
}
@media (min-width: 860px) {
	.resultInner { 
		grid-template-columns: 1.3fr .7fr; 
		align-items:center; 
	}
}
.h2 {
	font-size: clamp(28px, 4.5vw, 52px);
	letter-spacing:-0.03em;
	margin:0 0 10px;
	line-height:1.05;
	font-weight:900;
}
.advice {
	font-size: clamp(34px, 5vw, 64px);
	font-weight: 900;
	letter-spacing:-0.04em;
	margin: 0 0 6px;
}
.note {
	font-size: 20px;
	letter-spacing:-0.01em;
	margin: 12px 0 0;
	color:#20323a;
	line-height:1.25;
}
.affiliateLine {
	margin-top: 20px;
	margin-bottom:18px;
	padding-top: 20px;
	border-top: 1px solid var(--stroke);
	line-height:1.5;
	color: #20323a;
	font-size: 16px;
}
a {
	font-size: 16px;
	font-weight: 900;
	color: var(--text);
	text-decoration:none;
	border-bottom: 1px solid rgba(16,32,39,.22);
}
.affiliateLine a {
	font-size: 16px;
	font-weight: 900;
	color: var(--text);
	text-decoration:none;
	border-bottom: 1px solid rgba(16,32,39,.22);
}
.affiliateLine a:hover { 
	border-bottom-color: rgba(16,32,39,.45); 
}
.affiliateDisclosure {
	margin-top:8px;
	font-size: 13px;
	color: var(--muted);
}
.footer {
	display: flex;
	color: var(--muted);
	font-size: 13px;
	line-height:1.35;
	align-items: center;
	justify-content: center;
}
.contentBlockTransparent {
	margin-top: 18px;
	padding: 8px 2px 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	border-radius: 0;
}
.contentBlockTransparent h2 {
	margin: 18px 0 8px;
	font-size: 18px;
	letter-spacing:-0.01em;
	display:flex;
	align-items:center;
	gap:10px;
}
.contentBlockTransparent p {
	margin:0 0 24px;
	color:#20323a;
	line-height:1.45;
}
.faqItem {
	border:1px solid var(--stroke);
	border-radius: 18px;
	background: rgba(255,255,255,.7);
	backdrop-filter: blur(4px);
	overflow:hidden;
	margin-top: 10px;
}
.faqQ {
	width:100%;
	text-align:left;
	padding: 14px 14px;
	background: transparent;
	border:0;
	cursor:pointer;
	font-weight:600;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px;
	font-size: 16px;
}
.faqA {
	padding: 0 14px 14px;
	color:#20323a;
	line-height:1.45;
	display:none;
}
.faqItem.open .faqA { 
	display:block; 
}
.chev { 
	transition: transform .15s ease; 
}
.faqItem.open .chev { 
	transform: rotate(180deg); 
}
.ico {
	width:22px;height:22px;
	display:inline-block;
	vertical-align:middle;
	flex:0 0 auto;
}
.ico path, .ico circle, .ico line, .ico polyline { 
	stroke: #20323a; 
}
.inlineLink {
	font-weight:900;
	color:#102027;
	text-decoration:none;
	border-bottom:1px solid rgba(16,32,39,.22);
}
.inlineLink:hover { 
	border-bottom-color: rgba(16,32,39,.45); 
}
.togImageWrap {
	width:100%;
	display:flex;
	justify-content:center;
	align-items:center;
}
.togImageWrap img {
	max-width:100%;
	width: 300px;
	height:auto;
	border-radius:22px;
	box-shadow: 0 14px 28px rgba(16,32,39,.12);
	background:#fff;
}
.sr-only {
	position:absolute;
	width:1px;
	height:1px;
	padding:0;
	margin:-1px;
	overflow:hidden;
	clip:rect(0,0,0,0);
	white-space:nowrap;
	border:0;
}
.brand {
	display:flex;
	justify-content:center;
	margin: 12px 0 12px;
}
.brand img {
	display:block;
	width: min(256px, 86vw);
	height: auto;
}
.bottomfooter {
  margin: 32px 0 12px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  line-height: 1.35;
}

.bottomfooter a {
  color: inherit;
  font-size: 13px;
  text-decoration: underline;
}
