:root {
    --bg: #f3efe8;
    --bg-2: #ebe7df;
    --panel: rgba(255, 255, 255, 0.58);
    --panel-2: rgba(255, 255, 255, 0.72);
    --stroke: rgba(36, 40, 46, 0.08);
    --stroke-strong: rgba(36, 40, 46, 0.12);
    --text: #17181b;
    --muted: rgba(23, 24, 27, 0.72);
    --soft: rgba(23, 24, 27, 0.48);
    --accent: #8f9fb3;
    --accent-2: #cfd7df;
    --chip: rgba(255, 255, 255, 0.68);
    --shadow: 0 25px 70px rgba(31, 35, 41, 0.08);
    --shadow-soft: 0 18px 40px rgba(31, 35, 41, 0.06);
    --max-width: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 14%, rgba(201, 211, 223, 0.55), transparent 24%),
        radial-gradient(circle at 88% 10%, rgba(220, 226, 234, 0.85), transparent 20%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
    text-rendering: optimizeLegibility;
}

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

.page-shell {
    width: min(var(--max-width), calc(100% - 56px));
    margin: 28px auto;
    padding: 26px 30px 24px;
    border-radius: 36px;
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.42));
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.page-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 20% 12%, rgba(183, 196, 210, 0.22), transparent 26%),
        radial-gradient(circle at 84% 8%, rgba(255, 255, 255, 0.5), transparent 20%);
}

.topbar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 6px 6px 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-copy strong {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.brand-copy span {
    font-size: 0.84rem;
    color: var(--soft);
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pill-link,
.pill-link-dark,
.ghost-link,
.watch-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    transition: 0.22s ease;
}

.pill-link,
.watch-btn {
    background: #1d2128;
    color: #fff;
    box-shadow: 0 10px 24px rgba(29, 33, 40, 0.12);
}

.pill-link {
    height: 46px;
    padding: 0 22px;
    font-size: 0.95rem;
}

.watch-btn {
    min-width: 108px;
    height: 46px;
    padding: 0 18px;
}

.pill-link:hover,
.watch-btn:hover {
    transform: translateY(-1px);
    background: #111317;
}

.pill-link-dark,
.ghost-link {
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid var(--stroke);
    color: var(--text);
}

.pill-link-dark {
    height: 46px;
    padding: 0 22px;
    font-size: 0.95rem;
}

.ghost-link {
    gap: 10px;
    padding: 0 18px;
    height: 48px;
}

.pill-link-dark:hover,
.ghost-link:hover {
    background: rgba(255, 255, 255, 0.88);
    transform: translateY(-1px);
}

.hero {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 36px;
    align-items: start;
    padding: 12px 4px 30px;
}

.hero-left {
    padding: 18px 0 8px;
    min-width: 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--chip);
    border: 1px solid var(--stroke);
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
    margin-bottom: 22px;
    box-shadow: var(--shadow-soft);
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #95a7bb;
}

h1 {
    margin: 0;
    max-width: 8ch;
    font-size: clamp(3.6rem, 7vw, 6.9rem);
    line-height: 0.9;
    letter-spacing: -0.085em;
    font-weight: 700;
}

.hero-copy {
    margin: 24px 0 0;
    max-width: 680px;
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.58;
}

.hero-copy strong {
    color: var(--text);
    font-weight: 700;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-note {
    margin-top: 16px;
    color: var(--soft);
    font-size: 0.93rem;
}

.hero-right {
    min-width: 0;
    min-height: 640px;
    display: flex;
    align-items: stretch;
}

.visual-card {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.48);
    box-shadow: var(--shadow);
    min-height: 100%;
}

.visual-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 18px;
    border-bottom: 1px solid var(--stroke);
}

.window-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(23, 24, 27, 0.22);
}

.visual-label {
    margin-left: 8px;
    font-size: 0.86rem;
    color: var(--soft);
}

.hero-image-wrap {
    padding: 18px;
    min-height: 100%;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 26px;
    border: 1px solid rgba(23, 24, 27, 0.06);
}

.section {
    position: relative;
    z-index: 2;
    padding: 18px 4px 10px;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 26px;
    padding-right: 6px;
}

