@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");

:root {
	--bg: #f8fafc;
	--surface: #ffffff;
	--ink: #0f172a;
	--muted: #475467;
	--line: #e5e7eb;
	--accent: #0ea5e9;
	--accent-strong: #0284c7;
	--accent-soft: #e0f2fe;
	--shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background: var(--bg);
	color: var(--ink);
	font-family: "DM Sans", "Segoe UI", -apple-system, sans-serif;
	line-height: 1.7;
}

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

img {
	max-width: 100%;
	display: block;
}

p {
	margin: 0 0 12px;
	color: var(--muted);
}

h1,
h2,
h3,
h4 {
	color: var(--ink);
	margin: 0;
	line-height: 1.2;
	letter-spacing: -0.01em;
}

h1 {
	font-size: 2.8rem;
}

h2 {
	font-size: 2rem;
	margin-bottom: 12px;
}

h3 {
	font-size: 1.5rem;
	margin-top: 4px;
}

h4 {
	font-size: 1.15rem;
	margin-bottom: 6px;
}

.lede {
	font-size: 1.05rem;
	color: var(--muted);
}

.container {
	width: min(1080px, 92vw);
	margin: 0 auto;
}

.nav {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--line);
}

.nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 0;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
	font-size: 1.05rem;
	color: var(--ink);
}

.brand__logo {
	height: 64px;
	width: auto;
	display: inline-block;
	object-fit: contain;
}

.brand__mark {
	width: 12px;
	height: 12px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--accent), var(--accent-strong));
	display: inline-block;
}

.brand__name {
	letter-spacing: -0.01em;
}

.nav__links {
	display: flex;
	align-items: center;
	gap: 18px;
}

.nav__links a {
	font-weight: 500;
	font-size: 18px; 
	color: var(--muted);
	padding: 8px 4px;
	border-bottom: 2px solid transparent;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.nav__links a:hover {
	color: var(--ink);
	border-color: var(--accent-soft);
}

.nav__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 18px;
	border-radius: 12px;
	border: 1px solid var(--accent);
	color: var(--accent-strong);
	font-weight: 700;
	background: #f0f9ff;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	box-shadow: 0 10px 22px rgba(14, 165, 233, 0.15);
	cursor: pointer;
}

.btn.primary {
	background: var(--accent);
	color: #ffffff;
	border-color: var(--accent);
	box-shadow: 0 18px 40px rgba(14, 165, 233, 0.28);
}

.btn.ghost {
	background: transparent;
	border-color: var(--line);
	color: var(--ink);
	box-shadow: none;
}

.btn.small {
	padding: 10px 14px;
	font-size: 0.95rem;
	font-weight: 600;
}

.btn:hover {
	transform: translateY(-1px);
}

.btn:active {
	transform: translateY(0);
}

.eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.8rem;
	font-weight: 700;
	color: var(--accent-strong);
	margin-bottom: 8px;
}

.hero {
	padding: 96px 0 72px;
	background: radial-gradient(circle at 20% 20%, rgba(14, 165, 233, 0.12), transparent 35%),
		radial-gradient(circle at 80% 10%, rgba(8, 47, 73, 0.06), transparent 32%);
}

.hero__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 56px;
	align-items: flex-start;
}

.hero__copy h1 {
	margin-bottom: 16px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.hero__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 12px;
	background: var(--accent-soft);
	color: var(--accent-strong);
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.95rem;
}

.chip--muted {
	background: #eef2f7;
	color: var(--muted);
}

.chip--soft {
	background: #eaf6ff;
	color: var(--accent-strong);
}

.chip .icon {
	color: var(--accent-strong);
}

.hero__visual {
	position: relative;
	display: grid;
	gap: 16px;
}

.hero__panel {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 24px;
	box-shadow: var(--shadow);
	position: relative;
}

.hero__panel img {
	width: 100%;
	border-radius: 16px;
}

.hero__device {
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
	display: block;
}

.panel__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 12px;
	gap: 10px;
}

.panel__footer.stacked {
	justify-content: flex-start;
	flex-direction: column;
	align-items: flex-start;
}

.hero-logo {
	width: 200%;
	height: 110%;
	max-width: 600px;
	margin: 5px auto 0;
	display: block;
	border-radius: 16px;
}

.panel__footer .label {
	font-weight: 700;
	color: var(--ink);
	margin: 0;
}

.panel__footer .muted {
	margin: 2px 0 0;
	font-size: 0.95rem;
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--accent-strong);
	font-weight: 700;
}

.link-arrow:after {
	content: "↗";
	font-size: 0.95em;
	transition: transform 0.2s ease;
}

.link-arrow:hover:after {
	transform: translateY(-1px);
}

.hero__note {
	position: absolute;
	right: -32px;
	bottom: -40px;
	background: var(--accent-strong);
	color: #e0f2fe;
	padding: 16px 18px;
	border-radius: 16px;
	box-shadow: 0 18px 45px rgba(2, 132, 199, 0.35);
	width: 240px;
	font-weight: 700;
}

