.home-hero {
max-width: 780px;
margin: 0 auto;
padding: 56px 24px 56px;
text-align: center;
}
.home-hero__icons {
max-width: 380px;
margin: 0 auto 28px;
display: block;
}
.home-hero__eyebrow {
display: inline-block;
font-family: var(--font-mono);
font-size: 13px;
font-weight: 500;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--hcw-terracotta);
margin-bottom: 16px;
}
.home-hero h1 {
font-size: 42px;
line-height: 1.15;
margin: 0 0 16px;
}
.home-hero__subtitle {
font-size: 17px;
color: var(--hcw-text-muted);
max-width: 520px;
margin: 0 auto 36px;
line-height: 1.6;
}
.home-search {
position: relative;
max-width: 520px;
margin: 0 auto;
}
.home-search input {
width: 100%;
padding: 18px 20px 18px 52px;
font-size: 16px;
font-family: var(--font-body);
color: var(--hcw-text);
background: #fff;
border: 2px solid var(--hcw-border);
border-radius: 10px;
box-sizing: border-box;
transition: border-color 0.15s ease;
}
.home-search input:focus {
outline: none;
border-color: var(--hcw-terracotta);
}
.home-search__icon {
position: absolute;
left: 18px;
top: 50%;
transform: translateY(-50%);
width: 20px;
height: 20px;
color: var(--hcw-text-muted);
pointer-events: none;
}
.home-search__no-results {
display: none;
font-size: 14px;
color: var(--hcw-text-muted);
margin-top: 12px;
}
.home-section {
max-width: 1000px;
margin: 0 auto;
padding: 0 24px 64px;
}
.home-banner {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
flex-wrap: wrap;
background: var(--hcw-charcoal);
border-radius: 12px;
padding: 20px 28px;
margin-bottom: 40px;
}
.home-banner__text {
color: #fff;
}
.home-banner__eyebrow {
display: block;
font-family: var(--font-mono);
font-size: 12px;
font-weight: 500;
letter-spacing: 0.06em;
text-transform: uppercase;
color: var(--hcw-terracotta-light);
margin-bottom: 4px;
}
.home-banner__text h2 {
font-size: 19px;
color: #fff;
margin: 0;
}
.home-banner__links {
display: flex;
gap: 12px;
flex-wrap: wrap;
}
.home-banner__links a {
font-size: 14px;
font-weight: 600;
color: var(--hcw-charcoal);
background: #fff;
padding: 10px 18px;
border-radius: 6px;
text-decoration: none;
white-space: nowrap;
transition: background 0.15s ease;
}
.home-banner__links a:hover {
background: var(--hcw-terracotta-light);
}
.home-section__header {
margin-bottom: 24px;
}
.home-section__header h2 {
font-size: 24px;
margin: 0 0 6px;
}
.home-section__header p {
font-size: 15px;
color: var(--hcw-text-muted);
margin: 0;
}
.home-tool-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
gap: 20px;
}
.home-coming-soon {
display: flex;
align-items: center;
justify-content: center;
border: 1.5px dashed var(--hcw-border);
border-radius: 10px;
padding: 24px;
text-align: center;
color: var(--hcw-text-muted);
font-size: 14px;
min-height: 140px;
}
.home-about {
max-width: 700px;
margin: 0 auto;
padding: 0 24px 64px;
text-align: center;
}
.home-about h2 {
font-size: 22px;
margin: 0 0 14px;
}
.home-about p {
font-size: 15.5px;
color: var(--hcw-text);
line-height: 1.7;
margin: 0;
}
@media (max-width: 600px) {
.home-hero h1 {
font-size: 30px;
}
.home-hero {
padding: 40px 20px 40px;
}
.home-hero__icons {
max-width: 280px;
}
.home-banner {
flex-direction: column;
align-items: flex-start;
}
}