.hero {
    overflow: hidden;
    color: #fff;
    background-color: #05030b;
    background-image:
        radial-gradient(520px 360px at 79% 46%, rgba(164, 91, 255, .34), transparent 64%),
        radial-gradient(1000px 700px at -12% 50%, rgba(95, 45, 160, .45), transparent 62%),
        radial-gradient(1000px 700px at 112% 50%, rgba(85, 35, 150, .45), transparent 62%),
        radial-gradient(520px 320px at 38% 14%, rgba(183, 95, 255, .28), transparent 58%),
        radial-gradient(420px 260px at 68% 28%, rgba(112, 76, 255, .18), transparent 62%),
        linear-gradient(180deg, #14081f 0%, #0b0614 46%, #05030b 100%);
}
.hero-grid {
    min-height: 670px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
    align-items: center;
    gap: 64px;
    padding-top: 86px;
    padding-bottom: 94px;
}
.hero-copy { min-width: 0; }
.hero .eyebrow { color: #c3adff; }
.hero h1 {
    max-width: 730px;
    margin: 0;
    font-size: clamp(58px, 7.2vw, 96px);
    line-height: .94;
    font-weight: 700;
    letter-spacing: -.055em;
    text-wrap: balance;
}
.hero-lead {
    max-width: 650px;
    margin: 30px 0 0;
    color: #d6c9f5;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.15;
    font-weight: 450;
    letter-spacing: -.025em;
}
.hero-description {
    max-width: 640px;
    margin: 19px 0 0;
    color: rgba(255,255,255,.70);
    font-size: 17px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 31px;
}
.button-primary {
    background: #fff;
    color: #160d24;
}
.button-primary:hover { background: #f3efff; }
.button-secondary {
    border: 1px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.075);
    color: #fff;
}
.button-secondary:hover {
    border-color: rgba(255,255,255,.30);
    background: rgba(255,255,255,.12);
}
.platform-line {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 34px;
}
.platform-line span {
    padding: 7px 10px;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 999px;
    background: rgba(255,255,255,.045);
    color: rgba(255,255,255,.68);
    font-size: 12px;
    line-height: 1;
}
.hero-visual {
    position: relative;
    min-height: 450px;
    display: grid;
    place-items: center;
}
.portrait-glow {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(145, 93, 255, .32) 0%, rgba(145, 93, 255, .12) 42%, transparent 72%);
    filter: blur(2px);
}
.portrait-card {
    position: relative;
    width: min(100%, 390px);
    min-height: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 44px 32px 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 36px;
    background:
        radial-gradient(circle at 50% 32%, rgba(183, 95, 255, .20), transparent 48%),
        linear-gradient(180deg, rgba(255,255,255,.095), rgba(255,255,255,.045));
    box-shadow: 0 35px 90px rgba(0,0,0,.40), inset 0 1px 0 rgba(255,255,255,.10);
}
.hero-portrait {
    width: 285px;
    height: 285px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 22px 30px rgba(0,0,0,.28));
}
.portrait-caption {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 12px;
    color: rgba(255,255,255,.74);
    font-size: 13px;
    font-weight: 500;
}
.portrait-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #b292ff;
    box-shadow: 0 0 18px rgba(178,146,255,.8);
}

.about-section {
    padding: 105px 0 110px;
    background: linear-gradient(180deg, #fbfbfd, #f7f7fa);
}
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 80px;
    align-items: start;
}
.about-section h2,
.work-section h2,
.identity-section h2,
.closing-section h2 {
    margin: 0;
    color: #111114;
    font-size: clamp(38px, 4.5vw, 58px);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -.045em;
    text-wrap: balance;
}
.about-copy p {
    margin: 0;
    color: #4f5562;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: -.01em;
}
.about-copy p + p { margin-top: 26px; }

