:root {
    --bg-color: #081321;
    --bg-elevated: #0f2238;
    --card-color: #132c46;
    --text-color: #e8edf5;
    --text-muted: #a7b2c2;
    --line-color: rgba(255, 255, 255, 0.14);
    --accent-color: #f1b55f;
    --accent-strong: #ffca7c;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Noto Sans JP', sans-serif;
    --transition-speed: 0.35s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background:
        radial-gradient(circle at 85% 12%, rgba(241, 181, 95, 0.18), transparent 42%),
        radial-gradient(circle at 12% 88%, rgba(68, 123, 182, 0.2), transparent 40%),
        var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    animation: ambientShift 12s ease-in-out infinite alternate;
}

/* Grainy Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: 1000;
}

@keyframes ambientShift {
    0% { background-position: 0% 0%; }
    100% { background-position: 5% 5%; }
}

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

li {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
    cursor: none;
}

.container {
    width: min(1160px, 92vw);
    margin: 0 auto;
}

.cursor,
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor {
    width: 8px;
    height: 8px;
    background-color: #fff;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.1s ease;
}

.reveal-text {
    display: inline-block;
    opacity: 0;
    transform: translateY(18px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-title .reveal-text:nth-of-type(1) { animation-delay: 0.1s; }
.hero-title .reveal-text:nth-of-type(2) { animation-delay: 0.3s; }
.hero-title .reveal-text:nth-of-type(3) { animation-delay: 0.45s; }

.hero-title .reveal-text {
    white-space: nowrap;
}

.reveal-text-delay {
    opacity: 0;
    animation: fadeIn 1s ease forwards 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 4.4vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: linear-gradient(to bottom, rgba(8, 19, 33, 0.85), rgba(8, 19, 33, 0.25));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.11em;
    text-decoration: none;
    color: inherit;
}

.nav {
    position: relative;
}

.nav-close-item {
    display: none;
}

.nav-close-top {
    display: none;
}

.nav-list {
    display: flex;
    gap: 2.1rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(240, 244, 250, 0.86);
    position: relative;
}

.nav-link[aria-current="page"] {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--accent-color);
    transition: transform var(--transition-speed) ease;
}

.nav-link[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle span {
    width: 17px;
    height: 2px;
    background: #fff;
}

.hero {
    min-height: 100vh;
    padding-top: 8.5rem;
    padding-bottom: 4rem;
    position: relative;
    /* Ensure content is above canvas */
    z-index: 1;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: auto; /* Allow mouse interaction */
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-kicker {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.15rem;
    font-family: var(--font-heading);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.05rem, 4.9vw, 4.3rem);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 1.4rem;
    text-shadow: 0 0 40px rgba(241, 181, 95, 0.15);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.7vw, 1.22rem);
    color: var(--text-muted);
    min-height: 4.8em;
}

#typed-text {
    display: inline-block;
    min-height: 1.7em;
}

#typed-text::after {
    content: '|';
    margin-left: 2px;
    color: var(--accent-color);
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-actions {
    display: flex;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.82rem 1.35rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
                background-color var(--transition-speed) ease,
                color var(--transition-speed) ease, 
                border-color var(--transition-speed) ease,
                box-shadow var(--transition-speed) ease;
}

.btn-primary {
    background: linear-gradient(115deg, var(--accent-color), var(--accent-strong));
    color: #1c2432;
    box-shadow: 0 0 0 rgba(241, 181, 95, 0);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.03);
    box-shadow: 0 8px 25px rgba(241, 181, 95, 0.35);
}

.btn-primary:active {
    transform: translateY(0) scale(0.97);
    filter: brightness(0.97);
}

.btn-ghost {
    border-color: rgba(255, 255, 255, 0.33);
    color: #eef3fb;
    background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
    border-color: var(--accent-color);
    color: #fff;
}

.btn-ghost:active {
    background: rgba(255, 255, 255, 0.08);
}

.hero-visual {
    display: grid;
    gap: 1rem;
}

.hero-window {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(13, 25, 41, 0.7);
    backdrop-filter: blur(20px);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    will-change: transform;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    animation: floatSmooth 5.4s linear infinite;
}

