/* ════════ HERO ════════ */
.home-hero {
    position: relative;
    padding: 36px 0 56px;
    border-bottom: 2px solid var(--ink);
    margin-bottom: 48px;
    overflow: hidden;
}

/* decorative oversized fret-dot column, right side */
.home-hero::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    background:
        radial-gradient(circle at center, color-mix(in srgb, var(--accent) 12%, transparent) 0 32%, transparent 33%);
    opacity: 0.5;
    pointer-events: none;
}

.home-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--text-dim);
    margin-bottom: 22px;
}

.home-kicker::before {
    content: "";
    width: 36px;
    height: 2px;
    background: var(--accent);
}

.home-logo { display: none; }

.home-title {
    font-family: var(--font-display);
    font-size: clamp(3.6rem, 13vw, 9rem);
    font-weight: 900;
    font-optical-sizing: auto;
    letter-spacing: -0.035em;
    line-height: 0.86;
    color: var(--ink);
    margin: 0 0 24px;
    text-transform: uppercase;
}

.home-title .brand-accent {
    color: var(--accent);
    font-style: italic;
    display: inline-block;
}

.home-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 3.2vw, 1.9rem);
    font-weight: 500;
    font-style: italic;
    color: var(--ink);
    line-height: 1.25;
    max-width: 620px;
    margin: 0 0 18px;
}

.home-desc {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    max-width: 540px;
    margin: 0 0 32px;
}

.home-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}

.home-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--on-accent);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 14px 26px;
    border: 2px solid var(--ink);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    transition: transform 0.12s, box-shadow 0.12s;
}

.home-cta-primary:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); }
.home-cta-primary:active { transform: translate(3px, 3px); box-shadow: none; }

.home-cta-secondary {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    text-decoration: none;
    font-family: var(--font-mono);
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 14px 22px;
    border: 2px solid var(--ink);
    border-radius: var(--r);
    background: transparent;
    transition: background 0.15s, color 0.15s;
}

.home-cta-secondary:hover { background: var(--ink); color: var(--on-accent); }

/* ════════ FEATURE TRACKLIST ════════ */
.home-sec-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
    border-bottom: 1.5px dashed var(--border);
    padding-bottom: 12px;
}

.home-sec-title {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--ink);
}

.home-sec-meta {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-dim);
}

.home-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 64px;
}

.home-feature-card {
    position: relative;
    background: var(--panel);
    border: 2px solid var(--ink);
    border-left: 8px solid var(--feat-color);
    border-radius: var(--r);
    padding: 24px 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.12s, box-shadow 0.12s;
    overflow: hidden;
}

.home-feature-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 6px 6px 0 var(--feat-color);
}

.home-feat-step {
    font-family: var(--font-display);
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 0.8;
    color: var(--feat-color);
    letter-spacing: -0.04em;
    margin-bottom: 2px;
}

.home-feat-icon {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--feat-color);
    opacity: 0.85;
    line-height: 1;
}

.home-feat-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
    line-height: 1;
}

.home-feat-desc {
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.home-feat-link {
    font-family: var(--font-mono);
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--feat-color);
    text-decoration: none;
    margin-top: 6px;
    align-self: flex-start;
    border-bottom: 2px solid transparent;
    transition: border-color 0.15s;
}

.home-feat-link:hover { border-color: var(--feat-color); }

/* ════════ ABOUT (editorial) ════════ */
.home-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 56px;
    border: 2px solid var(--ink);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    overflow: hidden;
    background: var(--panel);
}

.home-about-block {
    padding: 34px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.home-about-block:first-child {
    border-right: 2px solid var(--ink);
}

.home-about-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
}

.home-about-title {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--ink);
    margin: 0;
    line-height: 1.05;
}

.home-about-body {
    font-size: 0.96rem;
    color: var(--text);
    line-height: 1.72;
    margin: 0;
}

.home-about-body em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--accent);
    font-weight: 600;
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 760px) {
    .home-features { grid-template-columns: 1fr; }
    .home-about { grid-template-columns: 1fr; }
    .home-about-block:first-child { border-right: none; border-bottom: 2px solid var(--ink); }
    .home-hero::after { width: 200px; height: 200px; right: -70px; opacity: 0.35; }
}

@media (max-width: 600px) {
    .home-hero { padding: 24px 0 40px; }
    .home-about-block { padding: 24px 22px; }
}