.section-head h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
    font-weight: 700;
}

.section-head p {
    margin: 0;
    max-width: 560px;
    color: var(--muted);
    line-height: 1.55;
    font-size: 1rem;
}

.carousel-wrap {
    width: 100%;
}

.product-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 360px);
    gap: 18px;
    overflow-x: auto;
    padding: 0 8px 10px 2px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    align-items: stretch;
}

.product-carousel::-webkit-scrollbar {
    height: 8px;
}

.product-carousel::-webkit-scrollbar-thumb {
    background: rgba(23, 24, 27, 0.18);
    border-radius: 999px;
}

.product-card {
    scroll-snap-align: start;
    min-height: 560px;
    padding: 22px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.5));
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 15% 14%, rgba(200, 210, 220, 0.34), transparent 24%);
}

.product-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.product-badge {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--stroke);
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
}

.product-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--stroke);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text);
    flex-shrink: 0;
}

.product-title {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 2rem;
    line-height: 0.94;
    letter-spacing: -0.05em;
    font-weight: 700;
}

.product-sub {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    color: var(--muted);
    line-height: 1.52;
    font-size: 0.98rem;
    min-height: 92px;
}

.product-image {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    height: 240px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.35s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.02);
}

.product-actions {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 18px;
}

.watch-btn {
    min-width: 108px;
    height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1d2128;
    color: #fff;
    font-weight: 700;
    transition: 0.22s ease;
    box-shadow: 0 10px 24px rgba(29, 33, 40, 0.12);
}

.watch-btn:hover {
    transform: translateY(-1px);
    background: #111317;
}

.product-link {
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
}

.bottom-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 6px 8px;
}

.social-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.icon-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
    transition: 0.2s ease;
}

.icon-link:hover {
    color: var(--text);
}

.icon-chip {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid var(--stroke);
}

.footer-note {
    color: var(--soft);
    font-size: 0.88rem;
}

svg {
    display: block;
}

@media (max-width: 1100px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-right {
        min-height: auto;
    }

    .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .section-head p {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-shell {
        width: calc(100% - 20px);
        margin: 10px auto;
        padding: 16px;
        border-radius: 28px;
    }

    .topbar {
        padding: 4px 2px 18px;
    }

    .pill-link,
    .pill-link-dark {
        height: 42px;
        padding: 0 16px;
        font-size: 0.88rem;
    }

    .hero {
        gap: 20px;
        padding: 6px 2px 20px;
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 8px 0 2px;
    }

    .hero-right {
        min-height: auto;
    }

    .hero-image-wrap {
        padding: 12px;
    }

    .hero-image-wrap img {
        min-height: 340px;
    }

    .section {
        padding: 8px 2px 4px;
    }

    .product-carousel {
        grid-auto-columns: 88%;
        gap: 14px;
        padding: 0 2px 10px;
    }

    .product-card {
        min-height: 520px;
        padding: 18px;
        border-radius: 24px;
    }

    .product-sub {
        min-height: 84px;
    }

    .product-image {
        height: 210px;
    }

    .bottom-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 2px 2px;
        gap: 14px;
    }
}

@media (max-width: 540px) {
    .page-shell {
        width: calc(100% - 14px);
        padding: 14px;
    }

    .topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .top-actions {
        width: 100%;
    }

    .pill-link,
    .pill-link-dark {
        flex: 1;
    }

    h1 {
        max-width: none;
        font-size: clamp(3rem, 18vw, 4.6rem);
    }

    .hero-copy {
        line-height: 1.5;
    }

    .hero-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .ghost-link,
    .pill-link {
        width: 100%;
        justify-content: center;
    }

    .product-carousel {
        grid-auto-columns: 92%;
    }

    .product-card {
        min-height: 500px;
    }

    .product-sub {
        min-height: 78px;
    }

    .product-image {
        height: 190px;
    }

    .social-row {
        width: 100%;
        justify-content: space-between;
    }

    .icon-link span:last-child {
        display: none;
    }

    .footer-note {
        font-size: 0.82rem;
    }
}