:root {
    --bg: #100d0a;
    --panel: #241c14;
    --panel-deep: #1d1711;
    --wood: #6c421d;
    --accent: #ffb14b;
    --accent-deep: #c48134;
    --cream: #f2e2c8;
    --muted: #bba78a;
    --line: rgba(246, 226, 187, 0.14);
    --shadow: rgba(0, 0, 0, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    background:
        radial-gradient(circle at 50% 112%, rgba(214, 144, 52, 0.2), transparent 28rem),
        linear-gradient(180deg, #201912 0%, var(--bg) 42%);
    color: var(--cream);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

.site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header,
.site-footer {
    width: min(100% - 36px, 1180px);
    margin: 0 auto;
}

.site-header {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand,
.nav-links {
    display: flex;
    align-items: center;
}

.brand {
    gap: 10px;
    color: var(--accent);
    font-size: 22px;
    font-weight: 900;
    text-decoration: none;
}

.brand-logo {
    width: 40px;
    height: 45px;
    object-fit: contain;
}

.nav-links {
    gap: 18px;
}

.nav-links a,
.site-footer a {
    color: var(--muted);
    font-weight: 800;
    text-decoration: none;
}

.nav-links a:hover,
.site-footer a:hover {
    color: var(--accent);
}

main {
    flex: 1;
}

.hero {
    width: min(100% - 36px, 1180px);
    min-height: calc(100vh - 152px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
    align-items: center;
    gap: 48px;
    padding: 28px 0 64px;
}

.hero-copy {
    max-width: 560px;
}

.hero-logo {
    width: 118px;
    height: auto;
    margin-bottom: 18px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1,
h2,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 16px;
    color: var(--accent);
    font-size: clamp(48px, 8vw, 96px);
    line-height: 0.94;
    font-weight: 900;
    letter-spacing: 0;
    text-shadow: 0 6px 22px var(--shadow);
}

.lede {
    max-width: 520px;
    color: var(--cream);
    font-size: clamp(20px, 2.4vw, 28px);
    line-height: 1.25;
    font-weight: 750;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 20px;
    font-weight: 900;
    text-decoration: none;
}

.button-primary {
    background: var(--accent);
    color: #120d09;
}

.button-secondary {
    border: 2px solid var(--line);
    color: var(--cream);
    background: rgba(36, 28, 20, 0.72);
}

.guitar-panel {
    min-height: 650px;
    border-radius: 48px;
    padding: 10px;
    background: var(--panel-deep);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.guitar-face {
    position: relative;
    height: 100%;
    min-height: 630px;
    overflow: hidden;
    border: 1px solid rgba(246, 226, 187, 0.09);
    border-radius: 38px;
    background:
        radial-gradient(circle at -8% 42%, rgba(108, 66, 29, 0.3), transparent 10rem),
        radial-gradient(circle at 108% 42%, rgba(108, 66, 29, 0.3), transparent 10rem),
        rgba(35, 26, 18, 0.96);
}

.top-controls {
    display: flex;
    gap: 12px;
    padding: 18px;
}

.top-button,
.record-button,
.chord-grid span {
    border: 2px solid rgba(255, 177, 75, 0.62);
    background: rgba(16, 13, 10, 0.66);
    color: var(--accent);
    font-weight: 900;
}

.top-button {
    border-radius: 999px;
    padding: 10px 16px;
}

.record-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ff5c3d;
    box-shadow: 0 0 0 9px rgba(255, 92, 61, 0.12);
}

.chord-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 0 18px;
}

.chord-grid span {
    min-height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 24px;
}

.strings {
    position: absolute;
    top: 250px;
    right: 9%;
    left: 9%;
    display: grid;
    gap: 22px;
}

.strings span {
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(242, 226, 200, 0), rgba(242, 226, 200, 0.9), rgba(242, 226, 200, 0));
    box-shadow: 0 0 12px rgba(255, 177, 75, 0.25);
}

.sound-hole {
    position: absolute;
    right: 50%;
    bottom: -112px;
    width: 300px;
    height: 300px;
    transform: translateX(50%);
    border: 3px solid rgba(196, 129, 52, 0.46);
    border-radius: 50%;
    background: #090807;
    box-shadow: 0 0 0 18px rgba(214, 144, 52, 0.12), inset 0 0 0 18px rgba(229, 165, 83, 0.58);
}

.feature-band {
    border-top: 1px solid rgba(246, 226, 187, 0.08);
    background: rgba(9, 8, 7, 0.38);
    padding: 70px 0;
}

.feature-grid {
    width: min(100% - 36px, 1180px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.feature-card {
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid var(--line);
    border-radius: 22px;
    background: rgba(36, 28, 20, 0.9);
    padding: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
}

.feature-icon {
    min-height: 44px;
    color: var(--accent);
    font-size: 36px;
    font-weight: 900;
}

.feature-fx {
    font-size: 28px;
}

.speaker-icon span {
    display: block;
    width: 36px;
    height: 30px;
    border: solid var(--accent);
    border-width: 0 4px 0 10px;
    border-radius: 4px 18px 18px 4px;
}

.sliders span {
    display: block;
    width: 38px;
    height: 5px;
    margin: 8px 0;
    border-radius: 999px;
    background: var(--accent);
}

.feature-card h2 {
    margin-bottom: 8px;
    color: var(--cream);
    font-size: 24px;
}

.feature-card p,
.legal-page p {
    color: var(--muted);
    line-height: 1.55;
}

.legal-page {
    width: min(100% - 36px, 780px);
    margin: 0 auto;
    padding: 54px 0 86px;
}

.legal-page h1 {
    font-size: clamp(38px, 6vw, 68px);
}

.legal-page h2 {
    margin: 34px 0 10px;
    color: var(--cream);
    font-size: 24px;
}

.updated {
    color: var(--cream);
    font-weight: 800;
}

.site-footer {
    min-height: 76px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 14px;
}

.footer-separator {
    color: rgba(242, 226, 200, 0.26);
}

@media (max-width: 900px) {
    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .guitar-panel {
        min-height: 560px;
    }

    .guitar-face {
        min-height: 540px;
    }

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

@media (max-width: 560px) {
    .site-header {
        height: auto;
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
    }

    .nav-links {
        width: 100%;
        justify-content: flex-start;
    }

    .hero {
        padding-top: 18px;
    }

    .hero-logo {
        width: 90px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .guitar-panel {
        min-height: 480px;
        border-radius: 34px;
    }

    .guitar-face {
        min-height: 460px;
        border-radius: 26px;
    }

    .chord-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .chord-grid span {
        min-height: 50px;
        font-size: 20px;
    }

    .strings {
        top: 245px;
        gap: 18px;
    }

    .sound-hole {
        width: 230px;
        height: 230px;
        bottom: -86px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}
