/* CSS変数（テーマカラー設定） */
:root {
	--bg-dark: #0a0f1c;
	--text-main: #e2e8f0;
	--text-muted: #9ca3af;
	--primary: #00f0ff;
	--primary-glow: rgba(0, 240, 255, 0.5);
	--secondary: #0070f3;
	--accent: #8b5cf6;
	--glass-bg: rgba(17, 24, 39, 0.6);
	--glass-border: rgba(0, 240, 255, 0.1);
	--grid-pattern: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCI+CjxwYXRoIGQ9Ik0wIDBMMDAgNDBaIiBmaWxsPSJub25lIi8+CjxwYXRoIGQ9Ik00MCA0MEwwIDQweiIgZmlsbD0ibm9uZSIvPgo8cGF0aCBkPSJNMCAwbDQwIDQweiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMDIpIiBzdHJva2Utd2lkdGg9IjEiLz4KPC9zdmc+');
}

/* リセット & ベーススタイル */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	width: 100%;
	overflow-x: hidden;
}

body {
	background-color: var(--bg-dark);
	color: var(--text-main);
	font-family: 'Inter', 'Noto Sans JP', sans-serif;
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
	position: relative;
	line-height: 1.6;
	scroll-behavior: smooth;
}

@supports (overflow-x: clip) {
	html,
	body {
		overflow-x: clip;
	}
}

img,
video {
	max-width: 100%;
	height: auto;
}

::selection {
	background: var(--primary);
	color: var(--bg-dark);
}

a {
	text-decoration: none;
	color: inherit;
}

/* レイアウトユーティリティ */
.container {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

/* 背景エフェクト */
.bg-grid {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background-image: var(--grid-pattern);
	z-index: -2;
	pointer-events: none;
}

.blob {
	position: fixed;
	width: 400px;
	height: 400px;
	filter: blur(80px);
	z-index: -1;
	opacity: 0.4;
	animation: moveBlob 10s infinite alternate;
	border-radius: 50%;
	pointer-events: none;
}
.blob.primary { background-color: var(--primary); top: -10%; left: -10%; }
.blob.secondary { background-color: var(--secondary); bottom: 20%; right: -10%; animation-delay: -5s; }

@keyframes moveBlob {
	from { transform: translate(0, 0) scale(1); }
	to { transform: translate(30px, -30px) scale(1.1); }
}

/* ガラスパネル (グラスモーフィズム) */
.glass-panel {
	background: var(--glass-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid var(--glass-border);
	border-radius: 16px;
}

/* ナビゲーション */
nav {
	position: fixed;
	width: 100%;
	max-width: 100vw;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid #1f2937;
	border-radius: 0; /* Navは角丸なし */
}

.nav-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	height: 80px;
	min-width: 0;
}

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

.brand img {
	height: 48px;
	width: 48px;
	object-fit: contain;
	filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.4));
}