.work-section {
    padding: 104px 0 112px;
    background: #fff;
    border-top: 1px solid #ececef;
}
.section-heading-row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: end;
}
.section-heading-row > div { max-width: 720px; }
.text-link {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    flex: 0 0 auto;
    color: var(--purple-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}
.text-link:hover { color: #3f2a91; }
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 54px;
}
.work-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid #e6e6eb;
    border-radius: 26px;
    background:
        radial-gradient(360px 180px at 12% 0%, rgba(119,88,217,.07), transparent 70%),
        #fbfbfd;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.work-card:hover {
    transform: translateY(-2px);
    border-color: rgba(119,88,217,.26);
    box-shadow: 0 24px 60px rgba(50,39,83,.07);
}
.work-index {
    color: #8d7ac6;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
}
.work-card h3 {
    max-width: 440px;
    margin: 25px 0 0;
    color: #1d1d1f;
    font-size: 25px;
    line-height: 1.12;
    font-weight: 650;
    letter-spacing: -.03em;
}
.work-card p {
    max-width: 480px;
    margin: 13px 0 24px;
    color: #6e6e73;
    font-size: 15px;
    line-height: 1.65;
}
.work-tag {
    margin-top: auto;
    color: var(--purple-dark);
    font-size: 12px;
    font-weight: 650;
}

.identity-section {
    padding: 104px 0 112px;
    border-top: 1px solid #ececef;
    background: linear-gradient(180deg, #f8f8fa, #f3f2f7);
}
.identity-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(350px, 1.05fr);
    gap: 80px;
    align-items: start;
}
.identity-intro {
    max-width: 560px;
    margin: 24px 0 0;
    color: #6e6e73;
    font-size: 17px;
    line-height: 1.7;
}
.identity-list {
    overflow: hidden;
    border: 1px solid #e1e0e6;
    border-radius: 24px;
    background: rgba(255,255,255,.76);
}
.identity-link {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 20px 24px;
    color: #1d1d1f;
    text-decoration: none;
    transition: background .18s ease, color .18s ease;
}
.identity-link + .identity-link { border-top: 1px solid #e5e4e9; }
.identity-link:hover { background: #fff; color: var(--purple-dark); }
.identity-link strong { display: block; font-size: 17px; letter-spacing: -.01em; }
.identity-link small { display: block; margin-top: 3px; color: #86868b; font-size: 13px; }

.closing-section {
    padding: 112px 0 120px;
    background: #fff;
    text-align: center;
}
.closing-shell { max-width: 850px; }
.closing-avatar {
    width: 88px;
    height: 88px;
    display: block;
    margin: 0 auto 24px;
    object-fit: contain;
}
.closing-section .section-eyebrow { margin-bottom: 15px; }
.closing-section h2 { font-size: clamp(42px, 5.5vw, 68px); }
.closing-section .button { margin-top: 32px; }

@media (max-width: 920px) {
    .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 38px; padding-top: 72px; }
    .hero-copy { max-width: 760px; }
    .hero-visual { min-height: 410px; }
    .portrait-card { min-height: 390px; }
    .about-grid, .identity-grid { grid-template-columns: 1fr; gap: 44px; }
    .section-heading-row { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
    .hero-grid { padding-top: 54px; padding-bottom: 66px; }
    .hero h1 { font-size: clamp(50px, 15vw, 72px); }
    .hero-lead { font-size: 24px; }
    .hero-description { font-size: 16px; }
    .hero-actions { display: grid; grid-template-columns: 1fr; }
    .button { width: 100%; }
    .platform-line { gap: 7px; }
    .hero-visual { min-height: 350px; }
    .portrait-glow { width: 340px; height: 340px; }
    .portrait-card { width: min(100%, 330px); min-height: 340px; padding: 32px 24px 22px; border-radius: 30px; }
    .hero-portrait { width: 238px; height: 238px; }
    .about-section, .work-section, .identity-section, .closing-section { padding-top: 78px; padding-bottom: 84px; }
    .about-section h2, .work-section h2, .identity-section h2 { font-size: 39px; }
    .about-copy p { font-size: 17px; }
    .work-grid { grid-template-columns: 1fr; margin-top: 38px; }
    .work-card { min-height: 220px; }
    .identity-grid { gap: 36px; }
    .identity-link { min-height: 80px; padding: 18px 20px; }
    .closing-section h2 { font-size: 43px; }
}