.hero__note small {
	display: block;
	color: #bae6fd;
	font-weight: 600;
	margin-bottom: 6px;
}

.hero__badge {
	position: absolute;
	right: 14px;
	bottom: 14px;
	background: #0b74c5;
	color: #e5f3ff;
	padding: 14px 16px;
	border-radius: 16px;
	box-shadow: 0 16px 36px rgba(2, 132, 199, 0.28);
	max-width: 240px;
}

.badge__eyebrow {
	color: #d7edff;
	margin-bottom: 2px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.85rem;
}

.badge__body {
	margin: 0;
	font-weight: 700;
	line-height: 1.4;
	color: #eaf5ff;
}

.hero__device {
	border-radius: 16px;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.section {
	padding: 82px 0;
}

.section.strip {
	background: #ffffff;
	border-top: 1px solid var(--line);
	border-bottom: 1px solid var(--line);
}

.section.neutral {
	background: linear-gradient(180deg, #f4f7fb 0%, #f8fafc 100%);
}

.section__head {
	max-width: 720px;
	margin: 0 auto 32px;
	text-align: center;
}

.section__head p {
	margin-top: 10px;
}

.pillars__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
}

.pillar {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 18px 18px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.pillar .icon {
	color: var(--accent-strong);
	font-size: 1.2rem;
	margin-top: 2px;
}

.app-shell {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 32px;
	box-shadow: var(--shadow);
}

.app-card {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 32px;
	align-items: center;
}

.app-card__visual img {
	width: 100%;
	border-radius: 18px;
	box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.app-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 12px;
}

.tag {
	padding: 6px 12px;
	background: #eef2f7;
	color: var(--muted);
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.92rem;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
	margin-top: 28px;
}

.feature {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 18px 18px;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.feature__icon {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--accent-soft);
	color: var(--accent-strong);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
}

.cta {
	background: linear-gradient(135deg, #0ea5e9, #0b66c3);
	color: #e5f3ff;
	padding: 80px 0;
}

.cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.cta h2 {
	color: #ffffff;
	margin: 12px 0;
	font-size: 2rem;
}

.cta p {
	color: #dbeafe;
	max-width: 640px;
}

.cta .btn {
	background: #ffffff;
	color: #0b3c62;
	border-color: #ffffff;
	box-shadow: none;
}

.cta .btn:hover {
	transform: translateY(-1px);
}

.cta .link-arrow {
	color: #e5f3ff;
}

.cta__meta {
	color: #dbeafe;
	margin-top: 12px;
}

.footer {
	padding: 28px 0;
	background: #0b1b3a;
	color: #cbd5e1;
}

.footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	flex-wrap: wrap;
}

.footer__links {
	display: flex;
	gap: 14px;
}

.footer__links a {
	color: #e2e8f0;
}

.domoro-hero {
	padding-bottom: 82px;
}

.domoro-hero__visual {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.domoro-hero .hero__panel {
	max-width: 420px;
	margin-left: auto;
	margin-right: auto;
}

.domoro-highlight-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.domoro-highlight-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 18px;
	padding: 16px 16px 18px;
	box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
	display: flex;
	flex-direction: column;
	gap: 12px;
	height: 100%;
}

.domoro-highlight-img {
	height: 420px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.domoro-highlight-card img {
	border-radius: 12px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.domoro-download {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 28px;
	align-items: flex-start;
}

.domoro-download__visual {
	display: flex;
	justify-content: center;
}

.domoro-download .hero__panel {
	margin: 0;
	max-width: 440px;
	width: 100%;
}

.domoro-download .hero__panel img {
	max-width: 360px;
	margin: 0 auto;
	display: block;
}

.support-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 18px;
}

.support-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 18px 18px;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.legal-list {
	list-style: none;
	margin: 12px 0 0;
	padding: 0;
	display: grid;
	gap: 6px;
	color: var(--muted);
}

.policy {
	background: linear-gradient(180deg, #f6f9fc 0%, #f8fafc 100%);
	min-height: 100vh;
}

.policy__hero {
	padding: 96px 0 48px;
}

.policy__hero h1 {
	margin: 8px 0 8px;
}

.policy__hero .lede {
	max-width: 760px;
}

.policy__actions {
	margin-top: 16px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.policy__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
}

.policy__card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 16px;
	padding: 18px 18px;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
	display: grid;
	gap: 8px;
}

.policy__list {
	list-style: disc;
	padding-left: 18px;
	display: grid;
	gap: 6px;
	color: var(--muted);
}

@media (max-width: 960px) {
	.hero__note {
		position: static;
		width: auto;
	}

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

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

@media (max-width: 640px) {
	.feature-grid {
		grid-template-columns: 1fr;
	}

	.domoro-highlight-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.nav__links {
		display: none;
	}

	.nav__inner {
		padding: 14px 0;
	}

	.hero {
		padding-top: 72px;
	}

	.app-shell {
		padding: 24px;
	}
}