.brand-text {
	font-size: 1.5rem;
	font-weight: 800;
	background: linear-gradient(to right, var(--primary), var(--secondary));
	-webkit-background-clip: text;
	color: transparent;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.nav-links {
	display: flex;
	gap: 32px;
	align-items: center;
}

.nav-links a.nav-item {
	font-size: 0.875rem;
	font-weight: 500;
	transition: color 0.3s;
}

.nav-links a.nav-item:hover {
	color: var(--primary);
}

/* 言語選択ドロップダウン */
.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-btn {
	background: none;
	border: none;
	color: var(--text-main);
	font-size: 0.875rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 0;
	transition: color 0.3s;
}

.dropdown-btn:hover {
	color: #fff;
}

.dropdown-menu {
	position: absolute;
	right: 0;
	top: 100%;
	width: 200px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
	padding: 8px 0;
	z-index: 50;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.is-open .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(5px);
}

.dropdown-item {
	display: block;
	padding: 10px 16px;
	font-size: 0.875rem;
	color: var(--text-main);
	transition: all 0.2s;
}

.dropdown-item:hover {
	background-color: #374151;
	color: var(--primary);
}

/* ボタン */
.btn-primary {
	background: linear-gradient(to right, var(--secondary), var(--primary));
	color: var(--bg-dark);
	font-weight: bold;
	padding: 10px 24px;
	border-radius: 9999px;
	box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
	transition: all 0.3s;
	display: inline-block;
	max-width: 100%;
	white-space: nowrap;
}

.btn-primary:hover {
	box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
	transform: scale(1.05);
}

.btn-primary.is-disabled,
.btn-large.is-disabled {
	background: #334155;
	color: #94a3b8;
	box-shadow: none;
	cursor: not-allowed;
}

.btn-primary.is-disabled:hover,
.btn-large.is-disabled:hover {
	transform: none;
	box-shadow: none;
}

/* ヒーローセクション */
.hero {
	padding: 160px 0 100px;
	text-align: center;
	position: relative;
}

.hero h1 {
	font-size: clamp(1.45rem, 5.4vw, 3.9rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 30px;
	max-width: 100%;
	overflow-wrap: anywhere;
}

.hero h1 span:first-child {
	font-size: clamp(0.88rem, 2.4vw, 1.25rem) !important;
}

.hero-title-main {
	display: block;
	max-width: 100%;
	overflow-wrap: anywhere;
}

.hero-title-main span {
	display: inline;
}

.hero-gradient-text {
	display: block;
	background: linear-gradient(to right, var(--primary), #60a5fa, var(--primary));
	-webkit-background-clip: text;
	color: transparent;
	text-shadow: 0 0 20px var(--primary-glow);
}

.hero p {
	font-size: 1.25rem;
	color: var(--text-muted);
	max-width: 800px;
	margin: 0 auto 40px;
}

.hero-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.btn-os {
	display: flex;
	max-width: 100%;
	align-items: center;
	gap: 8px;
	font-weight: bold;
	padding: 12px 32px;
	border-radius: 8px;
	transition: all 0.3s;
}

.btn-windows {
	background: #fff;
	color: var(--bg-dark);
	box-shadow: 0 10px 15px -3px rgba(0,0,0,0.3);
}
.btn-windows:hover { background: #e2e8f0; }

.btn-glass {
	color: #fff;
	border: 1px solid #374151;
}
.btn-glass:hover {
	background: #1f2937;
	border-color: var(--primary);
}

.btn-disabled {
	color: #94a3b8;
	border: 1px solid rgba(148, 163, 184, 0.22);
	cursor: not-allowed;
	opacity: 0.58;
}

.btn-disabled:hover {
	transform: none;
}


/* --------------------------------------
	動画 section
----------------------------------------- */
div.mov-box {
	margin: 60px auto 0;
	max-width: 1000px;
	overflow: hidden;
}

div.mov-box video {
	width:100%;
	margin:0;
	padding:0;
}


/* エディタモックアップ */
.code-window {
	margin: 60px auto 0;
	max-width: 1000px;
	background: #1e1e1e;
	border: 1px solid #374151;
	border-radius: 12px;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 240, 255, 0.15);
	overflow: hidden;
	transform: perspective(1000px) rotateX(2deg);
}

.code-header {
	background: #2d2d2d;
	padding: 12px 16px;
	display: flex;
	align-items: center;
	gap: 8px;
	border-bottom: 1px solid #374151;
}

.mac-btn { width: 12px; height: 12px; border-radius: 50%; }
.mac-close { background: #ef4444; }
.mac-min { background: #f59e0b; }
.mac-max { background: #10b981; }

.code-title {
	margin: 0 auto;
	font-size: 0.75rem;
	color: var(--text-muted);
	font-family: 'Fira Code', monospace;
	display: flex;
	align-items: center;
	gap: 8px;
}

.code-title img { width: 16px; height: 16px; }

.code-content {
	padding: 24px;
	font-family: 'Fira Code', monospace;
	font-size: 1rem;
	color: #d4d4d4;
	display: flex;
	text-align: left;
	overflow-x: auto;
}

.line-numbers {
	color: #6b7280;
	padding-right: 16px;
	margin-right: 16px;
	border-right: 1px solid #374151;
	text-align: right;
	user-select: none;
}

.code-text .keyword { color: #c678dd; }
.code-text .function { color: #61afef; }
.code-text .comment { color: #5c6370; }
.code-text .type { color: #e5c07b; }

.caret {
	display: inline-block;
	width: 8px;
	height: 20px;
	background: var(--primary);
	vertical-align: middle;
	margin-left: 4px;
	animation: blink 1s step-end infinite;
}

@keyframes blink { 50% { opacity: 0; } }

/* 特徴セクション */
.features {
	padding: 100px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 60px;
}

.section-title h2 {
	font-size: 2.25rem;
	font-weight: 800;
	line-height: 1.25;
}

.section-title p {
	margin-top: 16px;
	font-size: 1.125rem;
	color: var(--text-muted);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 32px;
}

.feature-card {
	padding: 32px;
	transition: all 0.3s;
}

.feature-card:hover {
	box-shadow: 0 0 30px rgba(0, 112, 243, 0.2);
	border-color: rgba(0, 240, 255, 0.4);
	transform: translateY(-5px);
}

.feature-icon-wrapper {
	width: 48px;
	height: 48px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	font-size: 1.25rem;
}

/* アイコンのカラーバリエーション */
.icon-blue { background: rgba(0,112,243,0.2); color: var(--primary); border: 1px solid rgba(0,112,243,0.3); }
.icon-purple { background: rgba(139,92,246,0.2); color: var(--accent); border: 1px solid rgba(139,92,246,0.3); }
.icon-green { background: rgba(16,185,129,0.2); color: #34d399; border: 1px solid rgba(16,185,129,0.3); }
.icon-orange { background: rgba(245,158,11,0.2); color: #fbbf24; border: 1px solid rgba(245,158,11,0.3); }
.icon-cyan { background: rgba(6,182,212,0.2); color: #22d3ee; border: 1px solid rgba(6,182,212,0.3); }
.icon-pink { background: rgba(236,72,153,0.2); color: #f472b6; border: 1px solid rgba(236,72,153,0.3); }
.icon-yellow { background: rgba(234,179,8,0.2); color: #facc15; border: 1px solid rgba(234,179,8,0.3); }
.icon-indigo { background: rgba(99,102,241,0.2); color: #818cf8; border: 1px solid rgba(99,102,241,0.3); }
.icon-red { background: rgba(239,68,68,0.2); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.icon-teal { background: rgba(20, 184, 166, 0.2); color: #2dd4bf; border: 1px solid rgba(20, 184, 166, 0.3); }
.icon-lime { background: rgba(132, 204, 22, 0.2); color: #a3e635; border: 1px solid rgba(132, 204, 22, 0.3); }
.icon-rose { background: rgba(244, 63, 94, 0.2); color: #fb7185; border: 1px solid rgba(244, 63, 94, 0.3); }
.icon-sky { background: rgba(14, 165, 233, 0.2); color: #38bdf8; border: 1px solid rgba(14, 165, 233, 0.3); }
.icon-violet { background: rgba(124, 58, 237, 0.2); color: #a78bfa; border: 1px solid rgba(124, 58, 237, 0.3); }
.icon-slate { background: rgba(100, 116, 139, 0.24); color: #cbd5e1; border: 1px solid rgba(148, 163, 184, 0.3); }

.feature-card h3 {
	font-size: 1.25rem;
	margin-bottom: 12px;
}

.feature-card p {
	color: var(--text-muted);
	font-size: 0.875rem;
	line-height: 1.8;
}

/* SEO向け本文セクション */
.about,
.feature-details,
.faq {
	padding: 88px 0;
}

.about {
	padding-top: 36px;
}

.about .section-title p,
.feature-details .section-title p,
.faq .section-title p {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.about-points,
.detail-list,
.faq-list {
	display: grid;
	gap: 20px;
}

.about-points {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-point {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 24px;
	background: rgba(17, 24, 39, 0.78);
}

.about-point i {
	color: var(--primary);
	margin-top: 4px;
}

.about-point p,
.detail-item p,
.faq-item p {
	color: var(--text-muted);
	line-height: 1.8;
}

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

.detail-item,
.faq-item {
	padding: 28px;
	background: rgba(17, 24, 39, 0.78);
}

.detail-item h3,
.faq-item h3 {
	font-size: 1.1rem;
	margin-bottom: 10px;
	color: #f8fafc;
}

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

/* 動作環境とダウンロード */
.requirements {
	padding: 80px 0 40px;
}

.download-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.download-card {
	min-height: 190px;
	padding: 28px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
	transition: all 0.3s;
}

.download-card.glass-panel {
	background: rgba(17, 24, 39, 0.88);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border-color: rgba(0, 240, 255, 0.18);
}

.download-card i {
	font-size: 2rem;
	color: var(--primary);
	margin-bottom: 8px;
}

.download-card strong {
	font-size: 1.15rem;
}

.download-card span {
	color: var(--text-main);
	font-size: 0.95rem;
}

.download-card small {
	color: var(--text-muted);
	line-height: 1.5;
	overflow-wrap: anywhere;
}

a.download-card:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 240, 255, 0.4);
	box-shadow: 0 0 28px rgba(0, 112, 243, 0.2);
}

.download-card.is-disabled {
	opacity: 0.58;
	cursor: not-allowed;
}

.download-card.is-disabled i {
	color: #94a3b8;
}

.download-card.is-recommended {
	position: relative;
	border-color: rgba(0, 240, 255, 0.72);
	box-shadow: 0 0 28px rgba(0, 240, 255, 0.18);
}

.download-card.is-recommended::after {
	content: attr(data-recommended-label);
	position: absolute;
	top: 14px;
	right: 14px;
	padding: 4px 10px;
	border-radius: 9999px;
	background: rgba(0, 240, 255, 0.16);
	border: 1px solid rgba(0, 240, 255, 0.45);
	color: var(--primary);
	font-size: 0.75rem;
	font-weight: 700;
}

.release-table-wrap {
	margin-top: 32px;
	padding: 28px;
	background: rgba(17, 24, 39, 0.84);
	overflow: hidden;
}

.release-table-heading {
	margin-bottom: 18px;
}

.release-table-heading h3 {
	font-size: 1.25rem;
	margin-bottom: 8px;
}

.release-table-heading p {
	color: var(--text-muted);
	line-height: 1.7;
}

.release-table-scroll {
	max-width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.release-table {
	width: 100%;
	min-width: 860px;
	border-collapse: collapse;
	font-size: 0.88rem;
}

.release-table th,
.release-table td {
	padding: 12px 14px;
	border-bottom: 1px solid rgba(148, 163, 184, 0.18);
	text-align: left;
	vertical-align: top;
}

.release-table th {
	color: #f8fafc;
	font-weight: 700;
	background: rgba(15, 23, 42, 0.8);
}

.release-table td {
	color: var(--text-muted);
}

.release-table code {
	color: #dbeafe;
	font-family: 'Fira Code', Consolas, monospace;
	font-size: 0.82rem;
	overflow-wrap: anywhere;
}

/* ダウンロード CTA */
.download-cta {
	padding: 100px 0;
	position: relative;
}

.cta-bg {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent, rgba(0, 240, 255, 0.05));
}

.cta-box {
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	padding: 60px;
	position: relative;
	z-index: 10;
	border-radius: 24px;
	box-shadow: 0 0 50px rgba(0, 240, 255, 0.1);
}

.cta-logo {
	width: 110px;
	height: 110px;
	margin: 0 auto 24px;
	filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.6));
	transition: transform 0.5s;
}

.cta-box:hover .cta-logo {
	transform: scale(1.1);
}

.cta-box h2 {
	font-size: 2.25rem;
	margin-bottom: 24px;
	line-height: 1.2;
}

.cta-box p {
	color: #d1d5db;
	font-size: 1.125rem;
	margin-bottom: 40px;
}

.btn-large {
	background: #fff;
	color: var(--bg-dark);
	font-size: 1.125rem;
	font-weight: bold;
	padding: 16px 48px;
	border-radius: 9999px;
	box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
	transition: transform 0.3s;
	display: inline-block;
	max-width: 100%;
	white-space: normal;
}

.btn-large:hover {
	transform: scale(1.05);
}

.cta-os-info {
	margin-top: 24px;
	font-size: 0.875rem;
	color: #6b7280;
}

/* フッター */
footer {
	border-top: 1px solid rgba(31, 41, 55, 0.5);
	padding: 48px 0 24px;
	background-color: #050810;
}

.footer-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-brand img {
	width: 32px;
	height: 32px;
	opacity: 0.8;
}

.footer-brand span {
	font-size: 1.25rem;
	font-weight: bold;
	color: #d1d5db;
}

.footer-links {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px 22px;
	font-size: 0.875rem;
	color: #9ca3af;
}

.footer-links a {
	transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
	color: var(--primary);
}

.footer-social {
	display: flex;
	gap: 24px;
}

.footer-social a {
	color: #6b7280;
	font-size: 1.25rem;
	transition: color 0.3s;
}

.social-x-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.25em;
	height: 1.25em;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1;
}

.footer-social a:hover {
	color: var(--primary);
}

.footer-copy {
	text-align: center;
	margin-top: 32px;
	font-size: 0.875rem;
	color: #4b5563;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
	.container {
		padding: 0 24px;
	}

	.nav-links {
		gap: 20px;
	}

	.hero {
		padding: 140px 0 80px;
	}

	.hero h1 {
		font-size: clamp(1.7rem, 5.2vw, 3.25rem);
	}

	.hero p {
		font-size: 1.1rem;
	}

	.section-title h2,
	.cta-box h2 {
		font-size: 2rem;
	}

	.features-grid {
		grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
		gap: 24px;
	}

	.about-points {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.blob {
		display: none;
	}

	.container {
		padding: 0 18px;
	}

	.nav-inner {
		height: 68px;
		flex-wrap: nowrap;
	}

	.nav-links {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-left: auto;
		min-width: 0;
	}

	.nav-links a.nav-item {
		display: none;
	}

	.dropdown-btn {
		min-height: 40px;
		padding: 8px;
	}

	.dropdown-menu {
		right: -74px;
		max-width: calc(100vw - 28px);
	}

	.brand img {
		width: 40px;
		height: 40px;
	}

	.brand-text {
		font-size: 1.25rem;
	}

	.btn-primary {
		padding: 9px 16px;
		font-size: 0.9rem;
	}

	nav .btn-primary {
		max-width: 34vw;
		overflow: hidden;
		text-align: center;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.hero {
		padding: 118px 0 56px;
	}

	.hero h1 {
		font-size: clamp(1.5rem, 5.8vw, 2.15rem);
		line-height: 1.18;
	}

	.hero h1 span:first-child {
		font-size: 1rem !important;
	}

	.hero p {
		font-size: 1rem;
		margin-bottom: 30px;
	}

	.btn-os {
		width: 100%;
		justify-content: center;
		padding-inline: 18px;
		text-align: center;
		white-space: normal;
	}

	.features,
	.about,
	.feature-details,
	.faq,
	.download-cta {
		padding: 72px 0;
	}

	.requirements {
		padding: 64px 0 28px;
	}

	.section-title {
		margin-bottom: 40px;
	}

	.section-title h2 {
		font-size: 1.65rem;
	}

	.section-title p {
		font-size: 1rem;
	}

	.feature-card,
	.download-card,
	.detail-item,
	.faq-item,
	.about-point,
	.release-table-wrap {
		padding: 24px;
	}

	.detail-list,
	.faq-list {
		grid-template-columns: 1fr;
	}

	.cta-box {
		padding: 40px 20px;
		width: min(100%, calc(100vw - 36px));
	}

	.cta-box h2 {
		font-size: 1.75rem;
	}

	.footer-inner {
		flex-direction: column;
		text-align: center;
	}
}

@media (max-width: 420px) {
	.container {
		padding: 0 14px;
	}

	.nav-inner {
		gap: 8px;
	}

	.brand {
		gap: 8px;
	}

	.brand img {
		width: 34px;
		height: 34px;
	}

	.brand-text {
		font-size: 1.05rem;
	}

	nav .btn-primary {
		display: none;
	}

	.dropdown-btn {
		gap: 6px;
		padding: 8px 6px;
	}

	#current-lang {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
	}

	.dropdown-menu {
		right: -84px;
	}

	.hero {
		padding: 126px 0 48px;
	}

	.hero h1 {
		font-size: 1.28rem;
		line-height: 1.28;
		margin-bottom: 24px;
	}

	.hero-title-main span {
		display: block;
	}

	.hero h1 span:first-child {
		font-size: 0.9rem !important;
		line-height: 1.45;
		max-width: 100%;
		overflow-wrap: anywhere;
	}

	.hero-gradient-text {
		display: block;
		margin-top: 0.2rem;
	}

	.hero p {
		font-size: 0.92rem;
		line-height: 1.75;
	}

	.section-title h2,
	.cta-box h2 {
		font-size: 1.5rem;
	}

	.feature-card h3 {
		font-size: 1.12rem;
	}
}

@media (max-width: 360px) {
	.hero h1 {
		font-size: 1.18rem;
	}
}