.hero-window-link {
    display: block;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hero-window-link:hover,
.hero-window-link:focus-visible {
    border-color: rgba(241, 181, 95, 0.45);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(241, 181, 95, 0.18);
}

.window-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-header .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.window-header .dot:nth-child(1) { background: #ff5f56; }
.window-header .dot:nth-child(2) { background: #ffbd2e; }
.window-header .dot:nth-child(3) { background: #27c93f; }

.window-title {
    margin-left: 0.5rem;
    font-size: 0.7rem;
    font-family: var(--font-heading);
    color: var(--text-muted);
    letter-spacing: 0.05em;
    opacity: 0.8;
}

.hero-card-main {
    padding: 2rem;
    display: grid;
    gap: 1.35rem;
}

.hero-card-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
        "copy photo"
        "description description";
    gap: 1rem;
    align-items: start;
}

.hero-card-copy {
    grid-area: copy;
    min-width: 0;
}

.hero-card-copy h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
    line-height: 1.15;
    margin-top: 0.4rem;
}

.hero-card-description {
    grid-area: description;
    margin-top: 0.1rem;
    color: var(--text-muted);
    font-size: 0.96rem;
    line-height: 1.72;
}

.profile-photo-wrap--hero {
    grid-area: photo;
    width: 92px;
    min-width: 92px;
    height: 92px;
    margin-top: 0.15rem;
}

.hero-process-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.process-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-color);
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.process-tag:hover {
    background: rgba(241, 181, 95, 0.1);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.process-tag svg {
    opacity: 0.7;
    color: var(--accent-color);
}

@keyframes floatSmooth {
    0% {
        transform: translate3d(0, 9px, 0);
    }
    25% {
        transform: translate3d(0, -2px, 0);
    }
    50% {
        transform: translate3d(0, -9px, 0);
    }
    75% {
        transform: translate3d(0, 2px, 0);
    }
    100% {
        transform: translate3d(0, 9px, 0);
    }
}

.hero-card-sub {
    display: flex;
    justify-content: space-between;
    gap: 0.6rem;
}

.hero-card-sub p {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 0.6rem 0.7rem;
    color: #e8edf5;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--font-heading);
    text-align: center;
    flex: 1;
    transition: all 0.3s ease;
}

.hero-card-sub p:hover {
    border-color: var(--accent-color);
    background: rgba(241, 181, 95, 0.1);
}

.scroll-indicator {
    position: absolute;
    right: 4.6vw;
    bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1s;
}

.scroll-indicator span {
    writing-mode: vertical-rl;
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    color: #c8d3e2;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.scroll-indicator .line {
    width: 1px;
    height: 54px;
    background-color: rgba(255, 255, 255, 0.28);
    overflow: hidden;
    position: relative;
}

.scroll-indicator .line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-color);
    transform: translateY(-100%);
    animation: scrollLine 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

.trust-band {
    margin-top: -1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.trust-list {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.trust-list li {
    padding: 1.5rem 1.2rem;
    background: rgba(11, 25, 42, 0.6);
    color: #e8edf5;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.trust-list li:hover {
    background: rgba(255, 255, 255, 0.05);
}

.trust-list li span {
    opacity: 0.9;
}

.section {
    padding: 6.2rem 0;
}

.section-kicker {
    font-family: var(--font-heading);
    color: var(--accent-color);
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.7vw, 3rem);
    line-height: 1.3;
    margin-bottom: 1.1rem;
}

.sp-break {
    display: none;
}

.section-lead {
    color: var(--text-muted);
    max-width: 760px;
    margin-bottom: 2.3rem;
}

.section.contact .section-lead {
    max-width: none;
    white-space: nowrap;
}

#designs .section-lead {
    max-width: none;
    text-wrap: pretty;
}

@media (min-width: 1024px) {
    #designs .section-lead {
        white-space: nowrap;
    }
}

.works-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.work-item {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(4px);
    transition: all var(--transition-speed) ease;
}

