/* Blackspace - Hyper-minimalist theme */
* { margin: 0; padding: 0; box-sizing: border-box; }
.root-fix{ }
:root{
	--bg: #0b0b0c;
	--panel: #0f1113;
	--muted: #bfc6cc; /* brighter muted text for readability */
	--text: #f4f6f7; /* brighter body text */
	--accent: #d1d5d9;
	--glass: rgba(255,255,255,0.03);
	--border: rgba(255,255,255,0.08); /* stronger border for panels */
}
body{
	font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	background: var(--bg);
	color: var(--text);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	padding: 28px 18px;
}
.container{ max-width: 1100px; margin: 0 auto; }
header{ text-align: center; padding: 48px 10px 32px; }
h1{ font-size: 40px; letter-spacing: 0.02em; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.tagline{ font-size: 15px; color: var(--muted); margin-top: 8px; }

/* Image styling: subtle panel with 1px border to blend in */
.site-front-image{
	max-width: 520px;
	width: 76%;
	height: auto;
	display: block;
	margin: 0 auto 24px;
	border-radius: 14px;
	background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0.005));
	padding: 14px;
	border: 1.6px solid var(--border);
	box-shadow: 0 22px 60px rgba(0,0,0,0.7); /* stronger lift to separate from background */
}

/* Page panels: restrained cards */
.hero-card, .card{ background: rgba(255,255,255,0.01); border-radius: 12px; padding: 34px; margin-bottom: 22px; border: 1.6px solid var(--border); }
.hero-card h2, h2{ font-size: 22px; color: var(--text); margin-bottom: 14px; font-weight: 700; }
.hero-card p, .card p{ color: var(--muted); font-size: 17px; margin-bottom: 14px; }

.pricing-grid{ display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 12px; margin: 18px 0; }
.price-card{ background: rgba(255,255,255,0.006); border-radius: 12px; padding: 26px; text-align: left; border: 1.6px solid var(--border); }
.price-card h3{ color: var(--text); font-size: 18px; margin: 0 0 8px 0; font-weight: 700; }
.price{ display:block; font-size: 24px; color: var(--text); font-weight:700; margin:8px 0; }
.price-description{ color: var(--muted); font-size:16px; margin-bottom:12px; }

/* Minimal buttons */
.cta-button{ display:inline-block; padding:14px 20px; border-radius:12px; border:1px solid rgba(255,255,255,0.06); color:var(--text); background:transparent; font-weight:700; cursor:pointer; text-decoration:none; transition: background .12s ease, transform .06s ease; }
.cta-button:hover{ background:rgba(255,255,255,0.03); transform: translateY(-3px); }
.cta-button.disabled{ opacity:0.6; pointer-events:none; }

.highlight-box{ border-radius:10px; padding:14px; margin:14px 0; border:1px solid var(--border); color:var(--muted); font-size:13px; display:flex; justify-content:space-between; align-items:center; }
.highlight-box .paw-icon{ font-size:20px; margin-left:12px; opacity:0.95; }

/* Modal: keep functional but minimal */
.modal{ display:none; position:fixed; inset:0; background:rgba(0,0,0,0.6); align-items:center; justify-content:center; z-index:1000; }
.modal.active{ display:flex; }
.modal-content{ background:var(--panel); border-radius:10px; width:100%; max-width:640px; padding:18px; border:1px solid var(--border); }
.close-btn{ background:transparent; border:none; color:var(--muted); font-size:18px; cursor:pointer; }
.modal form input, .modal form textarea{ width:100%; padding:8px 10px; border-radius:6px; border:1px solid var(--border); background:transparent; color:var(--text); }


/* Accessibility: slightly stronger contrast for small text */
.tagline, .highlight-box, footer, .price-description{ color: rgba(244,246,247,0.78); }

/* Footer/logo placement */
footer{ display:flex; justify-content:space-between; align-items:center; gap:12px; padding:18px 0; }
.footer-logo{ height:40px; width:auto; }

/* Simple utility classes */
.unavailable{ color:var(--muted); font-size:13px; }

/* Tool rows */
.tools-list{ margin: 18px 0; }
.tool-row{ background: rgba(255,255,255,0.006); border-radius: 12px; padding: 16px; border: 1.6px solid var(--border); margin-bottom: 12px; display:flex; align-items:flex-start; gap:14px; }
.tool-icon{ width:32px; height:32px; display:inline-flex; align-items:center; justify-content:center; font-size:14px; color:var(--muted); }
.tool-content h4{ margin:0 0 6px 0; }

@media (max-width:900px){
	.container{ padding: 0 18px; }
	.site-front-image{ width: 80%; max-width:360px; }
	h1{ font-size:28px; }
	.hero-card, .card{ padding:18px; }
	.price{ font-size:18px; }
}