.work-item:not(:hover) {
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.work-item:hover,
.work-item:focus-visible {
    border-color: rgba(241, 181, 95, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(241, 181, 95, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.work-item:active {
    transform: scale(0.98);
}

.work-image {
    position: relative;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.work-item:hover .work-image img {
    transform: scale(1.08);
}

/* Enhanced Hover Effect */
.work-item .work-image {
    transition: clip-path 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    /* Initial state could be slightly constrained if desired, 
       but standard full rectangle is fine. 
       Let's add a subtle filter change instead. */
    filter: brightness(0.95);
    transition: filter 0.4s ease;
}

.work-item:hover .work-image {
    filter: brightness(1.1);
}

.work-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 16, 27, 0.6);
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-overlay span {
    border: 1px solid rgba(255, 255, 255, 0.88);
    padding: 0.58rem 1rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.work-info {
    padding: 1.1rem 1.15rem 1.2rem;
}

.work-info::after {
    content: "";
    display: none;
}

.work-cat {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-color);
}

.work-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 0.5rem 0;
}

.work-desc {
    color: #c4cfdf;
    font-size: 0.9rem;
}

.work-point {
    margin-top: 0.75rem;
    color: #f5d195;
    font-size: 0.82rem;
    line-height: 1.5;
}

.process {
    background: rgba(11, 24, 40, 0.64);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.process-card {
    border: 1px solid var(--line-color);
    border-radius: 12px;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    transition: transform var(--transition-speed) ease, 
                border-color var(--transition-speed) ease,
                background var(--transition-speed) ease;
}

.process-card:hover,
.process-card:focus-visible {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.06);
}

.process-card:active {
    transform: translateY(-2px);
}

.process-card .step {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    color: var(--accent-color);
    margin-bottom: 0.6rem;
}

.process-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 0.55rem;
}

.process-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.4rem;
}

.about-content,
.about-panel {
    border: 1px solid var(--line-color);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
}

.about-profile {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    padding: 1rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 14px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
}

.about-profile-link {
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.about-profile-link:hover,
.about-profile-link:focus-visible {
    border-color: rgba(241, 181, 95, 0.48);
    background: linear-gradient(140deg, rgba(241, 181, 95, 0.12), rgba(255, 255, 255, 0.03));
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
    transform: translateY(-2px);
}

.profile-photo-wrap {
    position: relative;
    width: 104px;
    min-width: 104px;
    height: 104px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 28px rgba(7, 15, 29, 0.45);
    animation: profile-float 5s ease-in-out infinite;
}

.profile-photo-wrap::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: inherit;
    background: conic-gradient(
        from 210deg,
        rgba(102, 224, 255, 0.95),
        rgba(148, 120, 255, 0.85),
        rgba(255, 170, 96, 0.9),
        rgba(96, 228, 188, 0.9),
        rgba(102, 224, 255, 0.95)
    );
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 5px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 6px), #000 calc(100% - 5px));
    filter: blur(1.6px);
    box-shadow:
        0 0 16px rgba(110, 218, 255, 0.42),
        0 0 26px rgba(155, 126, 255, 0.3),
        0 0 18px rgba(255, 170, 96, 0.2);
    opacity: 0.98;
    animation: profile-halo-spin 18s linear infinite, profile-halo-breathe 5.2s ease-in-out infinite;
}

@keyframes profile-halo-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.profile-photo-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 2px solid rgba(10, 18, 32, 0.95);
    z-index: 2;
}

.profile-photo-wrap img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    z-index: 1;
}

.profile-copy {
    display: grid;
    gap: 0.38rem;
}

.profile-name {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.04em;
    color: #f8fbff;
}

.profile-name span {
    margin-left: 0.5rem;
    font-size: 0.74rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--accent-color);
}

.profile-intro {
    margin: 0;
    color: #d4deec;
    font-size: 0.86rem;
    line-height: 1.72;
}

.about-text {
    color: #d4deec;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

@keyframes profile-halo-breathe {
    0%,
    100% {
        opacity: 0.92;
    }

    50% {
        opacity: 1;
    }
}

@keyframes profile-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.skill-tag {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    padding: 0.48rem 0.9rem;
    font-size: 0.78rem;
    color: #e4ebf5;
}

.about-panel h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
}

.about-panel ul {
    display: grid;
    gap: 0.55rem;
}

.about-panel-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.about-panel-tags .skill-tag {
    background: rgba(255, 255, 255, 0.03);
}

.about-panel li {
    position: relative;
    padding-left: 1rem;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.about-panel li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent-color);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.contact-links,
.contact-cta {
    border: 1px solid var(--line-color);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.35rem;
}

.contact-grid {
    display: grid;
    gap: 1rem;
}

.contact-tile {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.contact-tile::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-tile:hover,
.contact-tile:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(241, 181, 95, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-tile:active {
    transform: translateY(-1px) scale(0.98);
}

.contact-tile:hover::before {
    transform: translateX(100%);
}

.tile-icon {
    width: 48px;
    height: 48px;
    background: rgba(241, 181, 95, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-tile:hover .tile-icon {
    background: var(--accent-color);
    color: #1c2432;
    transform: scale(1.1);
}

.tile-content {
    flex-grow: 1;
}

.tile-content .label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.tile-content .value {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
}

.tile-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.contact-tile:hover .tile-arrow {
    opacity: 1;
    transform: translateX(0);
}

.contact-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.16rem;
    margin-bottom: 0.7rem;
}

.contact-cta ul {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-cta li {
    color: var(--text-muted);
    font-size: 0.88rem;
    position: relative;
    padding-left: 0.95rem;
}

.contact-cta li::before {
    content: '>';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-family: var(--font-heading);
}

.footer {
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 2.2rem 0 3rem;
}

.footer .container {
    text-align: center;
}

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

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

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

    .about-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .about-profile {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 5vw;
    }

    .nav {
        position: static;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-list {
        position: fixed; /* Changed to fixed for full screen coverage */
        top: 0; /* Align to top */
        right: 0;
        height: 100vh; /* Full viewport height */
        width: min(280px, 90vw);
        flex-direction: column;
        gap: 0.25rem;
        justify-content: flex-start;
        border-radius: 0; /* Remove border-radius for full height */
        border: none; /* Remove border */
        background: var(--bg-color); /* Solid background for overlay effect */
        backdrop-filter: none; /* Remove backdrop filter for performance/consistency with solid background */
        overflow-y: auto; /* Allow scrolling if content is long */
        box-shadow: -10px 0 40px rgba(0,0,0,0.5); /* Shadow for slide effect */
        transform: translateX(100%); /* Start off-screen */
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth slide transition */
        display: flex; /* Always flex, control visibility with transform */
        z-index: 1000; /* Ensure it's above other content */
        padding: calc(env(safe-area-inset-top, 0px) + 4.25rem) 1rem 1.25rem;
    }

    .nav.is-open .nav-list {
        transform: translateX(0); /* Slide into view */
        animation: none; /* Remove fadeIn animation */
    }

    /* Mobile Nav Overlay */
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: transparent;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    /* Overlay is appended under body in JS, so state is driven by body.nav-open */
    body.nav-open .nav-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Prevent body scroll when nav is open */
    body.nav-open {
        overflow: hidden;
    }

    .nav-link {
        display: block;
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

    .nav-close-top {
        display: none;
        position: fixed;
        top: calc(env(safe-area-inset-top, 0px) + 0.9rem);
        right: 1rem;
        width: 40px;
        height: 40px;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.06);
        color: var(--text-color);
        font-size: 1.5rem;
        line-height: 1;
        z-index: 1001;
    }

    .nav.is-open .nav-close-top {
        display: inline-flex;
    }

    .nav-close-item {
        display: block;
        margin-top: auto;
        padding: 1rem 1.5rem 1.5rem;
    }

    .nav-close-btn {
        width: 100%;
        padding: 0.85rem;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        background: transparent;
        color: var(--text-muted);
        font-size: 0.9rem;
        font-family: var(--font-body);
        letter-spacing: 0.08em;
        transition: border-color 0.3s ease, color 0.3s ease;
    }

    .nav-close-btn:active {
        border-color: var(--accent-color);
        color: var(--text-color);
    }

    .hero {
        padding-top: 7rem;
        padding-bottom: 3rem;
        min-height: auto; /* Remove 100vh constraint on mobile */
    }

    .sp-break {
        display: inline;
    }

    .hero-title {
        font-size: clamp(1.85rem, 9vw, 2.8rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        min-height: auto;
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    #typed-text {
        display: block;
        min-height: 1.7em;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.9rem 1.5rem; /* Larger touch target */
        font-size: 1rem;
    }

    .hero-card-sub {
        flex-wrap: wrap;
    }

    .scroll-indicator {
        display: none;
    }

    .trust-list {
        grid-template-columns: 1fr;
    }
    
    .trust-list li {
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .section {
        padding: 4rem 0;
    }

    .section.works {
        padding: 4rem 0;
    }

    .section.process {
        padding: 3.5rem 0;
    }

    .section.about {
        padding: 3rem 0;
    }

    .section.contact {
        padding: 2.5rem 0;
    }

    .works-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .work-image img {
        height: auto;
        aspect-ratio: 16 / 10;
    }

    .work-overlay {
        display: none;
    }

    .work-info::after {
        content: "制作事例を詳しく見る";
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 0.95rem;
        padding: 0.65rem 1rem;
        border: 1px solid rgba(241, 181, 95, 0.55);
        border-radius: 999px;
        color: var(--accent-strong);
        font-size: 0.78rem;
        letter-spacing: 0.08em;
        background: rgba(241, 181, 95, 0.08);
    }

    .work-desc {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .about-profile {
        flex-direction: column;
        text-align: left;
        gap: 0.85rem;
    }

    .about-panel-tags {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.7rem;
    }

    .about-panel-tags .skill-tag {
        display: block;
        width: 100%;
        font-size: 0.92rem;
        line-height: 1.55;
        padding: 0.62rem 0.9rem;
    }

    .profile-photo-wrap {
        width: 86px;
        min-width: 86px;
        height: 86px;
    }

    .profile-photo-wrap--hero {
        width: 78px;
        min-width: 78px;
        height: 78px;
    }

    .profile-name span {
        display: block;
        margin: 0.3rem 0 0;
    }

    .contact-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }

    .section.contact .section-lead {
        white-space: normal;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation: none !important;
        transition: none !important;
    }
}
/* モバイル固定CTA */
.mobile-fixed-cta {
    display: none;
}

@media (max-width: 768px) {
    .mobile-fixed-cta {
        position: fixed;
        bottom: 1.5rem;
        right: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.2rem;
        background: linear-gradient(115deg, var(--accent-color), var(--accent-strong));
        color: #1c2432;
        border-radius: 999px;
        font-size: 0.85rem;
        font-weight: 600;
        box-shadow: 0 4px 20px rgba(241, 181, 95, 0.4);
        z-index: 90;
        opacity: 0;
        transform: translateY(20px);
        pointer-events: none;
        transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .mobile-fixed-cta.is-visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .mobile-fixed-cta:active {
        transform: scale(0.95);
    }
}

/* 訪問者カウンター */
.visitor-counter {
    margin-top: 0.8rem;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.counter-label {
    text-transform: uppercase;
}

.counter-value {
    color: var(--accent-color);
    font-weight: 500;
}

.hidden {
    display: none !important;
}

/* =========================================
   Designs Section
   ========================================= */

.designs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.designs-groups {
    display: grid;
    gap: 2.8rem;
}

.designs-group {
    display: grid;
    gap: 1.15rem;
}

.designs-group-title {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-family: var(--font-heading);
    font-size: clamp(1.24rem, 2.1vw, 1.6rem);
    color: #eef6ff;
}

.designs-group-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(241, 181, 95, 0.34), rgba(255, 255, 255, 0.05));
}

.design-item {
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.design-item:hover,
.design-item:focus-visible {
    border-color: rgba(241, 181, 95, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(241, 181, 95, 0.1);
    background: rgba(255, 255, 255, 0.04);
}

.design-item:active {
    transform: scale(0.98);
}

.design-thumb {
    position: relative;
    overflow: hidden;
    aspect-ratio: 800 / 1200;
    background: var(--card-color);
}

.design-thumb--banner {
    aspect-ratio: 1200 / 628;
}

.design-thumb--thumbnail {
    aspect-ratio: 1280 / 720;
}

.design-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.design-thumb img.design-thumb-image--top {
    object-position: top center;
}

.design-thumb img.design-thumb-image--contain {
    object-fit: contain;
    object-position: center;
    padding: 0.85rem;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(135deg, rgba(10, 23, 41, 0.96), rgba(18, 38, 67, 0.92));
}

.design-thumb.design-thumb--banner img,
.design-thumb.design-thumb--thumbnail img {
    object-fit: cover;
    object-position: center;
    padding: 0;
    background: none;
}

.design-item:hover .design-thumb img {
    transform: scale(1.05);
}

.design-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 16, 27, 0.6);
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.design-item:hover .design-overlay {
    opacity: 1;
}

.design-overlay span {
    border: 1px solid rgba(255, 255, 255, 0.88);
    padding: 0.58rem 1rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.design-info {
    padding: 0.9rem 1rem 1rem;
}

.design-cat {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent-color);
}

.design-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-top: 0.3rem;
}

.designs-cta {
    display: flex;
    justify-content: center;
}

.designs-cta-link {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    justify-items: center;
    width: min(100%, 520px);
    padding: 1.05rem 1.35rem 1.1rem;
    border: 1px solid rgba(171, 204, 255, 0.24);
    border-radius: 28px;
    color: #edf6ff;
    text-align: center;
    background:
        radial-gradient(circle at 18% 20%, rgba(125, 170, 255, 0.2), transparent 22%),
        radial-gradient(circle at 78% 78%, rgba(141, 117, 255, 0.2), transparent 28%),
        linear-gradient(135deg, #071224 0%, #0b1630 42%, #112652 100%);
    box-shadow:
        0 18px 42px rgba(2, 8, 22, 0.46),
        0 0 28px rgba(106, 149, 255, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(0) scale(1);
    transition:
        transform 0.62s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.48s ease,
        box-shadow 0.62s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    isolation: isolate;
    will-change: transform;
}

.designs-cta-link::before {
    content: "";
    position: absolute;
    inset: -18% -10%;
    border-radius: inherit;
    background:
        radial-gradient(circle at 20% 28%, rgba(155, 213, 255, 0.18), transparent 24%),
        radial-gradient(circle at 82% 26%, rgba(255, 235, 173, 0.12), transparent 18%),
        radial-gradient(circle at 66% 76%, rgba(146, 122, 255, 0.18), transparent 24%);
    opacity: 0.88;
    z-index: 0;
    pointer-events: none;
    filter: blur(4px);
    animation: designsCtaNebula 8.5s ease-in-out infinite alternate;
}

.designs-cta-link::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 9% 18%, rgba(255, 255, 255, 0.96) 0, rgba(255, 255, 255, 0.96) 1px, transparent 1.8px),
        radial-gradient(circle at 22% 72%, rgba(205, 228, 255, 0.82) 0, rgba(205, 228, 255, 0.82) 1.2px, transparent 2px),
        radial-gradient(circle at 31% 37%, rgba(255, 244, 214, 0.82) 0, rgba(255, 244, 214, 0.82) 1.4px, transparent 2.2px),
        radial-gradient(circle at 44% 14%, rgba(255, 255, 255, 0.84) 0, rgba(255, 255, 255, 0.84) 1px, transparent 1.8px),
        radial-gradient(circle at 58% 68%, rgba(195, 221, 255, 0.88) 0, rgba(195, 221, 255, 0.88) 1.3px, transparent 2px),
        radial-gradient(circle at 66% 26%, rgba(255, 255, 255, 0.88) 0, rgba(255, 255, 255, 0.88) 1px, transparent 1.8px),
        radial-gradient(circle at 81% 54%, rgba(242, 232, 255, 0.78) 0, rgba(242, 232, 255, 0.78) 1.2px, transparent 2px),
        radial-gradient(circle at 88% 18%, rgba(255, 247, 203, 0.78) 0, rgba(255, 247, 203, 0.78) 1.4px, transparent 2.1px),
        radial-gradient(circle at 76% 82%, rgba(214, 235, 255, 0.88) 0, rgba(214, 235, 255, 0.88) 1.1px, transparent 1.9px),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    z-index: 0;
    pointer-events: none;
    animation: designsCtaStarfield 5.4s ease-in-out infinite;
}

.designs-cta-link:hover,
.designs-cta-link:focus-visible {
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(208, 229, 255, 0.42);
    box-shadow:
        0 24px 48px rgba(2, 8, 22, 0.56),
        0 0 38px rgba(123, 184, 255, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.designs-cta-link:hover::before,
.designs-cta-link:focus-visible::before {
    animation-duration: 6.8s;
}

.designs-cta-link:focus-visible {
    outline: none;
}

.designs-cta-link:active {
    transform: translateY(-1px) scale(0.99);
}

.designs-cta-link__badge {
    display: inline-flex;
    align-items: center;
    justify-self: center;
    padding: 0.42rem 0.76rem;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(186, 217, 255, 0.22);
    border-radius: 999px;
    color: #dce9ff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    background: rgba(9, 22, 50, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.designs-cta-link__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    min-width: 0;
    max-width: 28rem;
    position: relative;
    z-index: 1;
}

.designs-cta-link__title {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 2.2vw, 1.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: #f7fbff;
    text-shadow: 0 0 14px rgba(156, 211, 255, 0.14);
}

.designs-cta-link__meta {
    color: rgba(221, 232, 252, 0.82);
    font-size: 0.92rem;
    font-weight: 400;
    line-height: 1.6;
}

.designs-cta-link__sparkle {
    --sparkle-rotate: 45deg;
    position: absolute;
    width: 16px;
    height: 16px;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    filter:
        drop-shadow(0 0 4px rgba(255, 255, 255, 0.96))
        drop-shadow(0 0 12px rgba(135, 188, 255, 0.52));
    animation: designsCtaSparkle 3.2s ease-in-out infinite;
}

.designs-cta-link__sparkle::before,
.designs-cta-link__sparkle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(190, 225, 255, 0.78));
    transform: translate(-50%, -50%);
}

.designs-cta-link__sparkle::before {
    width: 2px;
    height: 100%;
}

.designs-cta-link__sparkle::after {
    width: 100%;
    height: 2px;
}

.designs-cta-link__sparkle--1 {
    top: 14px;
    left: 16%;
    animation-delay: 0.2s;
}

.designs-cta-link__sparkle--2 {
    bottom: 16px;
    left: 28%;
    width: 12px;
    height: 12px;
    animation-delay: 1.1s;
}

.designs-cta-link__sparkle--3 {
    top: 50%;
    left: 10%;
    width: 14px;
    height: 14px;
    animation-delay: 1.8s;
}

.designs-cta-link__sparkle--4 {
    top: 22px;
    right: 18%;
    width: 10px;
    height: 10px;
    animation-delay: 2.3s;
}

.designs-cta-link__sparkle--5 {
    bottom: 18px;
    right: 20%;
    width: 12px;
    height: 12px;
    animation-delay: 0.9s;
}

@keyframes designsCtaNebula {
    0% {
        transform: translate3d(-2%, -1.5%, 0) scale(1);
        opacity: 0.66;
    }

    50% {
        opacity: 0.94;
    }

    100% {
        transform: translate3d(2.5%, 2.5%, 0) scale(1.08);
        opacity: 0.8;
    }
}

@keyframes designsCtaStarfield {
    0%,
    100% {
        opacity: 0.64;
    }

    50% {
        opacity: 1;
    }
}

@keyframes designsCtaSparkle {
    0%,
    100% {
        opacity: 0;
        transform: rotate(var(--sparkle-rotate)) scale(0.35);
    }

    18% {
        opacity: 0.38;
    }

    40% {
        opacity: 0.95;
        transform: rotate(var(--sparkle-rotate)) scale(1);
    }

    62% {
        opacity: 0.52;
        transform: rotate(var(--sparkle-rotate)) scale(0.72);
    }

    78% {
        opacity: 0;
        transform: rotate(var(--sparkle-rotate)) scale(0.45);
    }
}

@media (max-width: 1024px) {
    .designs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .designs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .design-info {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        column-gap: 0.9rem;
        row-gap: 0.18rem;
        align-items: center;
    }

    .design-cat,
    .design-title {
        min-width: 0;
    }

    .design-cat {
        grid-column: 1;
        grid-row: 1;
    }

    .design-title {
        grid-column: 1;
        grid-row: 2;
        margin-top: 0;
    }

    .designs-cta-link {
        gap: 0.8rem;
        padding: 1.05rem;
        border-radius: 24px;
    }

    .designs-cta-link::after {
        inset: 0;
    }

    .designs-cta-link__sparkle--1 {
        left: 14%;
    }

    .designs-cta-link__sparkle--2 {
        left: 22%;
        bottom: 18px;
    }

    .designs-cta-link__sparkle--3 {
        top: 44%;
        left: 10%;
    }

    .designs-cta-link__sparkle--4 {
        top: 20px;
        right: 16%;
    }

    .designs-cta-link__sparkle--5 {
        right: 14%;
        bottom: 24px;
    }

    .design-overlay {
        display: none;
    }

    .design-info::after {
        content: "プレビューを開く";
        display: inline-flex;
        align-items: center;
        justify-content: center;
        grid-column: 2;
        grid-row: 1 / span 2;
        align-self: center;
        justify-self: end;
        margin-top: 0;
        padding: 0.55rem 0.9rem;
        border: 1px solid rgba(241, 181, 95, 0.55);
        border-radius: 999px;
        color: var(--accent-strong);
        font-size: 0.75rem;
        letter-spacing: 0.08em;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
        background: rgba(241, 181, 95, 0.08);
    }
}
